@charset "utf-8";
/* CSS for VTPSC site with maple leaf header*/
/* COLOR REFERENCE 
BG Brown: #B38147;
Footer Brown: #53340f;
Logo Blue: #085797;
Sidebar/Logo Green: #0f673c;
*/

/*************** GENERAL STYLES *******************/
body {
	background-color:#B38147;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	}
h1,h2,h3,h4,h5,h6 {color:#085797;}
h1 {font-size:190%; text-align:center;}
h2 {font-size:155%;}
h3 {font-size:140%;}
h4 {font-size:120%;}
h5 {font-size:100%;}
h6 {font-size:85%;}
a {color:#0f673c;}
a:visited {color:#53340f;}
a:hover {color: #6b9;}

	
	

/*************** LAYOUT STYLES *******************/	
#container { 
	max-width: 66em; /*This used to be width*/
	/*max-width:100%;*/ 
	background-color: #FFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
  	overflow: hidden;
	}
#header { 
	background-image: url(/images/cssimages/topyellowleaves.jpg);
	background-repeat: no-repeat; 
	background-position:left;
	background-color:#440300;
	padding: 0 5px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 110px;
	} 
#header img {
	padding:5px 10px;
	}
#contentwrap {
	background-color: #0f673c;
	}
#sidebar1 {
	float: left; 
	width: 230px; /* 12em;since this element is floated, a width must be given */
	background-color:#0f673c; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 8px 0; /* top and bottom padding create visual space within this div */

	}
#sidebar1 ul{
 list-style-type: none;
	}
#sidebar1 a {
	font-family:'Copperplate Gothic Light', 'Copperplate Gothic', 'Times New Roman', serif;
	font-variant:small-caps;
	display: block;
	padding: 3px 3px 3px 3px;
	margin: 2px 20px 4px -20px;
	border:1px solid #FFF;
	border-width:0 0 1px 0;
	text-decoration: none;
	color: #FFF;
	}
#sidebar1 a:hover {
	color: #ADB;
	}
#sidebar1 a#memberloginlink {
	font-size:70%;
	border-width:1px;
	}

#mainContent {
	background:#fff;
	padding: 0 1.5em 0 10px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	font-size: .8em;
	min-height:20em;
	margin-left: 230px;
	} 
#footer {
	font-size:.6em;
	position: relative;
	background-color:#53340f;
	color:#DFBF9F;
	border-top:1px solid #000;
	clear:left;
	}
#footer a, #footer a:link, #footer a:hover, #footer a:visited {color:#DFBF9F;}

/******************** SPECIAL LINKS ***********************/
#mainContent a.down{
	padding-right: 18px;
	background: transparent url(/images/cssimages/down.gif) no-repeat center right;
}
#mainContent a[href $='.ppt'], #mainContent a[href $='.pptx'] { 
	padding-right: 18px;
	background: transparent url(/images/cssimages/powerpoint.gif) no-repeat center right;
}
#mainContent a[href $='.doc'],#mainContent a[href $='.docx'] { 
	padding-right: 18px;
	background: transparent url(/images/cssimages/word.gif) no-repeat center right;
}
#mainContent a.top{
	padding-right: 18px;
	background: transparent url(/images/cssimages/top.gif) no-repeat center right;
}
#mainContent a[href $='.xls'], #mainContent a[href $='.xlsx'] { 
	padding-right: 18px;
	background: transparent url(/images/cssimages/excel.gif) no-repeat center right;
}
#mainContent a[href $='.pdf'] { 
	padding-right: 18px;
	background: transparent url(/images/cssimages/acrobat.gif) no-repeat center right;
}
#mainContent a[href^="http://"] {
	padding-right: 18px;
	background: transparent url(/images/cssimages/offsite.gif) no-repeat center right;
}
#content a[href^="http://www.VTPSC.org"], a[href^="http://VTPSC.org"] {
  background: transparent;
  padding-right: 0;
}

/************** SPECIAL CLASSES ***********************/
br.newsect { /* Closes up blank space at the top of divs when their first element would otherwise have a top margin*/
	margin:0;
	padding:0;
	line-height:0;
	height:1px;
	}