@charset "utf-8";
/* CSS Document */

/*****======= REMEBER TO CHECK OTHER STYLE SHEETS AND HTML CODE FOR IE FIXES ========*****/

body  {
	font : 75%/160% Tahoma, Verdana, Arial, sans-serif; 
	background:url(_img/mainBG.jpg) repeat;
	background-color: #ffffff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
/* this will only work in IE6	*/
* html body{font-size:12px;}
/* END	*/

p, h1, h2, h3, h4, h5, h6, a, li, ul, input{
	padding:0;
	margin:0;
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/*********** Links ***********/
a{outline:none;}

a, a:link, a:active, a:visited{
	color: #103866;
	text-decoration:underline;
} 
a:hover{
	color: #d70404;
	text-decoration:none;
}

/*********** fonts ***********/

h1{
	color:#103866; 
	font-family:Arial, Helvetica, sans-serif;
	font-size:240%;
	padding-bottom:10px;
	line-height:1.2em;
	}

.red_txt{color:#CC3333;} /* keep as red for warnings */
.sml_txt{font-size:86%;}
.coloured_txt{color:#0f4097;}

/*********** Overall Styles ***********/
/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/

#container { 
	width: 950px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #103866;
	border-top:none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/*********** Header ***********/
#header {  
	/*padding: 0 10px;*/  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	/*background:url(_img/headerBG.jpg) no-repeat;*/
	margin: 0 auto;
	margin-top:10px;
	width:952px;
	height:180px;
	overflow:hidden;
} 
/* this will only work in IE6	*/
* html #header{padding: 0;}
/* END	*/

/*#header h1 {
	margin: 0;
	float:right;
	padding: 135px 30px 0 0;
}

#header img {
	padding: 10px 0;
}*/



/*********** Left Side Bar ***********/
#leftsidebar {
	float: left; 
	width: 180px; /* since this element is floated, a width must be given */
	margin: 0 30px 0 5px;
}

/* Main menu */
#navList{
	list-style:none;
}
#navList li{
	border-bottom: 1px solid #103866;
	padding:6px 0;

}
#navList a{
	color: #103866;
	font-size:14px;
	text-decoration:none; 
	padding-left:20px;
	background:url(_img/_specific/dots.gif) no-repeat;
}
#navList a:hover{
	color: #d70404;
	text-decoration:underline; 
}


/*********** Main Content ***********/
/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
#mainContent {
	width:700px;
	margin: 0px 0 10px 0; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	overflow:hidden;
} 

/* this will only work in IE6	*/
* html #mainContent{width:700px;}
/* END	*/

#mainContent h2{
	color:#103866;
	font-weight:bold;
	font-size:130%;
	margin: 15px 0 10px 0;
} 

#mainContent p{
	text-align:justify;
} 

#mainContent ul{
	margin: 0 0 0 30px;
} 

#mainContent li{
	margin: 5px 0 0 0;
} 

#leftContent{
	float:left;
	width:300px;
	padding:0;
	margin:0;
	overflow:hidden;
} 
#rightContent{
	float:right;
	width:390px;
	padding:0;
	margin:0;
	overflow:hidden;
} 

/*********** News Page ***********/	
.news #mainContent .rightSide{
	margin-left:12px;
	float:right;
	width:200px;
	border: 1px solid #007dc5;
	background-color:#f3f8fe;
	}
	
.news .rightSide #latestNews{
	padding:10px;}
	
.news .rightSide h2{
	color:#007dc5;
}
	
.news .rightSide .newsArticle {
	border-bottom: 1px dashed #666666;	
	padding: 5px 0;
}

/*********** Footer ***********/
#footer { 
	width:950px;
	background-color:#103866;
	overflow:hidden;
	font-size:120%;
	margin-top:20px;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 20px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-weight:bold;
	color:#fff;
}
#footer a {
	color:#FFFFFF;
	text-decoration:none;
}
#footer a:hover {
	color:#3096d0;
}


/* Outer Footer */
#footerOuter{
	overflow:hidden;
	width:920px;
	padding-top:0.5em;
	margin: 0 auto;
}

/* Company reg and vat info */
#companyReg{
	float:left;
	text-align:left;
	font-size:90%;
	color: #999; 
}

/* Extra code */
#extra{
	float:left;
	text-align:left;
	font-size:90%;
	color: #999; 
}


/* Creators website info */
#ourDetails{
	float:right;
	text-align:right;
	font-size:90%;
	color: #999; 
}
#ourDetails a{
	font-size:90%;
	color: #999;
	text-decoration: none; 
}
#ourDetails a:hover{
	font-size:90%;
	color: #999;
	text-decoration: underline; 
}

/*********** Forms ***********/
.contact form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  margin: 0;
  padding: 0;
  min-width: 250px;
  max-width: 390px;
  width: 370px; 
}

.contact form fieldset {
  clear: both;
  border-color: #657ea9;
  border-width: 1px;
  border-style: solid;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
}

.contact form fieldset legend {
	color:#103866;
	font-weight:bold;
	font-variant:small-caps;
	font-size:110%;
}

.contact form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 80px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

.contact form input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of label aligns textarea better in IE */
	padding:2px;
}

.contact form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

.contact textarea { overflow: auto; }

.contact form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

#directionsForm form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  margin: 0 0 1em 0;
  padding: 0;
}

#directionsForm  form fieldset {
  border: 1px solid #657ea9;
  padding: 10px; 
  margin: 0;
}

#directionsForm legend {color:#103866;}

#directionsForm form label { 
	display: block;
	float: left; 
	width: 180px; 
	padding: 0; 
	margin: 0; 
	text-align: left; 
}

.bookingProcess{
	margin-bottom:12px;
	color:#000000;
}

.slideshow img{
	display:none;
}


