/*
Company:	Musson Contracting
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/metal-bkg.gif);
}
/* @end */

/* @group Layout */
div#outer-wrapper {
	width: 782px;
	margin-left: auto;
	margin-right: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
}
div#outer-top {
	height: 9px;
	background: url(../images/bkg-top.png) no-repeat;
	overflow: hidden;
}
div#outer-mid {
	background: url(../images/bkg.png) repeat-y;
	padding: 0 8px;
}
div#outer-btm {
	background: url(../images/bkg-btm.png) no-repeat;
	height: 29px;
	overflow: hidden;
}

div#hd {
	height: 143px;
	overflow: hidden;
}
div#logo {
	width: 494px;
	float: left;
	display: inline;
}
div#hd-right {
	width: 272px;
	float: right;
	display: inline;
}

div#bd-outer {
	background: url(../images/inside-cols-bkg.gif) repeat-y;
}
body#inside div#bd {
	background: url(../images/inside-col-pic.gif) no-repeat bottom left;
}

div#admin {
	padding: 20px;
}

div#left {
	width: 364px;
	float: left;
	display: inline;
}
body#inside div#left {
	width: 178px;
	padding-bottom: 100px;
}
body#inside div#left ul {
	list-style-type: none;
	margin-top: 10px;
	margin-bottom: 10px;
}
body#inside div#left ul a {
	padding-bottom: 5px;
	margin-right: 20px;
	border-bottom: 1px dashed #fff;
	margin-bottom: 5px;
	display: block;
}
body#inside div#left ul a:link, body#inside div#left ul a:visited {
	color: #fff;
	text-decoration: none;
}
div#right {
	width: 402px;
	float: right;
	display: inline;
}
body#inside div#right {
	width: 548px;
	padding: 20px;
}

div#ft {
	color: #fff;
	font-size: 92%;
	line-height: 25px;
	text-indent: 30px;
}
/* @end */

/* @group Nav */
div#nav {
	height: 25px;
	width: 766px;
	background: url(../images/nav-bkg.jpg) no-repeat;
	font-size: 107%;
	float: left;
	display: inline;
}
div#nav ul li {
	list-style-type: none;
	padding: 0 30px 0 0;
	float: left;
	display: inline;
}
div#nav ul li a {
	line-height: 25px;
}
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: #000;
	font-size: 133%;
	font-weight: bold;
}
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: #b91f25;
}
a:hover, a:active {
	text-decoration: none;
}
/* @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 */