/*
Company:		
File:		main.css - This contains all the main styles for the website.

All the styles are separted into the following groups:
Global Browser Reset - they make sure that all browsers start with the same default settings
HTML, Body - for the html and body tags
Layout - any style that defines how the site is laid out (position and size of objects)
Nav - navigation bar
Headings - headings like h1, h2, etc
Text Styles - Styles for text
Lists - unordered and ordered lists
Forms - html forms
Links - links
Misc - anything that doesn't fit elsewhere
*/

/* @group Global Browser Reset */
* {

padding:0;

margin:0;

}

h1, h2, h3, h4, h5, h6, p, pre, blockquote, label, fieldset, address { margin:5px 0; }

blockquote { margin-left: 40px; }

fieldset { padding:10px; }

img { border: 0px; }
/* @end */

/* @group HTML, Body */
body {
	background: url(../images/red-squares-bkg.gif) #fff;
}
/* @end */

/* @group Layout */
div#outer-wrapper {
	width: 912px;
	margin-left: auto;
	margin-right: auto;
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
}
div#box1 {
	background: url(../images/LEHeader1.gif) no-repeat top center;
	height: 102px;
}
div#box2 {
	background: url(../images/LEHeader2.gif) no-repeat top center;
	height: 102px;
}
div#box2 a {
	display: block;
	margin: 0 0 0 505px;
	width: 201px;
	height: 99px;
}

div.spacer {
	width: 1px;
	height: 475px;
	overflow: hidden;
	float: left;
	display: inline;
}

div#hd {
	height: 102px;
	background: url(../images/LEHeader3.gif) no-repeat top center;
}
a#loose-end {
	display: block;
	width: 100px;
	height: 102px;
	margin: 0 0 0 106px;
	float: left;
	display: inline;
}

div#bd {
	background: url(../images/bd-bkg.jpg) repeat-y top center;
	padding: 1px 0;
}
body#admin div#bd {
	background-image: none;
	background-color: #fff;
}
div#content {
	width: 480px;
	margin-left: 216px;
	padding: 1px 0 20px 0;
}
body#admin div#content {
	width: 700px;
	margin-left: 106px;
	padding: 10px;
}
div#content-bkg {
	background: url(../images/content-bkg.gif) repeat-y top left;
	color: #443d3e;
	font-size: 85%;
	line-height: 150%;
}
body#admin div#content-bkg {
	background-image: none;
}
div#main {
	width: 270px;
	margin-left: 10px;
	float: left;
	display: inline;
}
div#sidebar {
	width: 168px;
	margin-left: 20px;
	float: left;
	display: inline;
}

div#ft {
	padding: 1px 0;
	background: url(../images/ft-bkg.jpg) no-repeat top center;
	height: 98px;
	border-top: 1px solid #fff;
}
div#ft a {
	display: block;
	width: 50px;
	height: 50px;
	margin: 0 0 0 657px;
}
/* @end */

/* @group Nav */
#nav {
	font-size: 92%;
}
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}
#nav ul {
	
}

#nav a {
	display: block;
	width: 98px;
	height: 30px;
	line-height: 25px;
	text-align: center;
	background-color: #cc0000;
}
#nav a:link, #nav a:visited {
	color: #fff;
	text-decoration: none;
}
#nav ul ul a:link, #nav ul ul a:visited {
	color: #fff;
}
#nav ul a:hover {
	background-color: #000;
}
#nav ul ul a {
	height: 20px;
	line-height: 20px;
	text-align: center;
	width: 98px;
	background: none;
	padding: 2px 0;
	border-top: 1px solid #fff;
	font-size: 85%;
}

#nav li { /* all list items */
	float: left;
	width: 99px; /* width needed or else Opera goes nuts */
	margin-left: 1px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background-color: #cc0000;
	margin-left: 0!important;
	width: 99px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li ul li {
	width: 99px;
	margin-left: 0px;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1.9em 0 0 99px;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
/* @end */

/* @group Headings */
h1 {
	color: #cc0000;
	font-size: 153%;
	font-weight: bold;
	margin: 0 0 5px 0;
}
h2 {
	color: #443d3e;
	font-size: 114%;
	font-weight: bold;
	margin: 5px 0;
}
h3 {
	color: #000;
	font-size: 114%;
	font-weight: bold;
}
h4 {
	color: #cc0000;
	font-size: 92%;
	font-weight: normal;
	margin: 5px 0;
}
h5 {
	color: #000;
	font-size: 100%;
	font-weight: bold;
}
h6 {
	font-size: 100%;
	color: #000;
	font-weight: normal;
}
/* @end */

/* @group Text Styles */
.red {color: #cc0000;}
/* @end */

/* @group Lists */
div#outer-wrapper ul {
	margin-left: 20px;
}
div#outer-wrapper ol {
	margin-left: 27px;
}
/* @end */

/* @group Forms */
	
/* @end */

/* @group Links - link visited hover active */
a:link, a:visited {
	color: #cc0000;
}
a:hover, a:active {
	
}
/* @end */

/* @group Misc */
.clear {
	clear: both;
}
/* @end */