@charset "utf-8";
/* CSS Document */

/* basic layout rules:

1. avoid padding in layout, unless the axis you are padding is of auto width
2. borders may add to the size of the div

*/

body {
	padding:10px 0 0 0;
	margin:0;
	background-image: url(../images/bodyBackground.gif);
	background-repeat: repeat-x;
	background-position: top;
	background-color:#5eaf36;
}

#page_wrapper {
	margin: 0;
	padding: 0;
	width:100%;

}

#main_column {
	width:804px;
	margin: 0 auto;
	position: relative;
	
}

#header {
	height:50px;
}

#logo {
	/* fancy: posisiton relative is relative to where it would have been placed. Now you can offset it by however much you want */
	/* fancy: posisiton absolute is relative to the closest relativly positioned parent. in this case, #main_column which would retain centering on page */
	/* items positioned this way will be removed from the flow and following items will take their spot unless handled */
	position:relative;
	left:-10px;
	float:left;
}

#header_right {
	float:left;
	text-align:right;
	width:65%;
	position:relative;
	top:20px;
}

#slideshow_wrapper {
	background-image:url(../images/slideshow/1.jpg);
	background-repeat:no-repeat;
	height:241px;
}

#slideshow {
	width:804px;
	height: 241px;
}

#slideshow_images {
	display:none;
}

#navigation {
	width:804px;
	height:45px;
	margin:19px 0 0 0;
	background-image:url(../images/navBackground.png);
	text-align: center;
}

#bottom {
	background-image:url(../images/contentBkgd.gif);
	background-repeat:repeat-y;
}

#bottom_left {
	float:left;
	padding:20px;
}

#bottom_right {
	float:left;
	width:460px;
	padding:20px;
}

#bottom_right_top {
	background-color:#edf3f8;
	background-image: url(../images/rightBottom.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}	

#bottom_right_top_content {
	padding:15px;

}

.right_heading {
	width:275px;
	height:43px;
	background-image: url(../images/rightHeading.png);
	background-repeat: no-repeat;
	background-color: #fff;
}

#right_badge {
	width:275px;
	height:145px;
	background-image: url(../images/contactBadge.png);
	background-repeat: no-repeat;	
	margin-top:25px;
}

#footer {
	width:804px;
	height:45px;
	background-image:url(../images/footerBackground.png);
	
}

#leftBottomTop {
	height:17px;
	background-image:url(../images/leftBottomTop.gif);
}

#leftBottomMiddle {
	width:237px;
	background-image:url(../images/leftBottomMiddle.gif);
}

#leftBottomBottom {
	height:17px;
	width:237px;
	background-image:url(../images/leftBottomBottom.gif);
}

#leftBottomContent {
	padding:10px;
}


.row {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 20px;
	padding-bottom: 20px;
}

.row h2 {
	margin-bottom:10px;
}

.chicklet {
	float: left;
	width: 33%;
	text-align: center;
	;
}

.left {	text-align:left; }
.center { text-align:center; }
.right { text-align:right; }


