@charset "utf-8";
/* CSS Document  Styles for 360 Engineering*/
body  {
	background: #666666;
	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: #757575;
	font-family: Tahoma, "Trebuchet MS", Verdana, "Arial Narrow", sans-serif;
	font-size: small;
	background-image: url(images/bckgrdlines.jpg);
	background-repeat: repeat-y;
	margin-left: 0px;
	margin-right: 0px;
}

.thrColFixHdr h1 {
	font-family: Tahoma, "Trebuchet MS", Verdana, "Arial Narrow", sans-serif;
	font-size: 160%;
	color: #42789f;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 20px;
	padding-right: 20px;
}
.thrColFixHdr h2 {
	font-family: Tahoma, "Trebuchet MS", Verdana, "Arial Narrow", sans-serif;
	font-size: 140%;
	color: #808080;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 20px;
	padding-right: 20px;
}
.thrColFixHdr h3 {
	font-family: Tahoma, "Trebuchet MS", Verdana, "Arial Narrow", sans-serif;
	font-size: 120%;
	color: #42789f;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 20px;
	padding-right: 20px;
}
.thrColFixHdr h4 {
	font-family: Tahoma, "Trebuchet MS", Verdana, "Arial Narrow", sans-serif;
	font-size: 110%;
	color: #808080;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 20px;
	padding-right: 20px;
}
.thrColFixHdr h5 {
	font-family: Tahoma, "Trebuchet MS", Verdana, "Arial Narrow", sans-serif;
	font-size: 100%;
	color: #42789f;
	font-weight: bold;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 20px;
	padding-right: 20px;
}
.thrColFixHdr h6 {
	font-family: Tahoma, "Trebuchet MS", Verdana, "Arial Narrow", sans-serif;
	font-size: 100%;
	font-weight: bold;
	color: #808080;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 20px;
	padding-right: 20px;
}
.thrColFixHdr p {
	font-family: Tahoma, "Trebuchet MS", Verdana, "Arial Narrow", sans-serif;
	font-size: 100%;
	color: #808080;
	line-height: 1.5em;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 20px;
	padding-right: 20px;
}

.thrColFixHdr a:link {
color: #42789f;
text-decoration: none;
}
.thrColFixHdr a:visited {
color: #757575;
text-decoration: none;
}
.thrColFixHdr a:hover {
color: silver;
text-decoration: none;
}
.thrColFixHdr a:active {
color: silver;
text-decoration: none;
}

.thrColFixHdr #container {
	width: 900px;
	height: auto;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #808080;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #ffffff;
} 
.thrColFixHdr #header {
	background: #DDDDDD;
	padding: 0;
} 
.thrColFixHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: /*10px*/ 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 225px;
	height: 1150px;
	background-image: url(images/leftsidebarbckgrd.jpg);
	background-repeat: repeat-y;
	background-position: right;
	
}
.thrColFixHdr #container #sidebar1 h3 {
	color: #ffffff;
}
.thrColFixHdr #container #sidebar1 p {
	color: #ffffff;
}

.thrColFixHdr #sidebar1 a:link {
color: #ffffff;
text-decoration: none;
}
.thrColFixHdr #sidebar1 a:visited {
color: #ffffff;
text-decoration: none;
}
.thrColFixHdr #sidebar1 a:hover {
color: silver;
text-decoration: none;
}
.thrColFixHdr #sidebar1 a:active {
color: silver;
text-decoration: none;
}

.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 281px; /* padding keeps the content of the div away from the edges */
	height: 1000px;
	background-color: #dae3ea;
	background-image: url(images/rightsidebarbckgrd.jpg);
	background-repeat: no-repeat;
}

.thrColFixHdr #sidebar2 h3 {
	padding-top: 20px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: large;
	line-height: 1.5em;

}

.thrColFixHdr #sidebar2 p {
	color: #2A3FAA;
	font-size: medium;
	line-height: 2em;
}

.thrColFixHdr #sidebar2 a:link {
color: #2A3FAA;
text-decoration: none;
}
.thrColFixHdr #sidebar2 a:visited {
color: #2A3FAA;
text-decoration: none;
}
.thrColFixHdr #sidebar2 a:hover {
color: #42789f;
text-decoration: none;
}
.thrColFixHdr #sidebar2 a:active {
color: #42789f;
text-decoration: none;
}
.thrColFixHdr #sidebar2 .quote {
	font-style:italic;
	font-family:Georgia, "Times New Roman", Times, serif;
}
.thrColFixHdr #sidebar2 .quoteright {
	text-align:right;
	line-height: 1.25em;
}
.thrColFixHdr #sidebar2 img {
padding-left: 20px;
}


.thrColFixHdr #mainContent { 
	/*margin: 0 200px;*/ /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	/*padding: 0 10px;*/ /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #ffffff;
	margin-left: 225px;
} 

#mainContent h1 {
padding-top: 10px;
}

.thrColFixHdr #footer {
	padding: 0 10px 0 20px;
	background-color: #236bb0;
} 
.thrColFixHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Tahoma, "Trebuchet MS", Verdana, "Arial Narrow", sans-serif;
	font-size: 12px;
	color: #ffffff;
	text-align: center;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}
.thrColFixHdr #footer p a:link {
color: #ffffff;
text-decoration: none;
}
.thrColFixHdr #footer p a:visited {
color: #ffffff;
text-decoration: none;
}
.thrColFixHdr #footer p a:hover {
color: silver;
text-decoration: none;
}
.thrColFixHdr #footer p a:active {
color: silver;
text-decoration: none;
}


.floatright { /* 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: 8px;
}
.floatleft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}

.clear {
	clear: both;
}
.thrColFixHdr #container #toplinks {
	background-color: #757575;
	font-family: Tahoma, "Trebuchet MS", Verdana, "Arial Narrow", sans-serif;
	font-size: 12px;
	color: #ffffff;
	text-align: right;
	padding: 5px;
}
.thrColFixHdr #container #toplinks a:link {
	background-color: #757575;
	font-family: Tahoma, "Trebuchet MS", Verdana, "Arial Narrow", sans-serif;
	font-size: 12px;
	color: #ffffff;
	text-align: right;
	text-decoration:none;
}

.thrColFixHdr #container #toplinks a:visited {
	color: #ffffff;
	text-decoration:none;
}

.thrColFixHdr #container #toplinks a:hover {
	color: silver;
	text-decoration:none;
}

.thrColFixHdr #container #toplinks a:active {
	color: silver;
	text-decoration:none;
}


#flash {
	float: left;
	margin: 0;
	width: 394px;
	padding-bottom: 15px;
	z-index:10;
}
.thrColFixHdr #container #menu {
border-bottom: 1px solid #42789f;
/*	background-color: #42789f; */
	width: 900px;
	z-index: 100000;
}

blockquote, pre {
    font-family:    Lucida Console, monospace;
}

/*Styles for Bullets*/

#mainContent ol, #mainContent ul, #mainContent ul li {
	font-family: Tahoma, "Trebuchet MS", Verdana, "Arial Narrow", sans-serif;
	font-size: 100%;
	color: #808080;
	line-height: 1.5em;
	padding-top: 0;
	padding-bottom: 0;
	text-indent: 10px;

}

ol 
{
	list-style-type: decimal;
	background-color: transparent;

}

ol li   
{
	list-style-type: decimal;
}

ol ol li
{
	list-style-type: lower-alpha;
}

ol ol ol li
{
	list-style-type: lower-roman;
}

ol ul li
{
	list-style-type: disc;
}

ul 
{
	background-color: transparent;

}

ul li   
{
	background-color: transparent;
	list-style-type: square;

}

ul li li
{
	list-style-type: disc;
}

ul li li li
{
	list-style-type: circle;
}

p.quote {
	font-style:italic;
	color: #42789f;
	font-size: medium;
	line-height: 1.25em;
	font-family:Georgia, "Times New Roman", Times, serif;
}


.quoteright {
	text-align:right;
	line-height: 1.25em;
}

hr

{
	font: 100% Tahoma, Geneva, Verdana, Arial, sans-serif;
	color: #808080;
	margin: 10px 20px 5px 10px;

}