/* JCJ 2007
SECTION 1 some basics for the page */

body{
background-color:#FFF;
color:#666;
font-family:Verdana, Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
font-size: 12px;
text-align: center;
text-decoration: none;
}

/* standards for headings - note margin valuehere will produce gaps when Headings are added */
h1, h2, h3, h4, h5, h6{
color: #003366;
padding: 0px;
margin: 20px;
background-color: transparent; /*transparent is the default background color so no real need to declare it*/ 
}

/* standard colour for all emphasized text*/
p em {
	color: #000;
	font-weight: bold;
}

p a {
text-decoration:none;
color:#333;
}
/* universal class to clear both images on a page from unrelated content */
.clearit{
clear: both;
display: block;
}

.undoclearit{
clear:none;
}

/* main wrapper for all divs and content on page - including that LOVELY ORANGE */ 
#Wrapper{
width: 770px;
background-color:#E8DE96;
margin: 10px auto;
border: 1px solid #CCC;
text-align: left;
}

/* the top page banner */
#banner{
height: 141px;
background-image:url(../images/nav/COL_St_Martin.jpg);
background-repeat: no-repeat;
border-bottom: 1px solid #FFFFFF
}

/* the nav wrapper menu bar shape basics - NOTE !! you only need to change background-color here */
#nav{
width: 770px;
border-bottom: 2px solid #5D4215;
background-color: #93674A;
height: 26px;
}

/* nav wrapper menu bar list item basics - pulled in this menu 3 implementation 
#nav ul{
padding: 0;
margin: 0;
background-color: #BCD838;
}
*/
/* orientation and padding for nav wrapper items - pulled in this menu 3 implementation 
#nav ul li{
display:inline;
margin: 0;
padding: 0;
}
*/
/* the appearance of the nav wrapper items - pulled in this menu 3 implementation 
#nav ul li a{
font-size: 90%;
color: #FFF;
background-color: #BCD838;
text-decoration: none;
padding: 0 25px 0 25px;
border-right: 1px solid #FFF;
text-align: center;
width: 9em;
}
*/
/* nav wrapper list item rollover effects and tab effects - pulled in this menu 3 implementation  
#nav ul li a:hover, #nav ul li a:focus{
background-color:#8CC71D;
}
*/
/* code for drop down menu system if want to use an image then need templated image and the following background-image: url(images/itemgradient.gif);  NOTE  - the HEX code needs 6 digits so double check it has six and is correct - the computer will underline it with red squiggly lines if it is wrong or an unacceptable colour (outside possible range)*/
#MenuBar3 li a {
	background-color: transparent;
}
#MenuBar3 a:hover, #MenuBar3 a:focus {
	background-color: #5D4215;
}
#MenuBar3 a.MenuBarItemHover, #MenuBar3 a.MenuBarItemSubmenuHover, #MenuBar3 a.MenuBarSubmenuVisible {
	background-color: #5D4215;
}
#MenuBar3 li {
	background-color: #93674A;
}

/* content basics */
#content{
margin-left: 200px;
margin-top: 50px;
background-color:#E8DE96;
}

/* text inside p tages in content wrapper */
#content p{
font-size: 80%;
margin: 20px;
}

/* header 1's inside content wrapper */
#content h1{
font-size: 105%;
}

/* header 2's inside the content wrapper */
#content h2{
font-size: 100%;
}

/* left float behaviour for images */
.leftimage{
float: left;
margin-right: 10px;
border: 1px solid #FFF;
}

/* right float behaviour for images */
.rightimage{
float: right;
margin-left: 15px;
border: 1px solid #FFF;
width: 150px;
}

/* center float behaviour for images */
.centerimage{
float: none;
margin-left: 300px;
border: 1px solid #FFF;
}
/* float behaviour for gallery images */
.galleryimage{
margin-left: 75px;
border: 1px solid #FFF;
}



/* footer wrapper div */
#footer{
border-top: 1px solid #000;
background-color: #333;
color: #FFF;
}

/* p tag text for within the footer */
#footer p{
font-size: 80%;
margin: 0;
padding: 5px;
text-decoration: none;
}
#footer p a{
color:#FFFFFF;
text-decoration:none;
}

/* left column */
#leftcol{
margin-top: 32px;
margin-left: 12px;
float:left;
width:170px;
background-color:#E8DE96;
}

#leftcol h1{
font-size:100%;
color:#333;
margin-left: 0;
}

#leftcol p{
font-size:90%;
color:#6633FF;
}

/* GALLERY CSS 
left column gallery */
#leftcolgallery{
margin-top: 20px;
margin-left: 10px;
float:left;
width:250px;
background-color:#E8DE96;
}

#leftcolgallery h1{
font-size:100%;
color:#00CC00;
}

#leftcolgallery p{
font-size:90%;
color:#6633FF;
margin: 20px;
}

/* content gallery basics */
#contentgallery{
margin-left: 200px;
margin-top: 15px;
background-color:#E8DE96;
height:750px;
}

/* text inside p tages in content wrapper */
#contentgallery p{
font-size: 80%;
margin: 20px;
}

/* header 1's inside content wrapper */
#contentgallery h1{
font-size: 105%;
}

/* FOOTER GALLERY */

/* footer wrapper div */
#footergallery{
border-top: 1px solid #E8DE96;
background-color: #E8DE96;
color: #E8DE96;
}

/* THUMBS */
img.thumbs {
    float:left;
    margin-left: 2px;
	margin-right: 2px;
	margin-bottom: 2px;
	border: solid #999 1px;
	}
	
/*make them detail images pretty */
img.detail{
	border: solid #000 5px;
}

/* contact page css */

.row {
		clear: both;
		padding-top: 5px;
		}
form {
		margin-bottom: 1em;
		width: 500px;
		padding-left: 20px;
		}
		
fieldset {
		margin-bottom: 10px;
		padding: 10px;
		border: 1px dotted #666666;
		}		
		
legend {
		padding: 0 10px;
		background: #ffffff;
		text-transform: uppercase;
		color: #666666;
		font-size: 1.0em;
		}
		
.formLabel {
		font-size: 1.2em;
		line-height: 1.6em;
		text-align: right;
		margin-right: 10px;
		width: 100px;
		float: left;
		}

.formControl {
		float: left;
		width: 326px;
		}
		
input, textarea {
		border: 1px solid #666666;
		padding: 2px;
		font: 1em Verdana, Arial, sans-serif;
		background-color:#FFFFFF;
		}	
		
input {
		font-size: 1.2em;
		width: 322px;
		}			

textarea {
		width: 472px;
		}
		
.submitButton {
		background: #eeeeee;
		font: bold 1.0em Verdana, Arial, sans-serif;
		padding: 4px 6px;
		width: auto;
		}		
		