/********************************************
HTML ELEMENTS
********************************************/
/* top elements */
* { margin: 0; padding: 0; outline: 0; } /*sets no padding or margin around the body of our document*/

body {
	background-color: #fff; /*(white)*/
	background-image: url(Images/bg.gif);
	background-repeat: repeat;
	color: #333333; /*text color for our website*/
	margin: 15px 0; /*sets no padding and a 15px margin around the body of document*/
	font-family: Verdana, Tahoma, arial, sans-serif; /*font family for website*/
	font-size: 70%; /*sets the font size in %, you can also use 12px or 14px etc*/
	line-height: 1.5em; /*height between each line of text.*/
	}

/********************************************
WEBSITE LAYOUT
********************************************/
#wrap {
	width: 820px; /*width of our wrap*/
	background: #CCC url(Images/main.jpg) repeat-y center top; /*background color white content.jpg as a bg + Repeat*/
	margin: 0px auto; /*auto will center our website*/
	text-align: left;
	}
	
#content-wrap {
	clear: both; /*The clear property sets the sides of an element where other floating elements are not allowed.*/
	width: 820px;
	margin: 0 auto; /*sets our top margin at 5 pixels and the rest to auto*/
	padding: 0;
	
	}
	
#header {
	position: relative; /*An element with position: relative moves an element relative to its normal position*/
	height: 110px; /*sets our header height, this should be the same as our header image*/
	background: #caced1 url(Images/header.jpg) no-repeat center top; /*sets a background behind our header and sets our header image onto the page*/
	padding: 0; /*no padding is needed*/
	}
	
/********************************************
WEBSITE NAVIAGTION
********************************************/
#menu {
	clear: both; /*No floating elements allowed on either the left or the right side*/
	margin: 0;   
	padding: -10px 0 0 0;
	background: #666666 url(Images/navbar.jpg) no-repeat; /*Our menu background*/
	height: 32px; /*The height of the menu 32*/
	width: 820px; /*The width of the menu */
	font-family: Arial, Verdana, Helvetica, sans-serif; /*The font family*/
	font-size: 14px; /*The font size*/
	line-height: 32px; /*The line-height property sets the distance between lines.*/
	}
	
#menu ul {
	float: left; /*Floats our menu to the left*/
	list-style: none;
	margin:0 0 0 0; 
	padding: 0 0 0 20px;
	/*background: #FFFFFF;*/
	}

#menu ul li { display: inline; /*The element will be displayed as an inline element, with no line break before or after the element*/ }

#menu ul li a {
	display: block;
	float: left;
	padding: 0 0 0 20px;
	color: #fff; /*Font color*/
	text-decoration: none;
	}

#menu ul li a:hover {
	color: #FFFFFF;
	font-weight: bold;
	}
	

/********************************************
MAIN COLUMN
********************************************/
#main {
	float: right; /*floats our main content area to the right*/
	width: 570px; /*gives our content area a width of 555pixels*/
	margin: 20px 0 10px 0; padding: 12px 35px 20px 0px;
        display: inline;
	}

#main h2 {
	padding: 2px 0px 0px 0px;
	margin-bottom: 0;
	color: #000000;
	font-family: Arial, Impact, Helvetica, sans-serif;
	font-size: 180%;
	font-style: normal;
	font-weight: Bold;
	}
	
#main h2 a {
	color: #2666c3;
	text-decoration: none;
	}


#main p, #main h1, #main h2, #main h3, #main ol, #main ul,
#main li, #main blockquote, #main table, #main form {
	margin-left: 25px;
	margin-right: 20px;
	padding: 2px 0 0 5px;
	}

#main a {
	color: #600000;
	font-weight: bold;
	text-decoration: underline;
	}

#main a:hover {
	color: #666666;
	font-weight: bold;
	}
	
/********************************************
SIDEBAR
********************************************/
#leftcol{
float:left;
display: inline;
width: 175px;
margin: 0px 0px 0 12px;
}

#clock{
float: left;
width: 154px;
margin: 0px 0px 0 0px;
padding: 0px 0px 0px 0px;
border-top: 5px solid #666666;
border-bottom: 5px solid #666666;
border-left: 10px solid #666666;
border-right: 10px solid #666666;
font-family: Arial, 'Trebuchet MS', 'Lucida Grande', sans-serif;
/*font-size: 110%;*/
/*font-weight: bold;*/
color: #FFFFFF;
display: inline;
}

#sidebar{
display: inline;
float: left;
width: 175px;
border-right: 3px solid #999999;
padding: 0 0 0 0px;
margin-top: 0;
margin-right: 0;
margin-bottom: 0;
margin-left: 0px;
font-family: Arial, 'Trebuchet MS', 'Lucida Grande', sans-serif;
font-size: 100%;
background-color: #333333;
color: #FFFFFF;
}

* html #sidebar{ /*IE 6 only */
w\idth: 147px; /*Box model bug: 180px minus all left and right paddings for #sidebar */
}

#sidebar ul{
list-style: none;
margin: 0 0 0 0px;
padding: 0;
border: none;
}

#sidebar li {
border-bottom: 1px solid #CCCCCC;
border-top: 1px solid #CCCCCC;
margin: 0;
}

#sidebar li a{
display: block;
padding: 5px 5px 5px 8px;
border-left: 10px solid #666666;
border-right: 10px solid #333333;
background-color: #333333;
color: #fff;
text-decoration: none;
width: 100%;
}

html>body #sidebar li a{ /*Non IE6 width*/
width: auto;
}

#sidebar li a:hover{
border-left: 10px solid #999999;
border-right: 10px solid #FFFFFF;
background-color: #FFFFFF;
color: #600000;
font-weight: bold;
}


/********************************************
FOOTER
********************************************/
#footer {
	color: #333333;
	background: #caced1 url(Images/footer.jpg) no-repeat center top;
	clear: both;
	width: 821px;
	height: 90px;
	text-align: center;
	font-size: 85%;
	}

#footer-left{
float: left;
margin-left: 15px;
width: 135;
padding: 0;
text-align: left;
}

#footer-mid{
float: left;
margin-left: 45px;
padding: 13px 0px;
text-align: left;
}

#footer-right{
float: right;
margin-right: 50px;
padding: 20px 0 0 0;
text-align: right;
}

#footer p {
	padding: 10px 0;
	margin: 0;
	}

#footer a {
	color: #600000;
	text-decoration: none;
	}

#footer ul {
	list-style: none;
	text-deceration: none;
	padding: 0;
	}
 
/* alignment classes */
.float-left { float: left; }
.float-right { float: right; }
.float-center {float:none;}
.align-left { text-align: left; }
.align-right { text-align: right; }
 
/* display and additional classes */
.clear { clear: both; }


/********************************************
WEBSITE LINKS
********************************************/
a, a:visited {
	text-decoration: none;
	background: inherit;
	color: #ffffff;
	}
a:hover {
	text-decoration: underline;
	background: inherit;
	color: #93C600;
	}


/********************************************
WEBSITE TEXT HEADERS
********************************************/
h1, h2, h3 { font-family: 'Trebuchet MS', Tahoma, Sans-serif; }
h1 {
	font-size: 180%;
	font-weight: normal;
	color: #555;
	}
h2 {
	font-size: 160%;
	color: #88ac0b;
	font-weight: normal;
	}
h3 {
	font-size: 135%;
	color: #666666;
	}


/********************************************
WEBSITE IMAGES
********************************************/
#img {
	background: #fff;
	border: 1px solid #E5E5E5;
	padding: 5px;
	margin-left: 27px;
	margin-right:15px;
	float: left;
	}

#maintxt (
 float: right;
 padding: 10px;
 }
 
img.float-right { margin: 5px 0px 10px 10px; }
img.float-left { margin: 5px 10px 10px 0px; }
 
h1, h2, h3, p {
	margin: 10px 15px;
	padding: 0;
	}
ul, ol {
	margin: 5px 15px;
	padding: 0 25px;
	}


/*******************************************
Email Styles
*******************************************/
.feedbackform{
padding: 5px;
}

div.fieldwrapper{ /*field row DIV (includes two columns- Styled label column and 'thefield' column)*/
width: 550px; /*width of form rows*/
overflow: hidden;
padding: 5px 0;
}

div.fieldwrapper label.styled{ /* label elements that should be styled (left column within fieldwrapper DIV) */
float: left;
width: 150px; /*width of label (left column)*/
text-transform: uppercase;
font-family: Verdana, Tahoma, arial, sans-serif;
border-bottom: 2px solid #600000;
margin-right: 15px; /*spacing with right column*/
}

div.fieldwrapper div.thefield{ /* DIV that wraps around the actual form fields (right column within fieldwrapper DIV) */
float: left;
margin-bottom: 10px; /* space following the field */
}

div.fieldwrapper div.thefield input[type="text"]{ /* style for INPUT type="text" fields. Has no effect in IE7 or below! */
width: 250px;
}

div.fieldwrapper div.thefield textarea{ /* style for TEXTAREA fields. */
width: 300px;
height: 150px;
}

div.buttonsdiv{ /*div that wraps around the submit/reset buttons*/
margin-top: 5px;/*space above buttonsdiv*/
padding: 0 0 0 15px;
}

div.buttonsdiv input{ /* style for INPUT fields within 'buttonsdiv'. Assumed to be form buttons. */
width: 80px;
background: #999999;
}


/*******************************************
Thumbnail Styles
*******************************************/

.thumbnail{
position: relative;
z-index: 0;
}


.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px solid gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 30;
left: -270px; /*position where enlarged image should offset horizontally */
}
