@charset "UTF-8";
/* CSS Document */

body  {
	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 */
	color: #FFFFCC;
	background-color: #330000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	
}
.twoColFixLtHdr #container {
	width: 950px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFCC;
	background-color: #330000;
	background-repeat: no-repeat;
	font-style: normal;
	font-weight: normal;
	vertical-align: bottom;
	border: 1px solid #000000;	
} 
.twoColFixLtHdr #header {
	background-color: #330000;
	background-image: url(images/garrison_sm_logo.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 150px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-indent: -5000px;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px;
	background-color: #330000;
	background-image: url(images/vert_gradient2.png);
	background-repeat: repeat-x;
	height: 600px;
	padding-top: 24px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
	border-left-style: none;
	border-left-color: #000000;
	background-position: 0px 0px;
	line-height: .8em;
}
.twoColFixLtHdr #mainContent {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	font-style: normal;
	line-height: 1.9em;
	font-weight: normal;
	text-align: left;
	margin-top: 0;
	margin-right: 12px;
	margin-bottom: 0;
	margin-left: 210px;
	white-space: normal;
} 
.twoColFixLtHdr #footer {
	background-color: #330000;
	margin-right: 20px;
	padding-top: 0;
	padding-right: 30px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.7em;
	font-style: normal;
	font-weight: normal;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 1px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 1px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
body,td,th {
	color: #FFFFCC;
	font-family: Arial, Helvetica, sans-serif;
}
a:link {
	color: #FFFFCC;
	text-decoration: underline;
}
a:visited {
	text-decoration: underline;
	color: #CCCC64;
}
a:hover {
	text-decoration: none;
	color: #669966;
}
a:active {
	text-decoration: underline;
	color: #FFFFFF;
}
.smImg {
	margin: 8px;
	padding: 8px;
	border: 1px solid #CCCC66;
}
