/* CSS For Storage Estates */

* {
	margin: 0;
	padding: 0;
}

a img {
	border: none;
}

body {
	text-align: center;
	background: url(images/bg_01.jpg) top left repeat;
	font-family: Arial, Helvetica, Geneva, sans-serif;
}

#container {
	width: 800px;
	margin: 0 auto;
	text-align: left;
}

#wrapper {
	width: 749px;
	margin-left: 11px;
	background-color: #fff;
	border-right: 1px solid #9b9c9c;
	border-left: 1px solid #9b9c9c;
	padding: 0 8px;
	border-bottom: 1px solid #9b9c9c;
}

#header {
	padding: 5px 0 2px;
}

#header h1 {
	position: relative;
	float: left;
	overflow: hidden;
	width: 196px;
	height: 54px;
	margin-top: 13px;
}

#header h1 a {
	text-decoration: none;
}

#header h1 a span {
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(images/logo.gif) no-repeat left top;
}

.nav-extras {
	float: right;
	width: 553px;
}

.nav-extras .st-condo {
	text-align: right;
	color: #2d5135;
	font-size: 13px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 2px;
}

.nav-extras .phone-no {
	text-align: right;
	color: #cdcdcd;
	font: bold 24px/1 Verdana, sans-serif;
	padding-bottom: 5px;
	padding-top: 13px;
}

/* @group Navigation */

/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

/* remove all list stylings */
.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(images/empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */






/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.menu {
	color: #fff;
	background: url(images/nav-bg.gif) repeat-x left top;
	height: 25px;
	font-size: 13px;
	_font-size: 12px;
}

.menu li {
	background: url(images/nav-arro.gif) no-repeat 7px top;
	_text-align: center;
}

.menu li li {
	_text-align: left;
}

.menu li.nav-about { _width: 90px; }
.menu li.nav-condo { _width: 125px; }
.menu li.nav-location { _width: 170px; }
.menu li.nav-faq { _width: 35px; }
.menu li.nav-contact { _width: 100px; }

.menu ul li {
	color: #fff;
	background: #ea9600;
	margin-left: 1px;
}

.menu ul {
	width: 17em;
	_width: 18em;
}

.menu li.short-sub ul {
	width: 13em;
	_width: 14em;
}


.menu a {
	text-decoration: none;
	color: #fff;
	padding: 0 1em 0 1.3em;
	border-left: 2px solid #fff;
	display: block;
	position: relative;
	line-height: 25px;
	height: 25px;
}

.menu li.on a {
	text-decoration: underline;
}

.menu li.on ul a {
	text-decoration: none;
}

.menu a:hover, .menu li:hover>a {
	color: #fff;
	text-decoration: underline;
}

.menu ul a {
	border-left: none;
}

.menu ul a {
	border-top: 2px solid #fff;
}

.menu ul a:hover {
	background-color: #ea6300;
	text-decoration: none;
}

.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
/* End Fix */

/* @end */

/* @group Content-home */

#main {
	background: url(images/content-sep.gif) no-repeat right bottom;
	padding-bottom: 15px;
	margin-bottom: 7px;
}

.flash-banner {
	width: 466px;
	float: left;
	height: 236px;
	position: absolute; 
	z-index: 2;
}

.explain {
	float: right;
	width: 260px;
	padding-top: 20px;
	min-height: 216px;
	height:auto;
	padding-right: 10px;
}
/* for Internet Explorer */
/*\*/
* html .explain {
	height: 216px;
}
/**/

.explain .heading {
	background: url(images/explain-head.jpg) no-repeat left top;
	padding-left: 80px;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	padding-bottom: 10px;
}

.heading h2 {
	color: #4fa5c1;
	font-size: 20px;
	line-height: 1;
	font-weight: normal;
}

.heading h3 {
	color: #5f991a;
	line-height: 1;
	font-size: 13px;
	font-weight: normal;
	padding-top: 2px;
}

.explain p {
	line-height: 1.4;
	font-size: 12px;
	color: #5d5d5d;
}

a {
	color: #2d5135;
}

a.more-link {
	color: #2d5135;
	text-transform: uppercase;
	text-decoration: none;
	padding-right: 10px;
	background: url(images/arro.gif) no-repeat right center;
}

a:hover {
	text-decoration: underline;
}

#more {
	padding-bottom: 10px;
}

.side-flash {
	float: left;
	width: 224px;
}

.welcome {
	float: left;
	margin-left: 20px;
	width: 300px;
	padding-top: 10px;
	padding-right: 10px;
}

.welcome h2 {
	color: #4fa5c1;
	font: 20px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.welcome h3 {
	color: #5f991a;
	font: 13px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.welcome p {
	padding-top: 15px;
	color: #5d5d5d;
	line-height: 1.4;
	font-size: 12px;
}

.questions {
	width: 175px;
	float: right;
	margin-right: 0px;
}

/* @end */

/* @group Content-sub */

#content {
	padding-bottom: 20px;
}

.top-banner {
	height: 154px;
	background: url(images/top-banner.jpg) no-repeat left top;
	margin-top: 1px;
}

.redcar {
	background: url(images/top-banner-redcar.jpg) no-repeat left top;
}

.construction {
	background: url(images/top-banner-construction.jpg) no-repeat left top;
}

.boat {
	background: url(images/top-banner-boat.jpg) no-repeat left top;
}

.rv {
	background: url(images/top-banner-rv.jpg) no-repeat left top;
}


.top-banner h2 {
	float: left;
	width: 250px;
	color: #fff;
	padding: 20px 0 0 40px;
	font: 26px/1 "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.top-banner h2 span {
	color: #f0b310;
}

.top-banner p {
	float: right;
	width: 150px;
	padding: 25px 25px 0 0;
	color: #fff;
	font-size: 13px;
}

.top-banner p a {
	color: #f0b130;
	text-decoration: none;
}

.sidebar {
	width: 180px;
	padding-left: 20px;
	float: left;
}

.options-wrp {
	width: 171px;
	background: url(images/options-bg-bottom.gif) no-repeat left bottom;
	margin-bottom: 30px;
}

.options {
	list-style-type: none;
	text-align: center;
	background: url(images/options-bg-top.gif) no-repeat left top;
	padding: 15px 20px;
	font-size: 13px;
	text-transform: uppercase;
}

.options li {
	padding: 5px 0;
	border-top: 2px solid #a86c02;
}

.options li:first-child {
	border: none;
}

.options li a {
	text-decoration: none;
	color: #a86c02;
}

.options li a:hover {
	color: #fff;
	text-decoration: underline;
}

.section {
	float: left;
	width: 400px;
	padding-left: 20px;
	padding-top: 30px;
}

h2.section-head {
	width: 240px;
	font: 22px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	color: #4fa5c1;
	text-align: left;
}

h3.section-tag {
	font: 14px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	color: #5f991a;
	text-align: left;
}

.section p {
	font-size: 13px;
	padding-top: 15px;
	color: #5d5d5d;
	text-align: left;
}

.section ul {
	font-size: 13px;
	margin-left: 20px;
	color: #5d5d5d;
	text-align: left;
}

.section li {
	font-size: 13px;
	color: #5d5d5d;
	text-align: left;
}

.section h4 { 
	margin: 0px;
	margin-top: 20px; 
	font-size: 12px;
	
}

.tablestyle {
	font-size: 13px;
	padding-top: 15px;
	color: #5d5d5d;
	background-color: #FFFFFF;
}

.tablehead {
	background: #EA9600;
	padding: 5px;
	color: #FFFFFF;
	font-weight: bold;
}

.tableleft {
	text-align: left;
	padding: 5px;
}

.tableright {
	text-align: right;
	padding: 5px;
}

.tableownership {
	background-color: #CC3300;
	color: #FFFFFF;
}

.tableyellow {
	background-color: #FFFF00;
	color: #000000;
	font-weight: bold;
}

.tablescream {
	color: #333333;
	font-weight: bold;
	font-style:italic;
	padding: 5px;
	text-align:center;
	font-size:20px;
}



/* @end */

/* @group Footer */

#footer {
	width: 749px;
	background: url(images/foot-bg.gif) no-repeat left top;
	color: #fff;
	line-height: 33px;
}

.copy-note a{
	color: #fff;
	text-decoration: none;
}

.copy-note {
	padding-left: 10px;
	font-size: 13px;
}

.design-note a{
	color: #666666;
	text-decoration: none;
}

.design-note {
	font-size: 9px;
	text-align: right;
	padding: 0px 10px 0px 0px;
}

/* @end */







/* @group Clearer */

#header:after, #main:after, #more:after, #footer:after, #content:after, .top-banner:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

#header, #main, #more, #footer, #content, .top-banner {
	min-height: 0;
}

/* iemacclear \*/
* html #header, * html #main, * html #more, * html #footer, * html #content { height: 1%; }
/* nomac */

/* @end */
