/*
Theme Name: Data Freight
Theme URI: http://datafreight.com/
Description: Data Freight web site theme
Version: 1.0
Author: Ken Schenke
Author URI: mailto:kschenke@datafreight.com
*/



/* Begin Typography & Colors */
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

.twoColFixRtHdr #page { 
	width: 970px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

.twoColFixRtHdr #header {
	padding: 0 0 0 5px;
	height: 150px;
	background-image: url( 'images/banner.jpg' );
	background-repeat: no-repeat;
}

#slogan {
	font-size: 1.25em;
	font-style: italic;
	color: #fff;
}

#contactinfo {
	/* font-size: 0.75em; */
	color: #fff;
}

#navbar {
	position: absolute;
	width: 970px;
	top: 130px;
}

li.yuimenubaritem+li {
	border-left: 1px solid #666;
}

a.yuimenubaritemlabel-selected {
	background-image: url( 'images/menu_hover.jpg' );
	background-repeat: repeat-x;
}

.yuimenuitemlabel-selected {
	background: #B7C6DD;
}

.yuimenubaritemlabel {
	font-size: 12px;
}

#pagetitlecontainer {
	padding-top: 10px;
}

#pagetitle {
	background-color: #4d71a5;
	background-image: url( 'images/titlebk.jpg' );
	background-repeat: repeat-x;
	padding: 5px;
	color: #fff;
	font-size: 22px;
	width: 100%;
}

.twoColFixRtHdr #mainContent { 
	background: #fff;
	border-right: 2px dotted #4d71a5;
	margin: 10px 200px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the navsidebar div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #navsidebar space when the content in #navsidebar ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 12px;
	width: 720px;
} 

.twoColFixRtHdr #navsidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 170px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #ddd; /* the background color will be displayed for the length of the content in the column, but no further */
	margin-top: 20px;
	padding: 15px 10px;
}

#navsidebar {
	font-size: 12px;
}

#navsidebar ul, navsidebar li {
	margin-left: 20px;
	padding-left: 0;
	line-height: 1.5em;
}

#navsidebar li {
	list-style: none;
}

#navsidebar li.selected {
	color: #555;
}

#footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	margin-top: 15px;
	font-size: 10px;
}

.twoColFixRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

a {
	color: #4d71a5;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/* End Typography & Colors */



/* Begin Images */
p img {
	padding: 0;
	max-width: 100%;
	}

/*	Using 'class="alignright"' on an image will (who would've
	thought?!) align the image to the right. And using 'class="centered',
	will of course center the image. This is much better than using
	align="center", being much more futureproof (and valid) */

img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}

img.alignright {
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
	}

img.alignleft {
	padding: 4px;
	margin: 0 7px 2px 0;
	display: inline;
	}

.alignright {
	float: right;
	}

.alignleft {
	float: left;
	}
/* End Images */




