/********************************************
HTML ELEMENTS
********************************************/
/* top elements */
* { margin: 0; padding: 0; outline: 0; } /*sets no padding or margin around the body of the document*/

body {
	background-color: #000000; /*sets the text color for the website*/
	margin: 15px 0; /*sets no padding and a 15px margin around the body of the document*/
	font-family: Verdana, Tahoma, arial, sans-serif; /*sets the font family for the website*/
	font-size: 70%; /*sets the font size in %*/
	line-height: 1.5em;
}

/********************************************
WEBSITE LAYOUT
********************************************/
#wrap {
	width: 800px; /*width of wrap*/
	background: #abaaaa; /*sets the background color to white and uses the content.jpg as a background, the background is also repeated along the Y axis*/
	margin: 0 auto; /*center the margin to auto will center the website*/
	text-align: left; /*aligns the text to the left*/
}
#content-wrap {
clear: both; /*The clear property sets the sides of an element where other floating elements are not allowed.*/
width: 800px; /*width of the wrap*/
margin: 0px auto; /*sets the top margin at 5 pixels and the rest to auto*/
padding: 0; /*sets 0 padding*/
}
#header {
position: relative; /*An element with position: relative moves an element relative to its normal position, so "left:20" adds 20 pixels to the element's LEFT position*/
height: 100px; /*sets the header height, this should be the same as the header image*/
background: #cccccc url(images/williams_header.png); /*sets a background behind the header and sets the header image onto the page*/
padding: 0; /*no padding is needed*/
}

/********************************************
WEBSITE NAVIAGTION
********************************************/
#menu {
	height: 20px; /*The height of the menu */
	width: 800px; /*The width of the menu */
	font-family: Verdana, Arial, Helvetica, sans-serif; /*The font family*/
	font-size: 12px; /*The font size*/
	line-height: 30px;
	background:#000000;
	margin: 0px auto;
	padding-left: 0px;
	clear: both;
}
#menu ul {
	float: none;
	list-style: none;
	margin:0;
	padding: 0 0 0 0px;
}
#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 10px;
color: #fff; /*Font color*/
text-decoration: none;
}
#menu ul li a:hover {
	color: #0066CC; /*Mouseover hover color*/
}

/********************************************
MAIN COLUMN
********************************************/
#main {
	background:#CCCCCC;
	float: right; /*floats the main content area to the right*/
	width: 580px; /*gives the content area a width of 555pixels*/
	margin: 0;
	padding: 20px 0 0 0;
	display: inline;
	text-align:justify;
	border-left: 1px solid #000000;
}

#main h2 {
	padding: 0;
	margin-bottom: 0;
	color: #FFFFFF;
	font-family: Verdana, Arial, 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 blockquote, #main table, #main form {
	margin-left: 25px;
	margin-right: 20px;
	text-align: justify;
	color: #000000;
}

#main p2 {
	text-align:center;
}

#main li {
  list-style-type:none;
  }


/********************************************
SIDEBAR
********************************************/
#sidebar {
	float: left;
	width: 186px;
	padding: 0;
	color: #000000;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 15px;
	background:#abaaaa;
}

#sidebar2 {
	float: left;
	width: 186px;
	padding: 0;
	color: #000000;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0px;
	background:#abaaaa;
	text-align: left;
	font-size:xx-small;
	line-height:13px;
}

#sidebar h2 {
	margin: 15px 5px 10px 5px;
	font: bold 1.4em 'Trebuchet MS', Tahoma, Sans-serif;
	color: #000000;
}
#sidebar p {
	margin-left: 5px;
	text-align: left;
	padding: 4px,0px,4px,5px;
}

#sidebar li {
  list-style-type:none;
  }
#sidebar ul.sidemenu {
	list-style: none;
	text-align: center;
	margin: 7px 10px 8px 0;
	padding: 0;
	text-decoration: none;
}
#sidebar ul.sidemenu li {
	list-style: none;
	list-style-type:none;
	padding: 4px 0 4px 5px;
	margin: 0 2px;
	color: #000000;
}
* html body #sidebar ul.sidemenu li {
height: 1%;
}
#sidebar ul.sidemenu li a {
	text-decoration: none;
	color: #326284;
}
#sidebar ul.sidemenu li a:hover {
	color: #CC6600;
}
#sidebar ul.sidemenu ul { margin: 0 0 0 5px; padding: 0; }
#sidebar ul.sidemenu ul li { border: none; }

/********************************************
FOOTER
********************************************/
#footer {
	color: #000000;
	background: #abaaaa;
	clear: both;
	width: 800px;
	height: 85px;
	text-align: center;
	font-size: 90%;
	border-top: 1px solid #000000;
}
#footer p {
padding: 10px 0;
margin: 0;
}
#footer a {
	color: #0033FF;
	text-decoration: none;
}

/* alignment classes */
.float-left { float: left; }
.float-right { float: right; }
.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: #FB9233;
}
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.float-right { margin: 5px 0px 10px 10px; }
img.float-left { margin: 5px 10px 10px 0px; }

h1, h2, h3, p {
margin: 10px 15px;
padding: 5px;
}
ul, ol {
margin: 5px 15px;
padding: 0 25px;
}
#main h3 {
	padding: 0;
	margin-bottom: 0;
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	font-style: normal;
	font-weight: bold;
	float: left;
}
