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

<style type="text/css"> 

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
	background-image: url(http://www.kochanmoves.com/development/kochan3/assets/images/backgrounds/NewMetal.jpg);
}
.thrColFixHdr #background_for_people {
	height: 500px;
	width: 603px;
	left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-image: url(../images/backgrounds/people_bg.png);
	background-repeat: no-repeat;
	background-position: right;
}

.thrColFixHdr #red_bar {
	background-color: #de2123;
	height: 26px;
	width: 466px;
	top: 10px;
	position: relative;
	left: 137px;
}

.thrColFixHdr #orange_bar {
	background-color: #fa9f00;
	height: 26px;
	width: 104px;
	top: 10px;
	position: relative;
	left: 137px;
}
.thrColFixHdr #green_bar {
	background-color: #97b11d;
	height: 26px;
	width: 104px;
	top: -16px;
	position: relative;
	left: 241px;
}

.thrColFixHdr #container { 
	width: 1010px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #CCCCCC;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(http://www.kochanmoves.com/development/kochan3/assets/images/backgrounds/testing2.png);
} 
.thrColFixHdr #header {
	padding: 10px 0px 0px 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	
} 
.blackAndWhite {
	color: #FFFFFF;
	background-color: #000000;
}
.text {
font-family: Arial,Helvetica,sans-serif;
font-size: 1em;
text-indent: -0.05em;

}
.rightSide {
font-family: Arial,Helvetica,sans-serif;
font-size: .85em;
color: #000000;
line-height: 114%;
word-spacing: 0.05em;

}
.peopleMenu {
font-family: Arial,Helvetica,sans-serif;
font-size: .90em;
color: #005dab;
line-height: 124%;
word-spacing: 0.05em;
text-indent: 0.35em;

}
.peopleMenu A:link {text-decoration: none; color: #005dab;}
.peopleMenu A:visited {text-decoration: none; color: #005dab;}
.peopleMenu A:active {text-decoration: none; color: #005dab;}
.peopleMenu A:hover {text-decoration: underline; color: #9fcf67;}

.peopleMenu2 {
font-family: Arial,Helvetica,sans-serif;
font-size: .90em;
color: #005dab;
line-height: 114%;
word-spacing: 0.05em;
text-indent: 0.35em;

}
.peopleMenu2 A:link {text-decoration: none; color: #005dab;}
.peopleMenu2 A:visited {text-decoration: none; color: #005dab;}
.peopleMenu2 A:active {text-decoration: none; color: #005dab;}
.peopleMenu2 A:hover {text-decoration: underline; color: #9fcf67;}

.thrColFixHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 6px 0px 0px 0px;
	 /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.thrColFixHdr #sidebar1 {
	float: left; /* 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: #EBEBEB; the background color will be displayed for the length of the content in the column, but no further */
	padding: 1px 2px 2px 2px; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 181px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 18px 2px 2px 2px; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #mainContent {
	background-image: url(assets/images/site/main_content_area_fade.png);
	background-repeat: repeat-x;
	background-position: center;
	margin-top: 0;
	margin-right: 196px;
	margin-bottom: 0;
	margin-left: 176px;
	padding-top: 0;
	padding-right: 4px;
	padding-bottom: 0;
	padding-left: 4px;
} 
.thrColFixHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
.thrColFixHdr #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 */
}
.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;
}

</style>
[if IE 5]>
<style type="text/css"> 
/* place css box model fixes for IE 5* in this conditional comment */
.thrColFixHdr #sidebar1 { width: 170px; }
.thrColFixHdr #sidebar2 { width: 190px; }
</style>
<![endif][if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
.thrColFixHdr #sidebar2, .thrColFixHdr #sidebar1 { padding-top: 30px; }
.thrColFixHdr #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]
#text {
	background-color: #000033;
	height: 400px;
	width: 400px;
	top: 30px;
}

/* people pages */

#people_btn {
	float: left;
	width: 50px;
	padding: 140px 0px 0px 11px;
}

#people_content {
	text-align: left;
	margin-left: 140px;
	padding: 70px 0px 0px 0px;
	width: 320px;
}

#bob {
	background-image: url(../images/people/bob.jpg);
	background-repeat: no-repeat;
	position: relative;
	height: 450px;
	width: 603px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-style: normal;
	line-height: normal;
	padding-left: -14px;
	text-align: left;
	/**/
	left: 14px;
}

#kathy {
	background-image: url(../images/people/kathy.jpg);
	background-repeat: no-repeat;
	position: relative;
	height: 450px;
	width: 603px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-style: normal;
	line-height: normal;
	padding-left: -14px;
	text-align: left;
	left: 14px;
}
#leslie {
	background-image: url(../images/people/leslie.jpg);
	background-repeat: no-repeat;
	position: relative;
	height: 450px;
	width: 603px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-style: normal;
	line-height: normal;
	padding-left: -14px;
	text-align: left;
	left: 14px;
}
#jill {
	background-image: url(../images/people/jill.jpg);
	background-repeat: no-repeat;
	position: relative;
	height: 450px;
	width: 603px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-style: normal;
	line-height: normal;
	padding-left: -14px;
	text-align: left;
	
	left: 14px;
}
#lisa {
	background-image: url(../images/people/lisa.png);
	background-repeat: no-repeat;
	position: relative;
	height: 450px;
	width: 603px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-style: normal;
	line-height: normal;
	padding-left: -14px;
	text-align: left;
	
	left: 14px;
}
#dan {
	background-image: url(../images/people/dan.png);
	background-repeat: no-repeat;
	position: relative;
	height: 450px;
	width: 603px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-style: normal;
	line-height: normal;
	padding-left: -14px;
	text-align: left;
	
	left: 14px;
}
#karen {
	background-image: url(../images/people/karen.jpg);
	background-repeat: no-repeat;
	position: relative;
	height: 450px;
	width: 603px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-style: normal;
	line-height: normal;
	padding-left: -14px;
	text-align: left;
	
	left: 14px;
}
#tracy {
	background-image: url(../images/people/tracy.jpg);
	background-repeat: no-repeat;
	position: relative;
	height: 450px;
	width: 603px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-style: normal;
	line-height: normal;
	padding-left: -14px;
	text-align: left;
	
	left: 14px;
}
#tracey {
	background-image: url(../images/people/tracey.jpg);
	background-repeat: no-repeat;
	position: relative;
	height: 450px;
	width: 603px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-style: normal;
	line-height: normal;
	padding-left: -14px;
	text-align: left;
	
	left: 14px;
}
#jane {
	background-image: url(../images/people/jane.jpg);
	background-repeat: no-repeat;
	position: relative;
	height: 450px;
	width: 603px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-style: normal;
	line-height: normal;
	padding-left: -14px;
	text-align: left;
	
	left: 14px;
}

#kevin {
	background-image: url(../images/people/Kevin.jpg);
	background-repeat: no-repeat;
	position: relative;
	height: 450px;
	width: 603px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-style: normal;
	line-height: normal;
	padding-left: -14px;
	text-align: left;
	
	left: 14px;
}

#linda {
	background-image: url(../images/people/linda.jpg);
	background-repeat: no-repeat;
	position: relative;
	height: 450px;
	width: 603px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-style: normal;
	line-height: normal;
	padding-left: -14px;
	text-align: left;
	
	left: 14px;
}

#rebecca {
	background-image: url(../images/people/rebecca.jpg);
	background-repeat: no-repeat;
	position: relative;
	height: 450px;
	width: 603px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-style: normal;
	line-height: normal;
	padding-left: -14px;
	text-align: left;
	
	left: 14px;
}


/* contact page */
#contact {
	background-image: url(http://kochanandcompany.com/assets/images/contact/background.png);
	background-repeat: no-repeat;
	position: relative;
}
	
#contact_left {
	text-align:center;
	float: left;
	width: 281px;
	padding: 40px 20px 20px 20px;
}

#contact_right {
	text-align: left;
	margin-left: 321px;
	padding: 40px 20px 20px 20px;
	width: 242px;
}

#contact_address {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	color: #b6eb7c;
	
}

#contact_affiliation1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	color: #fff;
	font-weight: bold;
}

#contact_affiliation {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	color: #fff;
	font-style: italic;
}

.contact_names1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	color: #fff;
	font-weight: bold;
}
	
.contact_names {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	color: #fff;
}

.contact_names A:link {
	color: #95d3f3;
	font-style:italic;
}


/* rotator in-page placement */
    div#rotator {
	position:relative;
	height:360px;
	margin-left: 0px;
}
/* rotator css */
	div#rotator ul li {
	float:left;
	position:absolute;
	list-style: none;
	margin-left:14px;
}
/* rotator image style */	
	div#rotator ul li img {
	border:1px solid #ccc;
	border: none;
	padding: 0px;
	
}
    div#rotator ul li.show {
	z-index:500
}

*, * focus {
	outline: none;
	padding: 0;
}




