/*
Company:	KLC
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:10px 0; }

blockquote { margin-left: 40px; }

fieldset { padding:10px; }

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

/* @group HTML, Body */
body {
	background: url(../images/bkg.gif);
	font-family: Verdana, Arial, sans-serif;
}
/* @end */

/* @group Layout */
div#outer-wrapper {
	background: url(../images/bd-bkg.png) repeat-y;
	width: 716px;
	margin-left: auto;
	margin-right: auto;
	font-size: 12px;
}
div#hd, div#bd {
	width: 686px;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
}
div#ft {
	width: 666px;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
}
div#ft p {
	color: #7e7e7e;
	font-size: 93%;
	margin: 10px 0;
	width: 140px;
	float: left;
	display: inline;
}
div#ft a:link, div#ft a:visited {
	color: #7e7e7e;
	text-decoration: none;
}
div#ft a:hover {
	text-decoration: underline;
}
div#ft ul {
	margin-top: 15px;
	float: right;
	display: inline;
}
div#ft ul li {
	list-style-type: none;
	padding: 0 6px;
	font-size: 93%;
	float: left;
	display: inline;
}

div.left {
	width: 258px;
	float: left;
	display: inline;
}
body#inside div.left {
	background: url(../images/sidebar-bkg.jpg) no-repeat 0 0;
	height: 316px;
}
body#inside div.left img.head {
	margin: 40px 0 5px 20px;
}
body#inside div.left ul {
	margin-left: 40px;
}
body#inside div.left ul li {
	list-style-type: none;
	background: url(../images/white-arrow.gif) no-repeat 0 50%;
	padding-left: 13px;
	margin: 2px 0;
}
body#inside div.left ul li a:link, body#inside div.left ul li a:visited {
	color: #fff;
	text-decoration: none;
}
body#inside div.left ul li a:hover {
	text-decoration: underline;
}
div.right {
	width: 424px;
	color: #646464;
	float: right;
	display: inline;
}

div.gray-box {
	background-color: #eeebe8;
	padding: 15px;
}
div.gray-box h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 100%;
	font-weight: normal;
	text-transform: uppercase;
	color: #5e5d5d;
	background: url(../images/hd-icon.gif) no-repeat 0 50%;
	padding-left: 18px;
}
div.gray-box ul.left-list, div.gray-box ul.center-list, div.gray-box ul.right-list {
	width: 110px;
	margin-left: 20px!important;
	font-size: 93%;
	float: left;
	display: inline;
}
div.gray-box ul.left-list, div.gray-box ul.center-list {
	background: url(../images/dotted-line.gif) repeat-y 100% 0;
}
div.gray-box ul li {
	background: url(../images/arrows.gif) no-repeat 0 50%;
	padding-left: 10px;
	list-style-type: none;
	margin: 2px 0;
}
div.gray-box a:link, div.gray-box a:visited {
	text-decoration: none;
}
div.gray-box a:hover {
	text-decoration: underline;
}
p.view-more {
	text-align: right;
	padding: 10px 0;
	margin: 0;
	font-size: 93%;
	clear: both;
}
p.view-more a:link, p.view-more a:visited {
	color: #5e5d5d;
	text-decoration: underline;
}
p.view-more a:hover {
	text-decoration: none;
}

div.left-col-half {
	width: 173px;
	margin: 10px 40px 10px 10px;
	float: left;
	display: inline;
}
div.right-col-half {
	width: 156px;
	margin: 10px 0;
	float: left;
	display: inline;
}

div.content-box {
	padding: 15px;
}

div#bd {
	margin-bottom: 10px;
}
div#ft {
	border-top: 4px solid #c8c7c7;
	clear: both;
	padding: 10px;
	font-weight: bold;
}

div.admin {
	padding: 10px;
}
/* @end */

/* @group Nav */
div#nav {
	background: url(../images/nav-bkg.gif) repeat-x;
	height: 34px;
	border-top: 4px solid #000;
	border-bottom: 4px solid #000;
}
div#nav ul {
	margin-left: 0!important;
}
div#nav ul li {
	list-style-type: none;
	margin-left: 0!important;
	float: left;
	display: inline;
}
div#nav ul li a {
	line-height: 34px;
	padding: 0 28px;
	background: url(../images/nav-div.gif) no-repeat 100% 100%;
	float: left;
	display: inline;
}
div#nav li.last a {
	background: none!important;
}
div#nav a:link, div#nav a:visited {
	color: #fff;
	text-decoration: none;
}
/* @end */

/* @group Headings */
h1 {
	color: #000;
	font-size: 175%;
	font-weight: bold;
}
h2 {
	color: #5e5d5d;
	font-size: 100%;
	font-weight: normal;
	margin: 5px 0;
	text-transform: uppercase;
	background: url(../images/hd-icon.gif) no-repeat 0 50%;
	padding-left: 18px;
}
h3 {
	color: #000;
	font-size: 116%;
	font-weight: bold;
}
h4 {
	color: #000;
	font-size: 108%;
	font-weight: bold;
}
h5 {
	color: #000;
	font-size: 100%;
	font-weight: bold;
}
h6 {
	font-size: 100%;
	color: #000;
	font-weight: normal;
}
/* @end */

/* @group Text Styles */
	
/* @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: #345cd7;
}
a:hover, a:active {
	
}
/* @end */

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

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* @end */
