/* Import fonts */
@import url("/data/fonts/fonts.css");

/* if using font awesome */
@import url("/data/fonts/font-awesome.css");

/* Import section stylesheets */

@import url("/data/css/tweets.css");							/* twitter feed styles */
@import url("/data/css/tabs.css");								/* jquery tabbed content styles */
@import url("/data/css/weather.css"); 							/* weather feed styles */
@import url("/data/css/resizer.css"); 							/* text resizer */
@import url("/data/css/easySlides.css"); 						/* slideshow */
	
@import url("/data/layout/css/contentstyle.css");
@import url("/data/layout/css/calstyle.css");
@import url("/data/editor.css");

/* body */

/* apply a natural box layout model to all elements */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
body {
	background: #0A2A47;
	margin: 0;
	padding: 0;
	font-family: 'NewsGothicMT', Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	position: relative;
}

img {
	border:0;
}

/* main body container */
#homepage {
	position: relative;
}

/* full page bg */
.bg {
/* Set rules to fill background */
    min-height: 1019px;
    min-width: 1024px;

    /* Set up proportionate scaling */
    width: 100%;
    height: auto;

    /* Set up positioning */
    position: fixed;
    top: 0;
    left: 0;
    z-index:0;
}

/* global styles */
.alignright {
	float: right;
}

.alignleft {
	float: left;
}

.corners {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.ie8 .corners {
	behavior: url(/data/js/PIE.htc);
}

.corners-bottom {
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

.corner-BL {
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-left-radius: 10px;
}

.corner-BR {
	-webkit-border-bottom-right-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	border-bottom-right-radius: 10px;
}

.corners-top {
	-webkit-border-top-right-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	-moz-border-radius-topright: 10px;
	-moz-border-radius-topleft: 10px;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}

.corner-TL {
	-webkit-border-top-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	border-top-left-radius: 10px;
}

.corner-TR {
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topright: 10px;
	border-top-right-radius: 10px;
}

/** --------- HEADER ---------- **/
/* ----------------------------- */

#header {
	position: relative;
}

.title {
	float: left;
	display: inline;
	line-height: 90px;
	font-family: 'NovecentowideMedium', Verdana, sans-serif;
	text-transform: uppercase;
	color: white;
	font-size: 40px;
	text-shadow: 1px 1px 0 black;
}

.title a {
	color: white;
	text-decoration: none;
	
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition:all .25s ease-in-out;
}

.title span {
	font-family: 'NovecentowideLight', Verdana, sans-serif;
	text-transform: uppercase;
	color: #64A3BA;
}

.title a:hover {
	color: #B7E8FD;
}

.search {
	position: relative;
	float: right;
	line-height: 90px;
}

/** ---------- PORTALS --------- **/
/* ------------------------------ */

#portals {
	position: relative;
}

#portals ul {
	margin: 0;
	padding: 0;
	list-style: none;
	height: 44px;
	border-bottom:1px solid #327AA8;
		
	-moz-box-shadow:0 0 20px #06121F;
	-webkit-box-shadow: 0 0 20px #06121F;
	box-shadow:0 0 20px #06121F;
	
	background: #165A8D;
	background: -moz-linear-gradient(top,  #165F89 2%, #1A6F9F 52%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(2%,#165F89), color-stop(52%,#1A6F9F));
	background: -webkit-linear-gradient(top,  #165F89 2%,#1A6F9F 52%);
	background: -o-linear-gradient(top,  #165F89 2%,#1A6F9F 52%);
	background: -ms-linear-gradient(top,  #165F89 2%,#1A6F9F 52%);
	background: linear-gradient(to bottom,  #165F89 2%,#1A6F9F 52%);
	/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#165F89', endColorstr='#1A6F9F',GradientType=0 );*/
}

#portals li {
	margin: 0;
	padding: 0;
	display: inline;
	float: left;
	height: 44px;

	border-right:1px solid #0F3754;
	border-left:1px solid #327AA8;
}

#portals li.home {
	border-left: none;
	width: 85px;
}

#portals .gov {
	width: 234px;
}

#portals .comm {
	width: 135px;
}

#portals .edu {
	width: 110px;
}

#portals .safety {
	width: 155px;
}

#portals li.eco {
	border-right:none;
	width: 241px;
}

#portals li a {
	display: block;
	text-decoration: none;
	font-size: 16px;
	font-weight: normal;
	text-shadow: 1px 1px 0 black;
	font-family: 'NewsGothicMTBold', Arial;
	color: #FFFEFE;
	line-height: 44px;
	text-align: center;
	
	
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition:all .25s ease-in-out;
}

#portals li a:hover,
#portals.comm .comm a,
#portals.gov .gov a,
#portals.edu .edu a,
#portals.pub .safety a {
	background: #194369;
	color: #ffff99;
}

.ie #portals ul {
	background: #165A8D;
}

.ie #portals li.eco a {
	padding-right: 23px;
}

/** ---------- BANNERS --------- **/
/* ------------------------------ */

#banner {
	width: 960px;
	position: relative; 
	margin: 0 auto 20px auto;
}

#slideshow {
	float: left;
}

/* Internal banner */

.banner1, .banner2 {
	float: left;
	height: 120px;
	border: 2px solid white;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	
	-webkit-box-shadow: 0 0 25px #0F3754;
	-moz-box-shadow: 0 0 25px #0F3754;
	box-shadow: 0 0 25px #0F3754;
}

.banner1 {
	background: url(/images/layout/banner_internal3.jpg) no-repeat;
	width: 553px;
}

.banner2 {
	background: url(/images/layout/banner_internal4.jpg) no-repeat;
	width: 400px;
	margin-left: 7px;
}

#welcome {
	width: 265px;
	z-index: 999;
	position: absolute;
	right:0;
	
}

.welcome-title {
	padding: 8px 0 20px 0;
	background: #1A6F9F;
		
	position: absolute;
	width: 265px;
	margin: 0;
	border-top: 1px solid #4A9ECF;

	top: -15px;
	z-index: 9;
}

.welcome-content {
	background: #072139;
	
	position: absolute;
	z-index: 999;
	margin-top: 15px;
	border: 1px solid black;
	width: 265px;
}

#welcome h3 {
	text-align: center;
	font-family: 'NovecentowideLight', Verdana, sans-serif;
	font-weight: normal;
	color: white;
	font-size: 14px;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
}

#welcome ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#welcome li {
	margin: 0;
	padding: 7px 0 7px 15px;
	border-bottom: 1px solid #1A6F9F;
}

#welcome li:last-child {
	border-bottom: none;
}

#welcome a {
	display: block;
	font-family: 'NewsGothicMTBold', Arial;
	font-weight: normal;
	color: white;
	text-decoration: none;
	font-size: 17px;
	text-shadow: 1px 1px 0 black;
	padding: 3px 0 3px 40px;
	
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition:all .25s ease-in-out;
}

#welcome a span {
	font-family: 'NovecentowideLight', Verdana, sans-serif;
	font-weight: normal;
	color: white;
	font-size: 14px;
	display: block;
}

#welcome .sr {
	background: url(/images/layout/icon_sr.png) left no-repeat;
}

#welcome .resources {
	background: url(/images/layout/icon_info.png) left no-repeat;
}

#welcome .newsletter {
	background: url(/images/layout/icon_newsletter.png) left no-repeat;
}

#welcome .pay {
	background: url(/images/layout/icon_pay.png) left no-repeat;
}

#welcome .employ {
	background: url(/images/layout/icon_employment.png) left no-repeat;
}

#welcome a:hover {
	color: #ffff99;
}

/** ---------- CONTENT --------- **/
/* ------------------------------ */

#content {
	background: transparent;
	position: relative;
}

/** Sidebar **/
/** ------- **/

#sidebar {
	width: 240px;
	position: relative;
	margin-top: 15px;
	margin-left: 0;
}

/* Sidebar boxes */

.mayor, 
.contact, 
.calendar,
.nav {
	position: relative;
	width: 240px;
	z-index: 999;
	height: 515px;
	margin-bottom: 10px;
}

.contact {
	height: 215px;
}

.nav-content {
	min-height: 250px;
}

.nav { 
	min-height: 290px;
	height: auto;
}

.mayor-title, 
.contact-title, 
.calendar-title,
.nav-title {
	padding: 6px 0 20px 10px;
		
	position: absolute;
	width: 240px;
	margin: 0;

	top: -15px;
	z-index: 9;
	
	font-family: 'NovecentowideMedium', Verdana, sans-serif;
	font-weight: normal;
	font-size: 14px;
	text-transform: uppercase;
	text-shadow: 1px 1px 0 black;
}

.mayor-title, 
.calendar-title,
.nav-title {
	background: #99201f;
	background: -moz-linear-gradient(top,  #99201f 0%, #841c1c 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#99201f), color-stop(100%,#841c1c));
	background: -webkit-linear-gradient(top,  #99201f 0%,#841c1c 100%);
	background: -o-linear-gradient(top,  #99201f 0%,#841c1c 100%);
	background: -ms-linear-gradient(top,  #99201f 0%,#841c1c 100%);
	background: linear-gradient(to bottom,  #99201f 0%,#841c1c 100%);
	/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99201f', endColorstr='#841c1c',GradientType=0 );*/
	border-top: 1px solid #B8282B;
	color: #ffffcc;
}

.mayor-content, 
.contact-content, 
.calendar-content,
.nav-content {
	background: #f4f4f4;
	background: -moz-linear-gradient(top,  rgba(244,244,244,1) 0%, rgba(255,255,255,0.85) 100%); 	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(244,244,244,1)), color-stop(100%,rgba(255,255,255,0.85))); 
	background: -webkit-linear-gradient(top,  rgba(244,244,244,1) 0%,rgba(255,255,255,0.85) 100%); 
	background: -o-linear-gradient(top,  rgba(244,244,244,1) 0%,rgba(255,255,255,0.85) 100%); 
	background: -ms-linear-gradient(top,  rgba(244,244,244,1) 0%,rgba(255,255,255,0.85) 100%); 
	background: linear-gradient(to bottom,  rgba(244,244,244,1) 0%,rgba(255,255,255,0.85) 100%); 
	/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#d9ffffff',GradientType=0 ); */

	position: absolute;
	z-index: 999;
	margin-top: 15px;
	border-top:1px solid white;
	width: 240px;
	padding: 10px;
	color: #144E7A;
	font-size: 12px;
	line-height: 1.35;
}

.ie .calendar-content {
	background: white;
}

.contact-title {
	background: #1A6F9F;
	border-top: 1px solid #327AA8;
	color: white;
}
.contact-content {
	font-size: 14px;
}

.contact-content b {
	font-size: 10px;
	font-family: 'NewsGothicMTBold';
	float: left;
	width: 65px;
	text-transform: uppercase;
	padding: 1px 0 7px 0;
}

.mayor-content h2 {
	color: #08182B;
}

.mayor-content h2 span {
	font-family: 'NovecentowideLight', Verdana, sans-serif;
	font-weight: normal;
	font-size: 13px;
	display: block;
}

.mayor-content img {
	border: 1px solid white;
	box-shadow: 0 2px 4px #ccc;
}

.ie .mayor-content h2 span {
	font-family: 'NovecentowideMedium';
}

/* social media buttons */
.social {
	padding: 10px 0;
}

.socialbuttons {
	list-style: none;
	margin: 8px 0 0 0;
	padding: 0;
}

.socialbuttons li {
	width: 105px;
	float: left;
	margin: 2px;
	padding: 0 2px 0 5px;
	background: url(/images/layout/button_gray.png) bottom repeat-x;

	height: 30px;
	border: 1px solid #cccccc;
	border-top: none;
}

.socialbuttons a {
	display: block;
	line-height: 30px;
	padding: 0 0 0 30px;
	font-size: 12px;
	text-decoration: none;
	font-family: 'NewsGothicMTBold';
}

.socialbuttons li:hover {
	background: #f4f4f4;
}

.socialbuttons .fb {
	background: url(/images/layout/icon_fb.png) left no-repeat;
	color: #2F4C8A;
}

.socialbuttons .twitter {
	color: #13A7E7;
	background: url(/images/layout/icon_twitter.png) left no-repeat;
}

.socialbuttons .flickr {
	color: #FF55A6;
	background: url(/images/layout/icon_flickr.png) left no-repeat;
}

.socialbuttons .youtube {
	color: #E9474D;
	background: url(/images/layout/icon_youtube.png) left no-repeat;
}

/** Mini Calendar Box */

.calendar,
.calendar-title,
.calendar-content {
	width: 220px;
}

.calendar {
	height: 260px;
	margin-top: 15px;
}

.calendar-title {
	font-size: 16px;
}

/** Main **/
/** ---- **/

#main {
	width: 710px;
	min-height: 700px;
	position: relative;
	background: url(/images/layout/content_bg.png);
	
	border-top: 1px solid white;
	border-bottom: 1px solid #666;
}

#default #main {
	background: #f4f4f4;
	background: -moz-linear-gradient(top,  #f4f4f4 1%, #ffffff 59%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#f4f4f4), color-stop(59%,#ffffff));
	background: -webkit-linear-gradient(top,  #f4f4f4 1%,#ffffff 59%);
	background: -o-linear-gradient(top,  #f4f4f4 1%,#ffffff 59%);
	background: -ms-linear-gradient(top,  #f4f4f4 1%,#ffffff 59%);
	background: linear-gradient(to bottom,  #f4f4f4 1%,#ffffff 59%);
}

.utility {
	background: url(/images/layout/utility_bg.png);
	padding: 5px 10px;
}

.breadcrumbs {
	font-size: 12px;
	color: #666666;
	width: 500px;
	float: left;
	padding: 5px 10px;
}

.breadcrumbs a {
	color: #327AA8;
	text-decoration: none;
}

.icons {
	width: 168px;
	float: right;
}

.icons a {
	color:#64A3BB;
	text-decoration: none;
	padding: 0 4px;
	font-size: 18px;
	
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition:all .25s ease-in-out;
}

.icons .st_sharethis {
	width: 16px;
	height: 16px;
}

.addthis_toolbox.addthis_default_style {
	display: inline;
	float: right;
}

.icons a:hover {
	color: #08182B;
}

/* News feed & tabbed area */

.tab-buttons {
	margin: 10px 0;
	display: block;
	float: right;
}

/* Link buttons */

a.rss, a.button {
	display: inline-block;
	line-height: 26px;
	background: url(/images/layout/button_gray.png) bottom repeat-x;
	font-size: 12px;
	color: #666666;
	font-family: 'NewsGothicMTBold';
	padding: 0 10px;
	
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	
	border: 1px solid #cccccc;
	text-shadow: 1px 1px 0 white;
}

a.rss .icon-rss {
	color: #E96E00;
	font-size: larger;
}

a.button {
	color: #144E7A;
}

a.rss:hover, a.button:hover {
	background: #cccccc;
	color: black;
	border-bottom: 1px solid white;
	border-top: 1px solid #666;
}

.section {
	background: #ffffff;
	border-top:1px solid #f4f4f4;
	border-bottom: 1px solid #cccccc;
	margin: 10px 0;
	width: 455px;
	padding: 0 10px;
	behavior:none;
}

.section h2 {
	font-family: 'NovecentowideMedium', Verdana, sans-serif;
	text-transform: uppercase;
}

.meetings h2 {
	color: #0F3754;
}

.meetings, .links {
	float: left;
	width: 50%;
	padding: 10px;
}

.meetings {
	border-right: 1px solid #f4f4f4;
}

.meetings .button {
	float: right;
}

/** Aside **/
/** ----- **/

#aside {
	width: 220px;
	margin-left: 0;
}

.asidebuttons {
	margin: 45px 0 10px 5px;
	padding: 0;
	list-style: none;
}

.asidebuttons li {
	margin: 4px 0;
}

.asidebuttons li a {
	display: block;
	width: 207px;
	height: 45px;
	color: white;
	font-family: 'NovecentowideMedium', Verdana;
	text-transform: uppercase;
	line-height: 1.15;
	font-size: 15px;
	padding: 6px 10px 0 20px;
	text-shadow: 1px 1px 0 black;
}

.asidebuttons span {
	display: block;
	font-family: 'NewsGothicMTBold';
	font-size: 15px;
	text-transform: none;
}

.asidebuttons .stream {
	background: url(/images/layout/button_stream.png) no-repeat;
}

.asidebuttons .forms {
	background: url(/images/layout/button_forms.png) no-repeat;
}

.asidebuttons .stream:hover {
	background: #3C100C;
	color: #ffff99;
}

.asidebuttons .forms:hover {
	background: #14191F;
	color: #ffff99;
}

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

#footer {
	clear:both;
	display: block;
	line-height: 1.5;
	margin: 10px 0 0 0;
	padding: 20px 0;
	background: #11426F url(/images/layout/footer_bg.png) top repeat-x;
	color: white;
	position: relative;
}

#footer h4 a {
	color: #64A3BB;
}

#footer img {
	vertical-align: middle;
}

#footer .grid_4 ul {
	margin: 5px 0;
	list-style: none;
	padding: 0;
}

#footer .grid_4 ul li {
	padding-left: 1.5em;
}

#footer .grid_4 ul li a {
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition:all .25s ease-in-out;
	color: white;
}

#footer .icon-circle-arrow-right,
#footer .grid_4 ul li a:hover {
	color: #64A3BB;
}

.footernav {
	margin: 10px 0;
	background: #0C3053;
	padding: 10px 0;
}

.footernav .grid_12 {
	margin-left: 0;
}

.footernav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footernav ul li {
	display: inline;
	float: left;
	margin: 0;
	padding: 0 25px 0 0;
	padding-left: 0!important;
}

.footernav ul li a {
	color: #B7E8FD;
	font-family: 'NewsGothicMTBold';
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition:all .25s ease-in-out;
}

.footernav ul li a:hover {
	color: #ffffcc;
}
.footernav .grid_4, 
.footernav .grid_4 a  {
	text-align: right;
	color: white;
	color: rgba(255,255,255,.6);
	font-size: 11px;
}

.footernav .grid_4 a:hover {
	color: white;
}

.copyright {
	font-size: 11px;
	color: #64A3BB;
	padding: 10px 0;
}