@charset "UTF-8";

* {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
}

body  {
	font: 76% Verdana, Arial, Helvetica, sans-serif;
	background: #336655;
	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: #000000;
}

/*Layout*/
.philscott #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* 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. */
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
} 
.philscott #header {
	background-image: url(../images/head_bg.jpg);
	height: 98px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.philscott #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 */
}
.philscott #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 175px;
	background-color: #fff7cd;
	background-image: url(../images/sidebarfoot.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 35px;
	padding-left: 15px;
}

.philscott #sidebar1 #navcontainer {
	width: 166px;
}

.philscott #sidebar1 #navcontainer ul
{
margin-left: 0;
padding-left: 0;
list-style-type: none;
font-family: Arial, Helvetica, sans-serif;
}

.philscott #sidebar1 #navcontainer a
{
	display: block;
	padding: 3px;
	width: 160px;
	background-color: #336655;
	border-bottom: 1px solid #eee;
}

.philscott #sidebar1 #navcontainer a:link, #navlist a:visited
{
	color: #FFF;
	text-decoration: none;
}

.philscott #sidebar1 #navcontainer a:hover
{
	background-color: #80A69A;
	color: #FFF7CD;
}

.philscott #mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.philscott #footer {
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #dddddd;
	margin-top: 10px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 20px;
} 
.philscott #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 */
}


/*typography*/
a {
	text-decoration: none;
	font-weight: bold;
	color: #336655;
}

a:link { }
a:visited { }
a:active { }
a:hover { text-decoration: underline; }

h1 {
	font-size: 2em;
	font-weight: normal;
	margin-top: 0.5em;
	margin-bottom: 0.5em;	/*both set to zero and padding in header div is used intead to deal with compound ie pc problems that are beyound summary in a simple comment.*/
}

h2 {
	font-size: 1.7em;
	margin: 1.0em 0em 0.5em 0em;
}

h3 {
	font-size: 1.4em;
	margin: 1.2em 0em 0.5em 0em;
	font-weight: normal;
}

h4 {
	font-size: 1.2em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;
}

h5 {
	font-size: 1.0em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;
}

h6 {
	font-size: 0.8em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;
}

img { border: 0; }

ol, ul, li {
	/*

	list-style: none;*/
	font-size: 1.0em;
	line-height: 1.8em;
	margin-top: 0.2em;
	margin-bottom: 0.1em;
}

p {
	font-size: 1em;
	line-height: 1.8em;
	margin: 0em 0em 1.2em 0em;
}

li > p { margin-top: 0.2em; }

pre {
	/*moz 1.0/1.1/1.2.1, net 7.0/7.01 make this way too small, but i'm not going to go larger because monospace tends to run you into overflow pretty quick. prior moz and net are okay.*/
	font-family: monospace;
	font-size: 1.0em;
}

strong, b { font-weight: bold; }

/*.pic {
	background-color:#f0f0f0;
	border:1px solid #d8d8d8;
	padding:0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	text-align: center;
}

.photoleft {
	background-color:#f0f0f0;
	padding:0.5em;
	float: left;
	text-align: center;
	font-size: smaller;
	font-style: italic;
	line-height: normal;
	margin: 0.5em;
}*/
.photo {
	padding: 0.5em;
	background-color: #EBEBEB;
	text-align: center;
	margin: 0.5em;
	text-indent: 0px;
	white-space: normal;
}


.photo p {
	font-size: smaller;
	font-style: italic;
	text-align: center;
	text-indent: 0px;
	line-height: normal;
	margin: 0px;
}


/**/

.photoright {
	float:right;
	margin: 0.5em;
	padding: 0.5em;
	background-color: #EBEBEB;
}
.photoright p {
	font-size: smaller;
	font-style: italic;
	text-align: center;
	text-indent: 0px;
	line-height: normal;
	margin: 0px;
}



.photoleft {
	float:left;
	margin: 0.5em;
	padding: 0.5em;
	background-color: #EBEBEB;
	text-indent: 0px;
	white-space: normal;
}
.photoleft p {
	font-size: smaller;
	font-style: italic;
	text-align: center;
	text-indent: 0px;
	line-height: normal;
	margin: 0px;
}


.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: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clear { /* 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;
}
.hide {
	display: none;
}
.center {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}
/*.philscott #mainContent th {
	text-align: left;
	padding: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #336655;
}
.philscott #mainContent td {
	text-align: left;
	padding: 3px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #336655;
}*/
.philscott #mainContent table {border:1px solid #d8d8d8; border-collapse:collapse; line-height:1.3em; width:95%; margin:0 0 16px; padding:0;}
.philscott #mainContent caption {font-size:1.5em; font-weight:400; margin:0; padding:6px 0 8px; text-align:left;}
.philscott #mainContent th {background:   url(../images/00_menubg2.gif) repeat-x bottom left #eaeaea; color:#505050; padding:7px; text-align:left;}
.philscott #mainContent td {background:   url(../images/00_menubg.gif) repeat-x bottom left #f4f4f4; color:#303030; font-size:0.9em; padding:7px; text-align:left;}
.fade {
	color: #999999;
}
