@charset "utf-8";
/*
	Myrtle Beach Villa
	Main CSS
	http://www.myrtle-beach-villa.com/
*/
@import url("reset.css"); /* Links in the "reset" stylesheet for baseline formatting. */ 

body {
	background: #DFD;
	font-family: "Helvetica Neue", Arial, sans-serif;
}

h1 {
	margin: 18px 0 18px; /* Makes the large font-size play nice with the smaller line-height and keeps it on-grid. */
	padding: 0 0 9px 0;
	border-bottom: 1px solid #CEF;
	color: #0066FF;
	font-family: Calibri, "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
	font-size: 2.8em;
	text-align: center;
	font-style: italic;
	font-weight: normal;
}
h2 {
	font-family: Calibri, "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
	font-size: 1.8em;
}
h3 {
	font-size: 1.6em;
}
h4 {
	font-size: 1.2em;
}

table {
	margin: 0 auto 18px;
	background: #DFD;
}

blockquote cite {
	display: block;
	color: #444;
	font-size: 0.875em;
	text-align: right;
}

.alt {
	background: #EFE;
}

/* Link Styling */

a:link {
	color: #480;
}
a:visited {
	color: #480;
}
a:hover {
	color: #390;
	text-decoration: underline;
}
a:focus {
	color: #390;
}
a:active {
	color: #999;
}


div#container {
	width: 760px; /* Standard width for 1024-wide monitors: 960px. Standard width for 800-wide monitors: 760px; */
	margin: 18px auto;
	background: #FFF;
	border: 1px solid #696;
}

/* Sets up an image-based masthead. */

div#header {
	width: 229px;
	float: left;
	margin: 11px 0 0 0;
}

div#header a {
	display: block; /* Sets masthead anchor to a specific size to ensure a large target area. */
	width: 229px; height: 390px; /* Don't forget to edit when using a different size image. */
	background: url("../images/logo.jpg"); /* Drops logo into background of the div. */
	text-indent: -999em; overflow: hidden; /* Hides text from regular browsers so it doesn't cover the logo, while maintaining accessibility. */
}

/* Text-Based Tab Navigation, Based on CSS Tabs 2.0 by Joshua Kaufman, unraveled.com */

ul#tabnav { /* general settings */
	clear: both;
	text-align: left; /* set to left, right or center */
	margin: 18px 0 0; /* set margins as desired */
	font-weight: bold; /* set font as desired */
	border-bottom: 1px solid #696; /* set border COLOR as desired */
	list-style-type: none;
	padding: 36px 18px 4px 18px;
}
ul#tabnav li { /* do not change */
	display: inline;
}
ul#tabnav li a { /* settings for all tab links */
	padding: 6px 8px; /* change this property to affect the size of your tabs, optionally adding a font-size property, as well */
	border: 1px outset #696; /* set border COLOR as desired; usually matches border color specified in #tabnav */
	-webkit-border-top-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-topright: 6px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	background-color: #DFD; /* set unselected tab background color as desired */
	color: #333; /* set unselected tab link color as desired */
	margin-right: 4px; /* set additional spacing between tabs as desired */
	text-decoration: none;
	border-bottom: none;
}
body#tab1 li.tab1, body#tab2 li.tab2, body#tab3 li.tab3, body#tab4 li.tab4, body#tab5 li.tab5, body#tab6 li.tab6, body#tab7 li.tab7 { /* settings for selected tab */
	border-bottom: 1px solid #FFF; /* set border color to page background color */
	background-color: #FFF; /* set background color to match above border color */
}
body#tab1 li.tab1 a, body#tab2 li.tab2 a, body#tab3 li.tab3 a, body#tab4 li.tab4 a, body#tab5 li.tab5 a, body#tab6 li.tab6 a, body#tab7 li.tab7 a { /* settings for selected tab link */
	/*position: relative;
	top: -2px;*/
	padding: 8px 10px 7px;
	background-color: #FFF; /* set selected tab background color as desired */
	color: #000; /* set selected tab link color as desired */
	font-size: 1.2em;
}
ul#tabnav a:hover, ul#tabnav a:focus { /* settings for hover effect */
	position: relative; /* enables relative positioning such that... */
	top: 1px; /* ... this line comebined with ... */
	padding-bottom: 5px; /* ... this line produces a subtle bouncing effect when rolling over the tab strip */
	background: #FFF; /* set desired hover color */
	border: 1px solid #696;
}
body#tab1 li.tab1 a:hover, body#tab2 li.tab2 a:hover, body#tab3 li.tab3 a:hover, body#tab4 li.tab4 a:hover, body#tab5 li.tab5 a:hover, body#tab6 li.tab6 a:hover, body#tab7 li.tab7 a:hover,
body#tab1 li.tab1 a:focus, body#tab2 li.tab2 a:focus, body#tab3 li.tab3 a:focus, body#tab4 li.tab4 a:focus, body#tab5 li.tab5 a:focus, body#tab6 li.tab6 a:focus, body#tab7 li.tab7 a:focus { 
	/* prevent selected tab from exhibiting undesired hover/focus effects */
	padding-bottom: 5px;
	border-bottom: 1px solid #FFF;
}

ul#tabnav a:active {
	background: #EEE;
	border: 1px inset #696;
	border-bottom: 1px solid #696;
}

/* End of Text-Based Tabs */

/*
ul#nav {
	margin-top: 22px;
	list-style: none;
}
ul#nav li a {
	display: block;
	padding: 15px;
	font-family: Calibri, "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
	font-size: 1.8em;
	text-align: center;
}
*/

div#slideshow {
	width: 520px; height: 390px;
	float: right;
	margin: 12px 11px 0 0;
}

div#main {
	clear: both;
	padding: 9px 18px 18px 18px;
}

div#content {
	width: 506px;
	float: left;
}

#content ul li {
	margin-left: 27px;
}


div#sidebar {
	width: 164px;
	float: right;
	margin: 0 0 18px 0;
	padding: 18px 18px 0 17px;
	background: #E1F0FF;
	border: solid #39F;
	border-width: 0 0 0 1px;
}
#sidebar h2 {
	font-size: 1.8em;
	font-weight: normal;
}
#sidebar ul li {
	margin-left: 18px;
}
#sidebar blockquote {
	color: #03C;
	font-size: 1.6em;
}

/*
ul#secondary-nav {
	list-style: none;
	padding-bottom: 1px;
}
#secondary-nav a {
	display: block;
	height: 16px;
	padding: 10px 17px 9px;
	background: #E8EBF7;
	border-top: 1px solid #D6DBEF;
	font-size: 1.2em;
}
#secondary-nav a:link {
	color: #333;
}
#secondary-nav a:visited {
	color: #333;
}
#secondary-nav a:hover {
	background: #FFF;
	border-left: 8px groove #EEE;
	border-right: 8px ridge #EEE;
	color: #333;
	padding: 10px 9px 9px;
}
*/

div.videoBox {
	height: 247px;
	clear: both;
}
div.video {
	width: 352px;
	float: left;
}
div.video.another {
	margin-left: 18px;
}

#main div#foot {
	clear: both;
}

#foot p {
	margin-bottom: 0;
}

div#footer {
	clear: both;
	margin: 0 18px; padding: 9px 0;
	border-top: 1px solid #CEF;
	font-size: 1.1em;
	text-align: center;
}
