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

/*
Theme Name: Bowen Theme
Description: Version 1.3  Child of 2011 theme.  http://www.jennifersilcott.com
Date: September 10, 2014
Author: J. Silcott
Template: twentyeleven
Previous Updates:  Added Sidebar to blog posts, added newsfeed to front page; Fixed minor padding issue for image rotator; Assigned primary menu through WP interface and adapted CSS file to match previous style; Fixed up sidebar; Improve mobile responsiveness

Current Updates:  Updated newsfeed, tightened up design on mobile view

*/

@import url("../twentyeleven/style.css"); /*imports all of the aspects of the original stylesheet that do not need to be altered.*/

/*---------------------Universal Styles--------------------*/

body {
	padding:0;
	background-image: url(images/bg-body.gif);
	background-repeat: repeat;
}

body.page .entry-meta{
	display: none;
}


.entry-title a:hover, .entry-title a:focus, .entry-title a:active{
	color:#00ab92;
}

#contacts {
	background-color: #A5CBE5;
	padding-left: 5px;
}
#contacts th {
	text-transform: none;
	font-size: 100%;
	font-weight: bold;
	color: #666;
	letter-spacing: 0em;
	line-height: 2.0em;
}

#contacts td {
	border-top: none;
	color: #6665;
	line-height: 1.5em;
}

/*-------------------------------------------BNR Fixes------------------------------------------------*/
/*--------fixing white space-----------*/
#main{
	padding:0; /*tightens up white space per BNR request.  Pulls content closer to the menu.*/
}

.entry-title{
	padding-top:5px; /*brings up the entry header for the pages like the code above does for the home page.*/
}

.entry-content, .entry-summary {
    padding: 5px 0 0;
}

#content nav {
    padding: 0;
}

.entry-content h1, .entry-content h2, .comment-content h1, .comment-content h2{
	margin:0 0 5px;
}

div.bowenBlueBox{
	background-color: #005467;
    color: #FFFFFF;
    height: auto;
    padding: 1.5em;
    text-align: justify;
    width: 35%;
    float:left;
}

div.lightBowenBlue{
	height:auto;
	width:auto;
	padding:1.5em;
	background-color:#b9cfe3;
}

.lightBowenBlue h2.trigger{
	color:#444242;
}


.clients{
	width:25%;
	height:auto;
	float:left;
}

/*------------end of fixing white space-------------*/

/*-------------------------------------------End of BNR Fixes----------------------------------------*/

p {
	text-align: left;
	margin-bottom:5px;
}

a {color:#005365;}

footer.entry-meta {display:none;}

ul {list-style: none;}

.widget{margin:0 0 1.2em;}

.dottedLine{
	height:70px;
	width:100%;
	margin-bottom:10px;
	border-bottom: #B9CEE2 thin dotted;
}

blockquote ul li {
	font-style: normal;
	list-style: url(images/check3.png);
	font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*--------------------Header----------------------*/

#branding #searchform {
	padding: 5px 5px 5px 0;
	top:0;
	right: 2.6%;
}

#site-title {
	padding:0;
}

#site-description {
	bottom: 9px;
    font-family: vijaya,veranda, serif;
    font-size: 21px;
    font-style: italic;
    font-weight: bold;
    left: 405px;
    margin: 0;
    position: absolute;
    width: 50%;
}

#page {
	border:#ded3d3 medium solid;
	box-shadow:0 10px 10px #CCCCCC;
	-webkit-box-shadow: 0 10px 10px #cccccc;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#cccccc')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#cccccc');
}

#branding {
	border-top:none;
}

#branding hgroup {
	margin: 1em 2em 0;
}

#branding img {
	width:50%;
}

#headerIcons{
	right:2em;
	top:43%;
	position:absolute;
	background:url(images/socialMediaSprite.png) no-repeat;
	height:40px;
	width:200px;
}

#headerIcons a, li.socialMedia {
    height: 40px;
    display: block;
    float:left;
}

#headerIcons a{
	width:50px;
}

li.socialmedia {
    float: left;
    display: inline;
}

#email{
	width:50px;
}

#linkedIn{
	width:100px;
}
#twitter{
	width:150px;
}

#facebook{
	width:200px;
}

a#email:hover{background:url(images/socialMediaSprite.png) 0 -50px no-repeat;}

a#linkedIn:hover{background:url(images/socialMediaSprite.png) -50px -50px no-repeat; }

a#twitter:hover{background:url(images/socialMediaSprite.png) -100px -50px no-repeat;}

a#facebook:hover{background:url(images/socialMediaSprite.png) -150px -50px no-repeat;}

/*----------------Navigation------------------*/

#access {
	background:none #005365;
	height:31px;
	border-top:#B9CEE2 medium solid;
	border-bottom: #B9CEE2 medium solid;
	box-shadow:none;
	-webkit-box-shadow:none;
	}
	
#access div {
	margin: 0 2em;
}

#responsive-menu-icon {display:none;}

.menu {height:inherit;}

#access a {
	color:#ffffff;
	text-align: center;
	font-size: 16px;
	line-height: 2em;
	white-space: nowrap;
}

#access ul {
	margin:auto;
}

#access li {
	/*width:20%;*/
	width:16%;
}

#access li:hover > a,
#access a:focus {
	background:#005467;
	color:#ffffff;
	height:31px;
	font-weight: bold;
}
/*
#access li ul li:hover > a{
	color:#00aa90;
}*/

/*#access ul ul :hover > a {color:#00aa90;}*/

#access ul ul {
	position:absolute;
	top:-9999px;
    box-shadow: 0 10px 10px #cccccc;
    -webkit-box-shadow: 0 10px 10px #cccccc;
    width:190px;
    background-color:#EFEFEF;
    display: block;
    opacity: 0; /*hide prior to hover*/
    /*css3 transitions.  transition effect without javascript!*/
    -webkit-transition: opacity .6s ease-in-out; /* For chrome & safari */
    -moz-transition: opacity .6s ease-in-out; /* For mozilla firefox */
    -o-transition: opacity .6s ease-in-out; /* For opera */
    transition: opacity .6s ease-in-out; /* Not yet implemented, but will be available soon */ 
    /*display:none\9;/*Hack to ensure that submenu appears in IE 8 and below.*/
    
}


#access ul li:hover > ul {
	opacity:1;
	top:99%;
}

/*submenu*/
#access ul ul.children li, #access ul ul.sub-menu li {
	width:inherit;
	background-color:#B9CEE2;
	border-bottom:#ffffff thin solid;
	clear:both;
}

#access ul ul.children li a, #access ul ul.sub-menu li a {
	text-align: left;
	height:inherit;
	font-weight: normal;
	white-space: normal;
}

#access ul ul.children li a:hover, #access ul ul.sub-menu li a:hover{
	color:#00AB92 !important;
	height:inherit;
	
}

#access .current-menu-item > a, #access .current-menu-ancestor > a, #access li.current_page_item a, #access .current_page_ancestor a {
	color:#ffffff;
	background:#005365;
	height:31px;
	font-weight: bold;
} 

/*#access .current-page-parent ul li a {
	background-color:#ffffff;
}*/

#access ul ul a {
	color:#222222 !important;
	background: #B9CEE2 !important;
}

#access ul ul li.current_page_item a {
	color:#00ab92 !important;
	font-weight:bold;
}

/*--------------Home page-------------------*/

.Homewrap{
	width:100%;
	height:360px;
	box-shadow: 0 10px 10px #CCCCCC;
	-webkit-box-shadow: 0 10px 10px #CCCCCC;
}

.sliderRight{float:left;}

#startImage{
	display: block;
}

.imageRotator{
	width:640px;
	height:360px;
}


#content img.rotating-item {
    box-shadow: none;
    margin-top: 4.9em;
    padding:0;
    border:none;
}


#removeShadow{
	box-shadow: none;
}

/*----rotating image display---*/

#initialDisplay{
	display: block;
}

.rotating-item {
	display:none;
	position:absolute;
	top:0;
	left:0;
}


.highlights{
	width:270px; /*For all other standard browsers*/
	width:265px\9; /*Hack that targets IE 8 and below to get the blue box to align to the rotating images*/
	height:330px;
	background-color:#005365;
	color:#ffffff;
	float:left;
	padding:1em;
	*display:none;/*temporarily removes div from IE7 until I can fix it.*/
}

.highlights p{
	margin-bottom: 0;
}

.highlights ul{
	list-style:outside;
	margin-bottom:2px;
}

.highlights ul li{
	font-size:12px;
}

.sliderTablet{
	display: none;
}

/*--------------content area----------------*/

.singular #content, .left-sidebar.singular #content, #widgetWrapper {
    margin: 0 2em;
}

.singular .entry-header, .singular .entry-content, .singular footer.entry-meta, .singular #comments-title {
     width: 100%;
}

.singular .entry-title {
	color:#005365;
	font-family:veranda; /*per BNR request*/
}

.singular #primary {
	margin: 0 0 1.63em; /*keeps the footer down from the widget area*/
}

.singular.page .hentry {
    padding: 0;
}

.entry-title, .entry-title a {
	color:#005365;
}

.entry-content h1 {
	font-size:25px;
	color:#005365;
}

.entry-header .comments-link{ display: none; } /*gets rid of comment bubble*/

p a {
	font-weight: bold; /*only in-content links are bold*/
}


h3 a, a.matchH3 {
	font-size: 16px;
	font-weight:bold;
	background-color:#005365;
	color:#ffffff;
	padding:1em;
	text-decoration: none;
	float:right;
	letter-spacing: 0.1em;
		
}


h3 a:hover, a.matchH3:hover{
	background-color:#656363;
	text-decoration: none;
}

#content img {
	box-shadow: 0 10px 10px #CCCCCC;
	-webkit-box-shadow: 0 10px 10px #CCCCCC;
}

.removePadding{
	padding-left:30px;
}

/*------SIDE BAR---------*/

aside#recent-posts-2.widget.widget_recent_entries ul li{
	margin-top:10px;
	list-style:square;	
}

/*-------------Experience Page-------------------*/

div.bowenBlue{
	background-color: #005365;
    color: #FFFFFF;
    height: auto;
    padding-bottom: 1em;
    padding-left: 1em;
    width: 45%;}

/*--------------Employee Page--------------------*/


.employeeWrap, experienceWrap{
	clear: both;
    height: auto;
    width: 100%;
} 

.experienceMap{
	width:55%;
	height:auto;
	float:right;
	margin-top:-10px; /*to align with the bowenBlueBox.  Try to get rid of this*/
}

img.employeePicture{
	float:left;
	margin-bottom:20px;

}

div.employeePicture img{
	/*box-shadow: 0 10px 10px #cccccc;	
	-webkit-box-shadow: 0 10px 10px #cccccc;*/
}

div.employee {
	 background-color: #005365;
    border: thin solid #B9CEE2;
    border-radius: 2px 2px 2px 2px;
    box-shadow: 0 10px 10px #CCCCCC;
    color: #FFFFFF;
    float: right;
    margin-bottom: 20px;
    padding: 2em;
    width: 65%;
}

.contactEmployee{
	width:100%;
	border-top:#b9cee2 thin dotted;
	padding-top:15px;
}

img.contactEmployeeImage {
	padding:0;
	margin-right:10px;
	opacity:0.8;
}

img.contactEmployeeImage:hover{
	opacity:1.0;
}

/*-----------------Services and Toggle Effect------------------*/

p.employeePicture {
	width:225px;
	margin:0;
}

.fullWidth{
	margin-bottom:10px;
}

.fullWidth a {
	font-weight: bold;
}

h2.trigger {
	color: #FFFFFF;
	border-bottom: #b9cee2 medium dotted;
}

h2.trigger.research{
	/*color:#cccccc;*/
	background-color:#005365;
	padding:1em;
	border-bottom:none;
}

h2.trigger:hover{
	color:#00aa90;
	cursor:hand;
}

h2.trigger.research:hover{
	background-color:#cccccc;
}

/*-------RESEARCH PAGE----------*/

div.researchContainer{
	display: none;
}


/*-----------------Research Links--------------------*/

.researchLinkPic{
	margin-right: 50px;
}

/*-----------------Statewide surveys------------------*/

.below{
	clear:both;
	margin-top:2%;
	padding-top:2%;
	border-top:#cccccc medium dotted;
}

.noShadow, #content .noShadow img{
	box-shadow:none;
	-webkit-box-shadow:none;
	border:none;
	margin-top:15px;
}

/*next time check to see if anything else uses this code.  erase if not.*/
.leftText, .rightText {/*for the statewide surveys text in blue box*/
	width:45%;
	float:left;
	}
	
.stateWideText { /*expand statewide surveys text in blue box to three columns*/
	float: left;
    margin-left: 19px;
    width: 30%;
	
}

/*--------------Splash two column bottom----------------*/

#widgetWrapper {
	margin-top:20px;
	padding: 0 0 1.625em;
}

.textwidget h3 a {
	float:right;
}

#test_widget{
	width:45%;
	float:left;
}

#splash-two{
	width:45%;	
	float:right;
}

 #test_widget h2, #splash-two h2 {
	margin-bottom:20px;
	font-size: 25px;
	color:#005365;
	font-weight: bold;
}

#test_widget img, #splash-two img {
	float:left;
	margin:0 20px 50px 0;
}

#test_widget p, #splash-two p {
	text-align: justify;
}

/*--------------Presentation Page-------------*/

a.presentationLink{
	color:#ffffff;
}

a.presentationLink:hover{
	color:#00aa90;
	text-decoration: none;
}

/*-------------Contact Page--------------------*/

.bowenMap{
	float:right;
	border-left: #B9CEE2 medium dotted;
	padding-left:2%;
}

.bowenMap iframe{
	border:#ffffff thin solid;
	border-radius:2px;
	box-shadow: 0 10px 10px #CCCCCC;
	-webkit-box-shadow: 0 10px 10px #cccccc;
}

.contact{
	text-align: justify;
	width:50%;
	float:left;
}

.contact strong{
	color:#005365;
}

/*contact-page specific widget wrapper for inidividual employee contacts*/

.page-id-35 #widgetWrapper{
	border-top:#b9cee2 thin dotted;
	padding-top: 25px;
}

#contact1, #contact2{
	//float:left;
}

#contact1 h3, #contact2 h3{
	color:#005365;
	font-size: 18px;
	font-weight: bolder;
	text-decoration: underline;
}

#contact1 u, #contact2 u{
	//color:#005365;
	//font-weight: bold;
	//text-decoration: none;
}

#contact1{
	//width:54%;
}

#contact2{
	//width:46%;
}

#contact1 td  {
	text-align: center;
}

#contact1 td  p {
	text-align: center;
}

#contact1 td   p   a {
	font-weight: normal;
}

#contact1 td {
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 5px;
}

/*--------------Footer Area---------------------*/

#site-generator{
	/*removes "Proudly Powered by Wordpress" area*/
	display:none;
}

	/*this is the address*/
#supplementary #second {
	text-align: center;
	color:#005365;
}

/*--------------About Widget Area----------------------*/


.aboutContainer{
	width:100%;
	display:inline-block;
	margin:1em 0;
}

#about1, #about2, #about3 {
	border:#b9cee2 thin solid;
	border-radius:5px;
	-moz-border-radius:5px;
	width:28%;
	float:left;
	margin-left:1em;
	padding:1em;
	box-shadow: 0 10px 10px #CCCCCC;
	-webkit-box-shadow: 0 10px 10px #cccccc;
}

#about1 a, #about2 a, #about3 a{
	text-decoration: none;
}

#about1 h3, #about2 h3, #about3 h3, #research1 h3, #research2 h3, #research3 h3, #research4 h3, #services4 h3 {
	color:#ffffff;
	margin-bottom:1em;
	text-align: center;
	font-weight: bold;
	padding:1em;
	font-size:16px;
	border-radius:2px;
	background-color:#005365;
}


#about1 h3:hover, #about2 h3:hover, #about3 h3:hover{
	background-color:#656363;
}

#about1 img, #about2 img, #about3  img{
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.associations{
	clear:both;
}

/*--------------Services Widget Area-----------*/

#services1, #services2, #services3, #services4{
	border:#b9cee2 thin solid;
	border-radius:5px;
	-moz-border-radius:5px;
	width:21%;
	float:left;
	margin-left:.5em;
	padding:1em;
	box-shadow: 0 10px 10px #CCCCCC;
	font-size: 12px;
	
}

#services1 h3, #services2 h3, #services3 h3, #services4 h3{
	font-size: 12px;
}

/*---------------Footer Widget Area--------------*/


#nav_menu-2{
	margin:0; /*lets the copyright text come up*/
}

#first .widget_text{
	font-size:13px;
	font-weight: bold;
	color:#005365;
}

#supplementary {
    border-top: 1px solid #b9cee2;
    padding: 1.625em 2em;
    background-color:#ffffff;
}


#supplementary a:hover{
	text-decoration:none;
	color:#656363;
}

#supplementary #third{
	*margin-left: -5px;
}

#supplementary #third p{
	text-align: right;
	color:#005365;
	font-weight: bold;
	font-size:13px;
}

#supplementary #third #text-7{
	margin-bottom: 0 0 0.2em;
}

#third .widget_search #s {
   -moz-transition-duration: 400ms;
    -moz-transition-property: width, background;
    -moz-transition-timing-function: ease;
    float: right;
    width: 72px;
}

#search-3{
	margin-top:-10px;
}

#third .widget_search #s:focus{
	width:196px;
}

/*-------INDIVIDUAL BLOG POSTS--------*/

.single-post #primary{
	float: left;
    margin: 0 -26.4% 0 0;
    width: 100%;
}

.single-post #primary #content {
	/*width:60%;*/
	margin: 0 34% 0 7.6%;
    width: 58.4%;
}

.single-post #secondary {
	margin-right: 6.6%;
    margin-top: 20px;
    width: 19.8%;
}

.entry-meta{
	border-top:medium solid #b9cee2;
	padding-top:10px;
}

#nav-single{
	top:30px;
}


article.post header h1.entry-title{
	font-size:20px;
	font-family:sans-serif;
	line-height: 25px;
}

/*---------blog feed on home page-----------*/

/*.home section.recent-posts{
	width:100%;
	height:auto;
	float:none;
	background-color:aqua;
}*/

.newsUpdates{
	color:#005365;
	font-size:25px;
	font-weight: bold;
}

.newsFeed{
	width:95%;
	height:100%; /*250px;*/
	display: inline-block;
	margin-top:1%;
	margin-left:auto;
	margin-right:auto;
	padding:1em;
	clear:both;
	border:#005365 medium solid;
	background-color: #b9cee2;
}

.newsFeed section.recent-posts{
	padding:0;
	margin-left: 45px;
}


.newsFeed section.recent-posts article.featured div.desc h2{
	min-height:75px;
}

.newsFeed section.recent-posts article.featured div.desc > p{
	border-top: medium dotted #00ab92;
    margin-top: 1em;
    padding: 1em 0 0;
}

.newsFeed section.recent-posts article.featured div.desc > p a{
	display: inline-block; /*pushes the "read more" text onto its own line*/
}

.desc {
	width:30%;
	margin-right:25px;
	float:left;
}

.desc h2{
	font-weight: bold;
	font-size: 15px;
	margin-bottom:10px;
}


.desc p>a{
	margin-top:10px;
}


/*----Disable comments on blog posts-----*/

.noComments{
	width: 100%;
	border-top:#cccccc thin dashed;
	padding-top:10px;
}

.noComments h2{
	color:#005365;
	font-weight: bold;
	font-size: 16px;
}

.blog #primary {
	margin-top:20px;
}

.blog #secondary {
	margin-top: 20px;
	margin-right: 6.6%;
    width: 19.8%;    
}

.blog #secondary h3.widget-title, .single-post h3.widget-title {
	font-size:16px;
	line-height:1.6em;
	border-bottom:medium solid #b9cee2;
	margin-bottom:5px;
}

/*--------------Mobile Device Design------------------*/


/*for tablets*/

@media only screen and (device-width: 768px){
	#page {
		max-width:700px;
	}
	
	input#s{
		/*margin-right:8px;*/
		display: none;
	}
	
	#site-description{
		bottom:10px;
		left:310px;
	}
	
	
	#headerIcons{
		 /*removes socialmedia icons*/
		display: none;
	}
	
	
	#access, #access a:hover{
		height:24px;
	}
	
	
	#access .current-menu-item > a, #access .current-menu-ancestor > a, #access li.current_page_item a, #access .current_page_ancestor a, #access li:hover >a, #access a:focus{
		height:24px;
	}
	
	
	#access a{
		font-size: 12px;
	}
	
	#access ul ul li {
		display:none;
	}
	

	h2{
		border-bottom: thin dotted #B9CEE2;
	}
	
	p{
		font-size: 12px;
	}
	
	/*Home*/
	
	.Homewrap{
		height:240px;
		width:100%;
		box-shadow:none;
		-webkit-box-shadow: none;
		border:#B9CEE2 thin solid;
	}
	
	.sliderRight{
		display: none;
	}
	
	.sliderTablet{
		display: block;
		float:left;
	}
	
	.highlights{
	width:235px;
	height:210px;
	}
	
	.highlights ul li{
		font-size:10px;
	}
	
	ul.removeList li{
		display:none; /*removes Reseach Tools list so everything fits in the highlights box*/
	}

	
	#test_widget, #splash-two{
		float:none;
		width:93%;
		margin:auto;
	}
	
	/*footer area*/
	
	#site-generator{
		display: block;
		background:#FFFFFF;
		border-top:none;
		padding:1.2em;
	}
	
	#site-generator a {
		display:none;
	}
	
	#colophon #supplementary .widget-area{
		float:left;
		width:33.33%;
	}

	#colophon #supplementary .widget-area img{
		display: none;
	}	
	
	#widgetWrapper{
		margin:0 2em;
	}
    
	/*about area*/
	
	#about1, #about2, #about3{
		width:193px;
		height:50px;
		float:left;
		margin-bottom:2em;
		padding:0;
		border:none;
	}
	

	#about1 img, #about2 img, #about3 img{
		display:none;
	}
	
	/*experience page*/
	
	.bowenBlueBox{
		padding:.5em;
		font-size: 10px;
		width:50%;
	}
	
	.clients{
		font-size:10px;
	}
	
	/*employee page*/
	
	.employeeWrap {
		clear:both;
	}
	
	 img.employeePicture {
	 	float:left;
		-webkit-box-shadow: none;
		box-shadow:none;
		-moz-box-shadow:none;
		border:#cccccc thin solid;
		border-radius: 2px;
		padding:0;
		
	}
	
	.ipadEmployee {
		margin-right:50px;
	}
	
	.employeePicture h1 {
		clear:both;
		float:none;
		margin:auto;
		padding:5%;
		margin-bottom:20%;
		width:100%;
		
	}
	
	
	div.employee {
		padding:1em;
		width:50%;
		font-size:12px;
		float:right;
	}
	
	/*Approach*/
	
	img.shrink {
		width:50%;
		height:25%;
		/*margin-bottom:60%;*/
	}
	
	/*experience*/
	
	div.bowenBlue{
		font-size: 11px;
		padding-bottom: 0.5em;
	}
	
	.dottedLine{
		margin-bottom: 0;
		height:10px;
		
	}

	
	/*Clients*/
	img.shrink2{
		width:50%;
		height:30%;
	}
	/*contact page*/
	
	iframe{
		width:275px;
		height:275px;
	}
	
	#contact1, #contact2{
		width:40%;
	}

	
	#contact1{
		margin-left:25px;
	}
	#contact2{
		margin-left:55px;
	}
	
	small {
		font-size: 13px;
	}
}

/*for iphone*/
@media (max-width: 650px) {

	body{
		width:auto;
		position:relative;
		overflow-x: hidden;
	}
		
	#page{
		margin-left:auto;
		margin-right:auto;
		width:100%;
		overflow-x: hidden;
	}
	
	p{text-align: left;}
	
	#branding img{
		margin-bottom:10px;	}
	
	#site-description{
		display: none;
	}
	
	#headerIcons, div#search{
		display:none;
	}
	
	#access div{
		margin:0;
	}
	
	#access a.responsive-menu{
		padding:0;
	}
	
	#responsive-menu-icon{
		display: inline-block;
	    font-size: 18px;
	    font-weight: bold;
	    height: 31px;
	    padding-top: 5px;
	}
	
	
	/*might need to change*/
	 nav ul, nav:active ul {
	 	display: none;
		background-color: /*#005365*/ #b9cee2;
		top: 100px;
		width: 100%;
	 
	 }
	 
	 nav:hover ul{
		 display: block;
		 float:none;
	 }
	 
	 nav:hover ul li{
		 float:none;
	 }
	 
 	div#responsive-menu-icon:hover ul#menu-main-navigation-container li{
	 	display: block;
	}
	
	#access a {
	font-size: 11px;
	vertical-align: middle;
	width:100%;
	}
	
	#access li {
		float:none;
		height:31px;
		width:100%;
		vertical-align: middle;
		font-weight: bold;
		border-bottom:#00ab92 thin dotted;
	}
	
	#access li a{
		text-align: left;
		vertical-align: middle;
		padding-top:5px;
	}
	
	#access ul ul li {
		display:none;
	}
	
	.singular.page .hentry{
		margin-top:10px;
	}
	
	.singular .entry-title {
    font-size: 10px;
    line-height:20px;
}
	
	.singular .entry-title, .entry-content h1 {
		font-size: 20px;
		padding:0;
	}
	
	/*fixes the second paragraph on the front page*/
	p.removePadding {
		padding-left:0;
	}
	
	.Homewrap{
		display: none;
		box-shadow:none;
		height:auto;
		width:inherit;
	}
	
	.sliderRight{
		float:none;
		box-shadow: none;
	}

	.highlights{
		/*width:100%;*/
		height:auto;
		margin-left:auto;
		margin-right:auto;
		float:none;
	}
	
	h1.entry-title a{
		font-size:17px;
		margin-bottom:0px;
	}

	h3 a, a.matchH3 {
		font-size: 12px;
	}
	
	/*home page widget area*/
	#test_widget, #splash-two{
		float:none;
		width:100%;
	}
	
	
	.textwidget img{
		height: 50px;
		width:50px;
	}
	
	#first {
		margin-right:0;
	}
	
	#text-7 img{
		display:none;
	}
	
	
	/*News Feed*/
	
	.newsFeed{
		width:90%;
	}
	
	.newsFeed section.recent-posts{
		margin-left:0;
		padding-bottom: 1em;
		border-bottom: #B9CEE2 medium dotted;

	}
	
	.newsFeed section.recent-posts .featured .desc{
		float:none;
		margin-right:0;
		width:100%;
	}
	
	.newsFeed section.recent-posts article.featured div.desc h2{
		min-height:0;
	}

	.newsFeed section.recent-posts article.featured div.desc > p a {
    display: block;
	}
	
	/*footer*/
	
		
	#colophon #supplementary .widget-area{
		float:left;
		width:50%;
	}
	
	#second{
		display: none;
	}
	
	/*about page widget area*/
	#about1, #about2, #about3, #research1, #research2, #research3{
		width:100%;
		clear:both;
		margin-left:0px;
		float:none;
		margin-bottom:2em;
		padding:0;
	}
	
	#about1 h3, #about2 h3, #about3 h3 {
		margin-bottom:0;
	}
	#about1 img, #about2 img, #about3 img{
		display:none;
	}
	
	#about1 p, #about2 p, #about3 p{
		display: none;
	}
	
	/*Research Page----shares styles with about widgets*/
	
	div.researchContainer{
		width:100%;
		display:inline-block;
		margin:1em 0;
	}
	
	/*Experience*/
	
	div.bowenBlueBox{
		width:90%;
		float:none;
	}
	
	.experienceMap{
		display: none;
		width:90%;
		float:none;
	}
	
	.shrink2{
		width:100%;
		height:25%;
	}
	
	.clients{
		float:none;
		width:100%;
		margin-left:1em;
	}
	
	div.lightBowenBlue{
		text-align: left;
	}
	
	/*employee page*/
	
	.employeeWrap {
		clear:both;
	}
	
	p.employeePicture{
		width:100%;
	}
	
	 img.employeePicture {
	 	clear:both;
	 	float:none;
		-webkit-box-shadow: none;
		box-shadow:none;
		-moz-box-shadow:none;
		border:#cccccc thin solid;
		border-radius: 2px;
		padding:0;
		margin-top:20px;
		margin-left:auto;
		margin-right:auto;
		display:block;
		
	}

	
	.employeePicture h1 {
		clear:both;
		float:none;
		padding:5%;
		margin-bottom:20%;
		width:70%;
	}
	
	
	div.employee {
		padding:1em;
		width:95%;
		font-size:12px;
		float:none;
		height:auto;
	}
	
	.leftText, .rightText{
		width:100%;
		float:none;
	}
	
	/*State Wide Surveys*/
	
	.stateWideText{
		float:none;
		width:100%;
		margin-left:none;
	}
	
	/*contact page*/
	.contact{
		width:100%;
	}
	
	#contact1, #contact2{
		width:100%;
		float:none;
	}
	
	.bowenMap{
		width:350px;
	}
	
	.bowenMap{
	display:none;
		}
}