/*  
Site Name: --- Mount Cook Tours
Site URI: ---
Description: --- 
Author: Design: Jon Martin / CSS & HTML: Pat O'Callaghan /
Version: 1.0

UPDATE INFO ---------------------------------------

Revision number: 1.0
Last updated: 11 Nov 2009
Last update made by: Pat (pat@terabyte.co.nz)

CONVENTIONS ---------------------------------------

hyphenate class / id names - #my-id-name, .my-class-name
class / id names to start with lower case letter (ID's reserved for .net use will start with Upper case letter)

CONTENTS ------------------------------------------

*01: Reset
*02: Util classes & Phrase Elements
*03: Default Styles (Typography, colour)
*04: Structure (layout, size, positioning)
*05: Common Containers & Subclasses
*06: Forms
*07: Custom Containers & Subclasses

*/

/* *01: Reset -----------------------------------------------------------------------------------------------------------------*/

body {color:#000;background:#FFF;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
img{display:block;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
li {list-style:none;}
caption,th {text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q:before,q:after{content:"'";}
abbr,acronym {border:0;font-variant:normal;}
sup,sub {line-height:-1px;vertical-align: text-top;}
sub {vertical-align:text-bottom;}
input, textarea, select{font-family:inherit;font-size:inherit;font-weight:inherit;}

/* *02: Util Classes ----------------------------------------------------------------------------------------------------------*/

.center 				{ text-align: center; }
.right 					{ text-align: right !important; }
.left 					{ text-align: left !important; }
.small 					{ font-size: 9px !important;}
#ie6 .small, #ie7 .small{ font-size: 10px !important;}
.float-right 			{ float: right; }
.float-left 			{ float: left;}
.clear 					{ clear: both; }
.uppercase 				{ text-transform: uppercase; }
.nowrap 				{ white-space: nowrap; }
.offscreen				{ position: absolute; left: -9999px; top: -9999px; overflow: hidden}
.hidden					{ display: none; }
.self-clear 			{ zoom: 1; }
.self-clear:after 		{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.no-right-margin		{ margin-right: 0 !important; }
.no-left-margin			{ margin-left: 0 !important; }
.no-top-margin			{ margin-top: 0 !important; }
.no-bottom-margin		{ margin-bottom: 0 !important; }
.hot					{ cursor:pointer; }
.show					{ display: block; }
.hide					{ display: none; }

/* *02a: Phrase Elements -------------------- */
strong, .bold 			{ font-weight: bold !important; /*letter-spacing:1px;*/ }
em, .italic				{ font-style: italic; }
code					{ font-family: Courier, serif; color: #999; font-size: 0.5em; }
cite					{ font-style: italic; }
abbr, acronym			{ border-bottom: 1px dotted; cursor: help; }
q						{ color: #fff; }
blockquote				{ color: #fff; font-size: 1.1em; margin: 0 0 0.5em 0; }

/* *03: Default Styles --------------------------------------------------------------------------------------------------------*/

body {
	font: 62.5%/1.6 Arial,"Lucida Sans",Verdana,sans-serif; /* set font size to 10px (a nice round number) - 1.4 line height */
	background: #e6f1f4;
	color: #000;
}

#ie6 .hover, #ie7 .hover{ behavior: url(scripts/csshover3.htc); }


h1, h2, h3, h4, h5, h6 { font-family: Arial,"Helvetica Neue",Helvetica,sans-serif; font-weight: bold; letter-spacing: 0px; margin-bottom: 0; color: #514f26; }

h1 { font-size: 3.3em; margin: 0;}
h2 { font-size: 1.8em; margin: 0 0 20px 0; }
h3 { font-size: 1.3em; margin: 10px 0 10px 0;}
h4 { font-size: 1.3em; margin: 10px 0 0 0; color: #999; }

p { font-size: 1.2em; line-height: 1.4em; margin: 0 0 20px 0; }
	p.tagline { color: #999; margin: 0; }

a { color: #5b8625; font-size: 1.2em}

a:hover, a:active { text-decoration: none; color: #101010; }

ul li {
	font-size: 1.2em;
}

ol li {
	list-style-type: decimal;
}

ul.no-markers li {
	list-style: none;
}

dl {
	font-size: 12px;
}

dt {
	float: left;
	clear: left;
	width: 150px;
	margin: 0 0 10px 0;
	color: #999;
}

dd {
	float: left;
	margin: 0 0 10px 20px;
}

blockquote {
	font-size: 14px;
	font-family: "Helvetica Neue", Helvetica;
	font-weight: bold;
	color: #999;
	padding: 30px 0 0 0;
}

.quote-src {
	text-align: right;
}

/* *04: Structure -------------------------------------------------------------------------------------------------------------*/
/*    : NOTE: only structural css here - widths, heights, floats, margins etc. any styling code to go in '05: Common Containers & Subclasses' */

#header {
	height: 598px;
	margin: auto;
	margin-left: auto;
	margin-right: auto;
}

#header #header-content {
	width: 1200px; 
	height: 598px;
	padding-top: 15px;
	position: relative;
	margin: auto;
}

#header #header-content #banner {
	margin: auto;
	height: 132px;
	width: 817px;
}

#header #header-content #tour-details{
	width: 275px;
	float: right;
	margin-right: 145px;
	margin-top: 30px;
}

#ie6 #header #header-content #tour-details{
	display:inline;
}

#header #header-content #tour-details a#located {
	position: absolute;
	left: 145px;
	bottom: -1px;
}

#main {
	height: auto;
	margin:auto;
	width: 1200px;
	background: #e6f1f4;
}

#main  #primary-content{
	background: url(../images/interface/bg/bg-main-gradient.png) repeat-y;
	margin-top: 15px;
	margin-left: 125px;
	width: 620px;
	float: left;
}

#ie6 #main  #primary-content{
	display:inline;
}

#main #primary-content #what-to-bring{
	float: left;
	width: 305px;
	padding-right: 20px;
}

#main #primary-content #safety{
	float: left;
	width: 250px;
	margin-top: 20px;
}

#main #primary-content #slideshow{
	width: 631px;
	height: 345px;
	margin-bottom: 15px;
	position: relative;
}

#main #primary-content #slideshow ul li img {
	width: 605px;
	height: 240px;
	position: absolute;
	top: 15px;
	left: 8px;
}

#main #primary-content #slideshow ul li p{
	position: absolute;
	height: 30px;
	width: 500px;
	top: 270px;
	left: 65px;
	font-size: 1.0em;
}

#main #primary-content #slideshow a.next,
#main #primary-content #slideshow a.previous{
	width: 28px;
	height: 28px;
	position: absolute;
	top: 270px;
	margin-bottom: 17px;
}

#main #primary-content #slideshow a.next{
	right: 30px;
}

#main #primary-content #slideshow a.previous{
	left: 20px;
}

#main #primary-content .main-sub-content h3{
	position: relative;
}

#main #primary-content #what-to-bring h3 {
	width: 137px;
	height: 21px;
}

#main #primary-content #safety h3 {
	width: 66px;
	height: 21px;
}

#main #primary-content #safety p a {
	font-size: 1.0em;
}

#main #secondary-content #argo h3 {
	width: 173px;
	height: 17px;
	margin-bottom: 20px;
}

#main #secondary-content #our-location {
	position: relative;
	height: 315px;
}

#main #secondary-content #our-location h3 {
	width: 125px;
	height: 17px;
}

#main  #secondary-content{
	float: right;
	width: 280px;
	margin-right: 125px;
	margin-top: 35px;
}

#ie6 #main  #secondary-content{
	display: inline;
}

#main  #secondary-content  .secondary-content-item{
	margin-bottom: 45px;
}

#main #secondary-content #our-location h3 span{
	position: absolute;
	top: -10px;
}

#main #secondary-content #our-location p{
	position: absolute;
	width: 308px;
	height: 315px;
	top: 0;
	left: -15px;
}

#main #secondary-content #our-location p span{
	position: absolute;
	top: 45px;
	left: 25px;
	width: 115px;
}

#main #secondary-content #our-location p a{
	position: absolute;
	width: 105px;
	height: 35px;
	top: 135px;
	left: 20px;
}

#main #secondary-content #our-location p a span{
	position: absolute;
	top: -15px;
}


/* Footer styles -------------*/
#footer {
	margin: auto;
	height: 121px;
}

#footer #footer-content{
	width: 1200px;
	height: 121px;
	margin: auto;
}

#ie6 #footer #footer-content #contact,
#ie6 #footer #footer-content #partner-links ul,
#ie6 #footer #footer-content #partner-links ul li {
	display:inline;
}

#footer #footer-content #contact {
	float: left;
}

#footer #footer-content #partner-links ul{
	float: right;
}

#footer #footer-content #partner-links ul li{
	float: left;
}


/* --------------------------------------------------------------------------------------------------------------------------- */
/* *05: Common Containers & Subclasses ----------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------------- */

/* ------------------------------------------ */
/* Header styles -----------------------------*/
/* ------------------------------------------ */

#header {
	background: url(../images/interface/hdg/bg-header-fade.jpg) repeat-x;
	height: 583px;
}

#header #header-content {
	background: url(../images/interface/hdg/hdg-image.jpg) no-repeat;
	height: 583px;
}

#header #header-content  #banner{
	background-position: top left;
}

#header #header-content #banner p {
	font-size: 2.0em;
	color: #514f26;
}

#header #header-content #tour-details {
	font-weight: bold;
}

#header #header-content #tour-details p#description{
	font-size: 1.4em;
	margin-bottom: 5px;
	line-height: 1.2em;
}

#header #header-content #tour-details p#departure-details{
	font-size: 1.3em;
	margin-bottom: 15px;
}

#header #header-content #tour-details  hr{
	height: 1px;
	width: 236px;
	background-color: #cccccc;
	border: 0;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 0;
}

#header #header-content  #tour-details #cost {
	margin-bottom: 25px;
}

#header #header-content  #tour-details #cost ul{
	margin-bottom: 10px;
}

#header #header-content  #tour-details #cost li{
	font-size: 1.4em;
	line-height: 1.6em;
}

#header #header-content  #tour-details #cost li.price  {
	margin-bottom: 10px;
}

#header #header-content  #tour-details #cost li.price span{
	font-size: 1.8em;
}

#header #header-content  #tour-details #cost li.conditions {
	font-size: 0.9em;
	line-height: 1.1em;
	margin-bottom: 5px;
}

#header #header-content #tour-details a#book-now{
	background-position: -307px -256px;
	width: 245px;
	height: 60px;
	display: block;
}

#header #header-content #tour-details a:hover#book-now{
	background-position: -58px -256px;
}

#header #header-content #tour-details a:hover#located{
	background-position: 0px -334px;
}

#header #header-content #tour-details #located{
	background-position: 0 -470px;
	width: 162px;
	height: 130px;
	padding: 0px;
	overflow: hidden;
}

/* ------------------------------------------ */
/* Main styles ------------------------------*/
/* ------------------------------------------ */
#main {
	background: url(../images/interface/bg/bg-main.jpg) no-repeat;
	width: 1200px;
	height: auto;
	overflow: hidden;
	padding:0px;
}

/* The sprite's original .psd file can be found at \\Storage1\contacts\Trojan\7559_4WD_1PageWebsite\4Creative\Artwork\Concept\4wd-sprite.psd */
.four-wd-img {
	background: url(../images/interface/sprite/4wd-sprite.png) no-repeat;
}

#main #primary-content #slideshow{
	background: url(../images/interface/bg/bg-main-slideshow.png) -5px 0 no-repeat;
}

#main #primary-content #slideshow p{
	font-weight: bold;
	
}

#main #primary-content #slideshow a.next {
	background-position: 0 -286px;
}

#main #primary-content #slideshow a:hover.next {
	background-position: -29px -286px;
}

#main #primary-content #slideshow a.previous {
	background-position: 0 -256px;
}

#main #primary-content #slideshow a:hover.previous {
	background-position: -29px -256px;
}

#main #primary-content .main-sub-content {
	font-weight: bold;
}

#main #primary-content p a{
	font-size: 1.0em;
}

#main #primary-content #what-to-bring  {
	border-right: thin solid #c5cec9;
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
}

#main #primary-content #what-to-bring h3 {
	background-position: -332px -216px;
}

#main #primary-content #what-to-bring ul, li {
	padding: 0;
	margin: 0;
}

#main #primary-content #what-to-bring li.camera{
	background: url(../images/interface/ico/camera.png) no-repeat;
	padding-left:50px; 
	padding-bottom:20px; 
	padding-top: 10px;
}

#main #primary-content #what-to-bring li.warm{
	background: url(../images/interface/ico/warm.png) no-repeat;
	padding-left:50px; 
	padding-bottom:20px;
	padding-top: 10px;	
}

#main #primary-content #what-to-bring li.smiles{
	background:  url(../images/interface/ico/smile.png) no-repeat;
	padding-left:50px; 
	padding-bottom:20px;
	padding-top: 10px;
}

#main #primary-content #safety h3 {
	background-position: -476px -219px;
}

#main #secondary-content #argo h3 {
	background-position: -3px -219px;
}

#main #secondary-content #our-location h3 {
	background-position: -191px -220px;
}

#main #secondary-content #our-location p {
	background: url(../images/interface/bg/bg-main-location.png) no-repeat;
}

#main #secondary-content #our-location p span{
	font-weight: bold;
	color: #514f26;
}

#main #secondary-content #our-location p a{
	background-position: -151px -160px;
}

#main #secondary-content #our-location p a:hover{
	background-position: -256px -160px;
}

#main #secondary-content #our-location p a{
	text-indent: -9999px;
	overflow: hidden;
}

/* ------------------------------------------ */
/* Footer styles ----------------------------*/
/* ------------------------------------------ */
#footer {
	background-color: #323017;
	margin: auto;
}

#footer #footer-content {
	background: url(../images/interface/bg/bg-footer.jpg) repeat-y;
	color: #fff;
	position: relative;
}

#footer #footer-content #wheel-tread {
	background-position: -559px -144px;
	width: 251px;
	height: 158px;
	position: absolute;
	top: -150px;
	right: 265px;
}

#footer #footer-content #contact {
	margin-left: 125px;
	margin-top: 20px;
}

#footer #footer-content #contact a{
	color: #fff;
	font-size: 1.0em;
}

#footer #footer-content #contact a:hover{
	color: #949389;
}

#footer #footer-content #partner-links ul {
	margin: 30px 120px 30px 30px;
}

#footer #footer-content #partner-links ul li{
	border-right: 1px solid #535141;
	height: 65px;
}

#footer #footer-content #partner-links ul li.last{
	border-right: 0;
}

#footer #footer-content #hermitage a ,
#footer #footer-content #glacier-explorers a ,
#footer #footer-content #edmund-hillary a  {
	display:block;
}

#hermitage a {
	width: 158px;
	height: 65px;
}

#glacier-explorers a {
	width: 199px;
	height: 65px;	
}

#edmund-hillary a {
	width: 167px;	
	height: 65px;
}

#hermitage {
	background-position:  -258px -394px;
	width: 158px;
}

#glacier-explorers {
	background-position: -429px -394px;
	width: 199px;	
}

#edmund-hillary {
	background-position: -620px -394px;
	width: 167px;	
}

.phone {
	font-weight: bold;
}

img#argo-image {
	width: 244px;
	height: 216px;
	margin-bottom: 20px;
}

/* *06: Forms -----------------------------------------------------------------------------------------------------------------*/


/* *07: Custom Containers & Subclasses ----------------------------------------------------------------------------------------*/



