@charset "utf-8";
body  {
	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;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 80%;
}
.twoColFixLtHdr #container { 
	width: 790px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* ----- header ----- */

.twoColFixLtHdr #headerhome {
	width: 790px;
	height: 100px;
	background-image: url(../_img/spain_costa_title.gif);
	background-repeat: no-repeat;
	background-position: 10px 10px;
	background-color:#ffffff;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}

/* --- without the background image --- */

.twoColFixLtHdr #headerblank {
	width: 790px;
	height: 100px;
	background-color:#ffffff;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}

.twoColFixLtHdr .onelineimage{
	padding-right: 60px;
	padding-top: 30px;
	float: right;	
}
.twoColFixLtHdr .twolineimage{
	padding-right: 40px;
	padding-top: 20px;
	float: right;	
}


.twoColFixLtHdr .contactdetails {
	color: #cc6666;
	float: left;
	padding-top: 70px;
	padding-left: 20px;
}
.twoColFixLtHdr .contactdetails a{
	color: #cc6666;
	text-decoration: none;
}
.twoColFixLtHdr .contactdetails a:link{
	color: #cc6666;
	font-weight: normal;
	text-decoration: none;
}

.twoColFixLtHdr .contactdetails a:hover{
	color: #99ccff;
	text-decoration: none;
}
/* ---- sidebar ---- */

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 322px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	min-height:350px;
}
.twoColFixLtHdr #mainContent {
	min-height:350px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 335px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
} 
.twoColFixLtHdr #footer a{
	color: #cc6666;
	text-decoration: none;
}
.twoColFixLtHdr #footer a:link{
	color: #cc6666;
	font-weight: normal;
	text-decoration: none;
}

.twoColFixLtHdr #footer a:hover{
	color: #99ccff;
	text-decoration: none;
}


.twoColFixLtHdr .footerline {
	background-color: #336699;
	margin: 0px;
	padding: 0px;
	height: 10px;
	width: 100%;
}

.twoColFixLtHdr #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 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
		font-style: italic;
}
.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;
}

/* ------- nav bar -------- */
.twoColFixLtHdr #navbar {
	margin: 0px;
	background-color: #cc6666;
	width: 100%;
	color: #FFFFFF;
	height:25px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	}
.twoColFixLtHdr #navbar ul {
	list-style:none;
	text-align: center;
	display:inline;
	padding-left: 260px;
}

.twoColFixLtHdr #navbar li {
	display:inline;


}
.twoColFixLtHdr #navbar a {
text-decoration:none;
color: #ffffff;     
}
.twoColFixLtHdr #navbar a:hover {
		color: #99ccff;    
}

/* ---- BACKGROUND COLOURS ---- */

.bgpaleblue {
	background-color: #a5d4f2;
}

.bgsandy {
background-color: #ffcc66;
}
.bgsandy a{
text-decoration:none;
color: #254ea2;   
}
.bgsandy a:link{
text-decoration:none;
color: #254ea2;   
}
.bgsandy a:hover{
text-decoration:none;
color: #cc6666;   
}

.bgpaleyellow {
background-color: #fff7e1;
}

/* ---- normal text colours ---- */

.textterracota {
	color: #cc6666;
}

.textdarkblue {
color: #254ea2;
}


/* ------ titles and colours ------ */

.titleterracota {
	color: #cc6666;
}

.titlepaleblue {
	color: #a5d4f2;
}

.titlesandy {
	color: #ffcc66;
}
/* ----- bits and bobs ----- */

.spacer {
	height: 20px;
	width: 100%;
}
.bold {
	font-weight: bold;
}


