@charset "utf-8";
/*
Theme Name: Tresys
URL: http://www.tresys.com/
Description: Tresys Technology Blog
Tags: red, custom header, fixed width, two columns, widgets
*/


/*
 * Authors: Spencer Shimko <sshimko@tresys.com>
 *
 * Copyright 2008 Tresys Technology
 *
 * Usage: There is documentation inline for using this stylesheet
 * 	Use h1, h2, h3 tags - subsection will occur automatically
 * 	Use pre class="command" for commands
 *	Use span class="centeredImg" around  images you wanted to center
 *	Use float-left and float-right classes to justify content
 *	Use ul class="bulletedList" for a bulleted list
 *	Use ul class="nobulletedList" for an unbulleted list
 */

/* h1
 * Purpose: style h1 tags
 */
h1 {
	font-size: 1.8em;
	text-indent: 0px;
        margin: 0px;
	}	
 
/* h2
 * Purpose: style h2 tags, smaller and indented from h1
 */
h2 {
	font-size: 1.5em;
	font-weight: bold;
	text-indent: 0px;
        margin: 10px 0 10px 0;
	/*text-decoration: underline;*/
	}

/* h3
 * Purpose: style h3 tags, smaller and indented from h2
 */
h3 {
	font-size: 1.1em;
	font-weight: bold;
	text-indent: 0px;
        margin: 10px 0 10px 0;
	}

/* h6
 * Purpose: used to support pappas usage of h6 tags, try to avoid
 */
h6 {
	font-size: 12px;
	font-weight: bold;
	color: #B12A1C;
	margin-top: 20px;
	margin-bottom: 5px;
	}

pre {
	font-family: monospace;
	}
/* pre class="command"
 * Purpose: contents are indented and should be monospaced 
 */
pre.command {
	position: relative;
	text-indent: 15px;
	margin-bottom: 10px;
	}


/*
/	Header Replacements	
--------------------------------------------------------------------------------------------------------*/

/* div id="plainHeader"
 * Purpose: provide std plain black/white header
 * text placed in h1 will be placed in the black area of the header
 * text placed in p will be placed in the white area
 */
#plainHeader {
	background: url('../images/mainHeader.png') no-repeat;
	height:70px;
	width:820px;
	font-size: 12px;
	padding: 50px 0 0 30px;
	}
	#plainHeader p { /* short page summary should be placed in p */
	width: 420px;
	line-height: 15px;
	float: right;
	padding-right:66px; 
	}
	#plainHeader h1 { /* page title should go in h1 */
	height: 40px;
	width:170px;
	float: left;
	color: #fff;
	vertical-align: middle;
	line-height: 1.2;
	white-space: nowrap;
	}

/* span class="hilite"
 * Purpose: hilite a section of text
 */
.hilite {
	color: #B12A1C;
}


/* span class="headNote"
 * Purpose: used to style notes accompanying headings or section titles
 * think of it as a prettier subscript
 */
.headNote {
	font-size: 0.7em;
	font-style: italic;
	text-decoration: none;
	color: #B12A1C;
	padding: 0 0 0 10px;
	}		

/* div class="float-left"
 * Purpose: div contents hang out on the left side of the parent
 */
.float-left {
	float: left;
	clear: left;
	}
/* div class="float-right"
 * Purpose: div contents hang out on the right side of the parent
 */
.float-right {
	float: right;
	clear: right;
	}

.centered {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	display: block;
	}


/* ul class=bulletedList
 * ul class=nobulletedList 
 * Purpose: slightly smaller font, increase line spacing, indent
 */
ul.bulletedList, ul.nobulletedList {
        font-size: .99em;
        line-height: 2.2em;
        margin-left: 30px;
        margin-bottom: 10px;

	} ul.bulletedList li { /* bulleted lists get bullets */
        padding-top: 0px;
        padding-bottom: 8px;
	list-style: square;

	} ul.nobulletedList li { /* no bullets here */
        padding-top: 0px;
        padding-bottom: 8px;
	list-style: none;

	} ul.bulletedList li ul li, ul.nobulletedList li ul li { 
	/* nested lists get no margins to avoid too much whitepace */
	margin-bottom: 0px;
	padding-bottom: 0px;

	} ul.bulletedList li a, ul.nobulletedList li a { /* anchors get a graphic */
        color: #393939;
        text-decoration: none;
        padding-left: 22px;
        background-image: url(../images/linkIcons.gif);
        background-repeat: no-repeat;
        background-position: left top;
        min-height: 12px;

	} ul.bulletedList li a:hover, ul.nobulletedList li a:hover { 
	/* on hover change anchor image */ 
        color: #ed1c24;
        background-image: url(../images/linkIconsOn.gif);

	} ul.bulletedList li p a, ul.nobulletedList li p a { /* no graphics for embedded links */
	background-image: none;
        padding-left: 0px;
        text-decoration: none;
	color: #B12A1C;
	} ul.bulletedList li p a:hover, ul.nobulletedList li p a:hover { /* no graphics for embedded links */
        color:#ed1c24;
	}


/* div class=subsections 
 * Purpose: perform indentation based on standard html elements */
.subsections {
	
	}
	.subsections h1 {
	padding-left: 0px;
	}
	.subsections h2 {
	padding-left: 5px;
	}
	.subsections h3 {
	padding-left: 10px;
	}
	.subsections p {
	padding-left: 15px;
	}
	.subsections pre {
	padding-left: 25px;
	}
	.subsections blockquote {
	padding-left: 25px;
	margin-bottom: 10px;
	}

/* div id=screenshots
 * Purpose: layout screenshot content 
 */ 
#screenshots {
	}
	#screenshots tr { /* give us a marging between rows */
	margin-bottom: 5px;
	}
	#screenshots tr td,
	#screenshots tr td span{ /* by default elements valign top */
	vertical-align: top;
	}
	#screenshots tr td p  {
	}
	#screenshots img { /* center images */
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	margin-bottom: 10px;
	border: none;
	display: block; /* critical: images wont center inline */
	padding: 0px 10px 0px 10px;
	}	

/* span class=groupHead
 * Purpose: centered (screenshot) group caption
 */ 
#screenshots .groupHead, div .groupHead {
	font-weight: bold;
	font-size: 1.1em;
	text-align: center;
	display: block;
	margin-bottom: 5px;
	}

/* span class=centeredImg -> img
 * Purpose: wrap an img or set of images in spans to center */	
#screenshots span.centeredImg img, span.centeredImg img {
	text-align:center;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left:auto;
	margin-right: auto;
	padding:0px;
	vertical-align: middle;
	min-height: 10px;
	display: block; /* critical: images wont center inline */
	}

/* span class=leftImg -> img
 * Purpose: wrap an img or set of images in spans to left justify */	
#screenshots span.leftImg img,  span.leftImg img {
	text-align: left;
	margin-top: 0px;
	margin-bottom: 0px;
	float: left;
	clear: left;
	padding-right: 10px;
	padding:0px;
	vertical-align: middle;
	min-height: 10px;
	display: inline; 
	}

/* span class=rightImg -> img
 * Purpose: wrap an img or set of images in spans to right justify */	
#screenshots span.rightImg img,  span.rightImg img {
	float: right;
	clear: right;
	display: inline; 
	}

/* table class=borderedTable
 * Purpose: draw a bordered table
 */
table.borderedTable {
	border-top: 3px #393939 inset; 
	border-right: 3px #393939 inset; 
	border-bottom: 3px #393939 inset; 
	border-left: 3px #393939 inset; 
	border-collapse: collapse;
	border-spacing: 0px;
	border-color: #666;
	width: 100%;
	text-align: center;
	} 

	/* td class="colHead"
 	 * Purpose: treat cell like a column header
	 */
	table.borderedTable td.colHead {
	font-weight: bold;
	text-align: center;
	border-bottom: 2px #393939  outset;
	border-left: 1px #393939 dotted;
	padding: 5px;
	color: #FFF;
	background-color: #333333;
	} 

	/* td class="centered"
	 * Purpose: center contents of cell
 	 */
	table.borderedTable td.cellCentered {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	}
	
	/* td
	 * Purpose: normal cell
	 */
	table.borderedTable td {
	text-align: left;
	border-left: 1px #666 dotted;
	border-bottom: 1px #666 dotted;
	padding: 5px;
	}

.hidden {
	content: ".";
	display:block; 
	visibility: hidden;
	}

ul.navList li a.hilite:before {
/*	content: "\bb \00A0 ";*/
}
ul.navList li a.hilite {
	font-weight: bold;
	padding-left: 5px;
	color: white;
}

#community {
	float: left;
	width: 160px;
	font-size: .99em;
	line-height: 1.2em;
	background-image: url(../images/communityBG.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
}
#community ul {
	width: 140px;
	margin-left: 10px;
	margin-bottom: 10px;
}
#community ul li {
	border-bottom: 1px solid #cfcfcf;
	padding-top: 8px;
	padding-bottom: 8px;
}
#community ul li a {
	color: #393939;
	text-decoration: none;
	display: block;
	padding-right: 22px;
	background-image: url(images/linkIcons.gif);
	background-repeat: no-repeat;
	background-position: right top;
	min-height: 12px;
}
#community ul li a:hover {
	color: #ed1c24;
	background-image: url(images/linkIconsOn.gif);
}

* html #community ul li a {
	height: 12px;
}
