/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/
body {
	background-image:url(images/bodyBG.jpg);
	background-repeat:repeat-x;
	padding-top:20px;
	font-family:Helvetica, Arial, sans-serif;
	outline:none;
	color:#666;
}
.custom #page {
	min-height:700px;
	background:none;
	background-image:url(images/pageBG.png);
	background-repeat: no-repeat;
	background-position:top center;
	padding: 0 10px;
}

.custom #header {
	padding: 10px 5px 3px 5px ;
}

.topLogo {
	padding-left:15px;
}

.topAd {
	padding-top:13px;
}

#feature_box {
	padding:0 4px;
	border:0;
	background-color:#FFF;
	
}


.custom .headerSearchForm{
	background-color:#8F9B9E;
	padding:8px;
	width:712px;
	float:right;
	text-align:right;
	background-image:url(images/searchBG.jpg);
	background-position:top;
	background-repeat:repeat-x;
	
}
.custom #searchText {
	padding:3px 6px;
	font-family:Helvetica, Arial, sans-serif;
	font-size:12px;
	width:200px;
}
.custom #searchsubmit {
	color:#eee;
	padding:3px 8px;
	background-color:#6B7577;
	font-family:Helvetica, Arial, sans-serif;
	-moz-border-radius:4px;
	-webkit-border-radius: 4px;
	border:0;
	cursor:pointer;
	font-size:12px;
	margin-left:4px;
}

.custom .menu {
	background-image:url(images/menuBG.jpg);
	background-repeat:repeat-x;
	background-color:#35A1DF;
	background-position:bottom;
	border: none;
	border-width:0;
	border-radius: 4px;
	-moz-border-radius:4px;
	-webkit-border-radius: 4px;
	/*margin:0 3px;*/
	padding-left:8px;
	
}
.custom .menu li {
	padding:6px 4px;
	border: none;
}
.custom .menu a  {
	background:none;
	text-transform:none;
	font-weight:bold;
	letter-spacing:normal;
	font-size:13px;
	border: none;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	padding: 4px 8px;
	margin:0 2px;
	font-family:Arial, Helvetica, sans-serif;
	color:#C6E5F6;
	text-shadow:0px 1px 2px rgba(0,0,0, 0.3);
}
.custom .menu a:hover  {
	color:#FFF;
	background-color:#1675AD;
	border:none;
}
.custom .menu .current a, .custom .menu .current-parent a, .custom .menu .current-parent a:hover {
	background-color:#005383;
	color:#FFF;
	border:none;
}

.custom .menu ul, .custom .menu li {
	width: auto;
}
.custom .submenu {
	background-color:#0B8DD8;
	-moz-border-radius-bottomleft: 4px;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	padding: 0 4px;
	margin-left:3px;
	margin-top:3px;
	border:none;
	-moz-box-shadow:0px 5px 5px rgba(0,0,0, 0.45);
}

.custom .menu .current-parent .submenu a {
	background:none;
	color:#C6E5F6;
}

.custom .menu .current-parent .submenu a:hover {
	color:#FFF;
	background-color:#1675AD;
}


.custom #content_box {
	margin: 0;
}

.custom #content{
	width:680px;
}

.custom #sidebars {
	width:250px;
}



/*text overrides*/
.custom .headline_area{
	padding: 10px 20px 40px 20px;
	background-image:url(images/titleBG.png);
	background-position:bottom right;
	background-repeat:no-repeat;
	margin-left:-15px;
	
}
.custom .headline_area h1 {
	color:#7C898C;
	font-size:2.4em;
	text-shadow:1px 1px 5px rgba(0,0,0,0.15);
}

.custom .format_text {
	padding-left:20px;
	font-size:1.3em;
	line-height:1.471em;
}
.custom .format_text h2 {
	color:#576365;
}


/*overrides for homepage*/
#homepageFeature {
	text-align:center;
	margin-top:10px;
	margin-left: -4px;
}
#homepageFeature img {
	border:0;
}
.custom.home #content {
	width:100%;
	background-color:#9F6;
	display:none;
}

.boatingHomepageItem {
	float:left;
	text-align:center;
	width:25%;
	padding-top:15px;
}




/*breadcrumb*/
.custom .breadcrumb {
	margin-left:10px;
	padding:16px 0px 9px 0;
	border-bottom: 1px solid #eee;
	font-size:12px;
	font-weight:bold;
	color:#289BDD;
}
.custom .breadcrumb a {
	color:#999;
	font-weight:normal;
	text-decoration:underline;
}
.custom .breadcrumb span {
	color:#999;
}




/*sub menu*/

.custom .simple-section-nav {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color:#0E689A;
	padding: 10px 0 15px 0;
}

.custom .simple-section-nav h3 a {
	background-image: url(images/submenuHeaderBG.jpg);
	background-position:bottom;
	background-repeat: repeat-x;
	padding:7px 5px 10px 20px;
	text-decoration:none;
	font-size:14px;
	font-weight: bold;
	color:#fff;
	/*color:rgba(255,255,255, 1);*/
	text-shadow:0px 1px 2px rgba(0,0,0, 0.3);
	text-transform:none;
	font-variant:normal;
	letter-spacing:normal;
	border-bottom:1px solid #7CC2EA;
	margin: 0 0 15px 0;
}

.custom .simple-section-nav li {
	margin:0;
}
.custom .simple-section-nav a {
	display:block;
	padding:7px 5px 7px 30px;
	margin:0 10px;
	text-decoration:none;
	font-size:13px;
	font-weight: bold;
	color:#C6E5F6;
	text-shadow:0px 1px 2px rgba(0,0,0, 0.3);
}
.custom .simple-section-nav a:hover {
	color:#fff;
	color:rgba(255,255,255, 1);
}
.custom .simple-section-nav .current_page_item a {
	color:#FFF;
	text-shadow:0px 1px 2px rgba(0,0,0, 0.5);
	background-image: url(images/submenuIndicator.png);
	background-position:10px center;
	background-repeat:no-repeat;
	background-color:#FCA91D;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}
.custom .simple-section-nav .current_page_item a:hover {
	color:#fff;
	
}

/*sub sub menu */
.custom .simple-section-nav li.current_page_parent a{
	background-color:#1A5371;
		-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	border-bottom:1px solid #336F90;

	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;

}
.custom .simple-section-nav li ul {
	background-color:#1A5371;
	margin:0 0.75em 0 0.8em;
	padding:8px 0;
	-moz-border-radius-bottomleft: 4px;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;

}
.custom .simple-section-nav .current_page_item ul li a,  .custom .simple-section-nav li.current_page_parent ul li a {
	margin-bottom:0.692em;
	background:none;
	color:#C6E5F6;
	padding:7px 5px 7px 30px;
	border-bottom:none;
}
.custom .simple-section-nav li.current_page_parent ul li.current_page_item a {
	color:#FFF;
	text-shadow:0px 1px 2px rgba(0,0,0, 0.5);
	background-image: url(images/submenuIndicator.png);
	background-position:10px center;
	background-repeat:no-repeat;
	background-color:#FCA91D;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}




/*directory */

.custom.directory .resultitle{
font-size:15px;
font-weight:bold;
display:none;
}
.custom.directory .sp_company{
font-size:1.1em;
font-weight:bold;
color:#333;
margin:3px 0px;
}
.custom.directory .supplier_block{
border:2px solid #ddd;
margin-bottom:15px;
padding-left:5px;
}
.custom.directory .infospan{
padding-left:10px;
font-weight:bold;
color:#666;
}
.custom.directory .spanname{
font-weight:bold;
}
.custom.directory .catul{
margin:0px;
padding:0px;
padding-left:23px;
}
.custom.directory .subcatul{
	list-style-type:lower-alpha;
}

/*end directory*/


/*custom Footer*/

#customFooter {
	background-image: url(images/footerBG.gif);
	background-repeat:repeat-x;
	padding: 30px 0 10px 0;
	text-align:center;
	font-size:10px;
	color:#76A3B0;
	background-color:#92D7F2;
	min-height:100px;
}
#customFooter a {
	color:#76A3B0;
	text-decoration:underline;
}



/*forms */

.custom  .gform_wrapper .btnJoin .top_label input.medium, .custom .gform_wrapper .btnJoin .top_label select.medium {
	font-size: 16px;
	padding: 6px;
	width: 314px;
}
.custom .btnJoin .gform_footer input {
	border:0;
	padding: 0;
	width:326px;
	height:55px;
	margin-top: -15px;
}

/*photo competition*/
#field_2_10 {
	display:none;
}

body.custom.photo-competition-entries .headline_area {
	display:none;
}
#gform_wrapper_2 {
	padding: 30px;
	background-color:#F0FFFF;
	border:1px solid #D2DFDF;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}
#field_2_4 .gfield_description {
	font-size:14px;
	color:#f00;
	font-weight:bold;
}



/*Utils*/
.custom #gallery-1 img {
	border: none;
}

.clear {
	clear:both;
	display:block;
	overflow:hidden;
	visibility:hidden;
	width:0;
	height:0
}
.clearfix:after {
	clear:both;
	content:'.';
	display:block;
	visibility:hidden;
	height:0
}
.clearfix {
	display:inline-block
}
* html .clearfix {
	height:1%
}
.clearfix {
	display:block
}