@charset "UTF-8";
/*body {
	font: 100%/Muli, Helvetica, sans-serif;
	background-color: #42413C;
	margin: 0;
	padding: 0;
	color: #FFF;
}*/

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	/*padding-right: 15px;
	padding-left: 15px; */
}
a img { 
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: none;
}
a:visited {
	color: #6E6C64;
	text-decoration: none;
}
a:hover, a:active, a:focus {
	text-decoration: underline;
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 960px;
	background-color: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	margin-bottom: 20px;
}

.sidebar1 {
	float: right;
	width: 280px;
	/*background-color: #EADCAE;*/
	padding-bottom: 10px;
	padding-top: 10px;
}
.sidebar1 p {
	padding-right: 15px;
	padding-left: 15px; 
}
.content {
	width: 680px;
	margin-top: 20px;
}
.content p {
	padding-right: 15px;
}

.content ul, .content ol { 
	padding: 0 15px 15px 40px; 
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	float: right;
	list-style: none; 
	/*border-top: 1px solid #666; */
	margin-bottom: 15px;
}
ul.nav li {
	/*border-bottom: 1px solid #666; */
}
ul.nav a, ul.nav a:visited {
	padding: 5px 5px 5px 15px;
	display: inline-block;
	width: 110px;
	text-decoration: none;	
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	color: #f99b00;
	text-decoration:underline;
}

/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	position: relative;
	clear: both; 
	height: 50px;
	margin-bottom: 30px;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  
	float: right;
	margin-left: 8px;
	margin-bottom: 12px;
}
.fltlft { 
	float: left;
	margin-right: 8px;
}
.clearfloat { 
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.navCel {
	float: right;
	width: 140px;
	/*background-color: #EADCAE;*/
	text-align: center;
	padding-top: 10px;
}
.navCal img {
	opacity:1.07;
	filter:alpha(opacity=100);
}
.navCel img:hover {	
	text-decoration:none !important;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	opacity:0.8;
	filter:alpha(opacity=80);
}
.navCel p:hover {
	text-decoration:underline;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	opacity:0.8;
	filter:alpha(opacity=80);
	color: #f99b00;
}
.topNav {
	float:right;
	width: 350px;
	padding-top: 20px;	
}
.social {
	float:right;
	width: 40px;
	padding-top: 5px;
	padding-left: 10px;
}
.topNav img:hover {	
	text-decoration:none !important;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	opacity:0.5;
	filter:alpha(opacity=50);
}
