/*
	# Company: Scholz Electrical
	# CSS Author: Nick Maller (www.defythypixel.com)
	# File: screen.css
*/
@import url(form.css);
@import url(layout.css);
@import url(components.css);

/* 
	** Global reset and setting vertical rhythm
*/
*
{
	margin: 0;
	padding: 0;
	line-height: 122%;
}
body
{
	padding: 35px 0 0;
	
	background-color: #fff;
	background-image: url(../images/body-bg.jpg);
	background-repeat: repeat-x;
	
	color: #494b50;
	font-size: 100%;
	font-family: Arial, Sans-Serif;
    line-height: 1.125em; /* 16×1.125=18 */
}

/* 
	** Headings
*/
h1,
h2,
h3,
h4,
h5,
h6
{
	padding: 0 0 4px;
	color: #e14826;
}
h1 {	font-size: 140%; }
h2 {	font-size: 125%; }
h3 {	font-size: 110%; }
h4 {	font-size: 100%; color: #222; }
h5 {	font-size: 100%; color: #222; }
h6 {	font-size: 100%; color: #222; }


/* 
	** Content Elements
*/
p,
ul,
ol,
dl,
fieldset
{
	padding-bottom: 15px;
	line-height: 1.35em;
}
li
{
	line-height: 1.3em;
}
table.table
{
	margin-bottom: 15px;
}
em
{
	font-weight: bold;
}

dl
{
	height: 1%;
}
dl dt
{
	display: block;
	float: left;
	clear: both;
	width: 32%;
	padding-top: 2px;
	
	font-weight: bold;
}
dl dd
{
	display: block;
	margin-bottom: 2px;
	padding: 2px 0 3px 34%;
	
	border-bottom: 1px solid #efefef;
}

/* 
	** Lists
*/
ul ul,
ol ol
{
	padding: 0;
	list-style-position: inside;
}
ul li,
ol li
{
	margin-left: 27px;
}
ul
{
	list-style-type: none;
}
ul li
{
	margin-left: 0;
	padding-bottom: 2px;
	padding-left: 20px;
	
	background-image: url(../images/bullet.gif);
	background-repeat: no-repeat;
	background-position: 8px .5em;
}

/* 
	** Links
*/
a:link,
a:visited
{
	color: #ce3a1a;
}
a:hover
{
	color: #fa2e02;
}
a img
{
	border: 0;
}

/* 
	** table.tables
*/
table.table
{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	
	font-size: 90%;
}
table.table caption
{
	text-align: left;
	font-weight: bold;
}
table.table th,
table.table td
{
	padding: 4px;
	
	border: 1px solid #eaeaea;
}
table.table th
{
	text-align: left;
}
table.table thead th,
table.table thead td
{
	background-color: #eaeaea;
}