@charset "utf-8";

/* NOTES
 * Property Order:
 *   - font-*, (other typography, line-height etc.)
 *   - color, text-*
 *   - display, float, clear, overflow, vertical-align
 *   - position, top, right, bottom, left, z-index
 *   - *-width, *-height, margin, padding
 *   - border-*
 *   - background-*
 *   - (other)
 */
 
/* CONTENT */

/* Text */

	html					{ font-size: 100%; }
	body					{ font-size: 75%; /* 12px */ font-family: Georgia, "Times New Roman", Times, serif;	  
							  color: #b5cbb5; }

/* Headers */

	h1, h2, h3, h4, h5, h6	{ font-weight: normal; color: #f7b3c1; }
	h1						{ font-size: 2.166em; /* 30px */ 
							  margin: 1em 0 0 0; }
	h2						{ font-size: 1.5em; /* 24px */
							  margin: 1em 0 0 0;
							   color: #fff; }
	h3						{ font-size: 1.125em; /* 18px */
							  margin: 1em 0 0 0; }
	h4						{ font-size: 1.0em; line-height: 1.416em;	
							  margin: 1em 0 0 0; }
	h5						{ font-size: 1.0em; line-height: 1.416em;	
							  margin: 1em 0 0 0; }
	h6						{ font-size: 1.0em; line-height: 1.416em;	
							  margin: 1em 0 0 0; }

/* Paragraphs */

	p						{ line-height: 1.416em;	
							  margin: 1em 0 0 0; }

/* Lists */

	ul, ol					{ overflow: hidden;
							  margin: 1em 0 0 0; padding-left: 30px; }
	ul ul, ul ol,
	ol ol, ol ul			{ margin-top: 0; }
	dl						{ margin: 1em 0 0 0; }

	li 						{ line-height: 1.416em; }
	dt 						{ font-weight: bold; line-height: 1.416em; }
	dd 						{ line-height: 1.416em;
							  margin-left: 30px; }

	ul						{ list-style: disc; }
	ul ul					{ list-style: circle; }
	ul ul ul				{ list-style: square; }
	ol						{ list-style: decimal; }
	ol ol					{ list-style: lower-alpha; }
	ol ol ol				{ list-style: lower-roman; }

/* Links */
	
	a						{ color: #fff; }
	a:visited				{ }
	a:focus,
	a:hover,
	a:active				{ color: #fff; }

/* Emphasised Text */

	em						{ font-style: oblique; }
	strong					{ font-weight: bold; }

/* Quotes */

	blockquote				{ font-style: oblique; text-indent: -0.4em;
							  font-size: 1.5em;
							  margin: 1em 0 0 0; }
	blockquote > *:first-child 
							{ margin-top: 0; }
	blockquote .top-child	{ margin-top: 0; }

	q						{ quotes: '\201C' '\201D' '\2018' '\2019'; }
	q:before				{ content: open-quote; }
	q:after					{ content: close-quote; }
	
	.quote					{ color: #fff; }

/* Preformatted Text & Code */

	pre, code				{ font-size: 0.875em; /* 14px */ font-family: Consolas, "Courier New", Courier, monospace;
							  line-height: 1.1428em;
							  background: #f2f2f2; }
	pre						{ margin: 1.1428em 0 0 0; padding: 10px;
							  white-space: pre-wrap; white-space: -moz-pre-wrap;
							  white-space: -pre-wrap; white-space: -o-pre-wrap;
							  word-wrap: break-word; }
	code					{ padding: 0 0.25em; }
	pre code				{ padding: 0; }

/* Abbreviations */

	abbr					{ border-bottom: 1px dotted; cursor: help; }

/* Superscript & Subscript Text */

	sup 					{ vertical-align: super; }
	sub 					{ vertical-align: sub; }

/* Deleted & Inserted Text */

	del 					{ text-decoration: line-through; }
	ins 					{ text-decoration: underline; }
	
/* Other Text Styles */

	.small 					{ font-size: 0.75em; /* 12px */ }
	.large 					{ font-size: 1.125em; /* 18px */ }
	.error 					{ color: #ff0066; }

/* Images & Objects */

	img, object				{ display: block;
							  margin: 1em 0 0 0;
							  border: 0; }

/* Tables */

	table					{ width: 100%; margin: 1em 0 0 0;
							  border-collapse: collapse; border-spacing: 0; }
	th, td 					{ line-height: 1.416em;	
							  vertical-align: top;
							  padding: 3px 0;
							  border: 0 solid #e7e7e7; }
	th						{ font-weight: bold;
							  text-align: left; }

	thead th				{ border-bottom-width: 2px; }
	tfoot th, tfoot td		{ font-weight: bold;
							  border-top-width: 2px; }
	tbody th, tbody td		{ border-bottom-width: 1px; }
	
	tbody tr:hover td		{ }

	caption					{ font-size: 0.75em; /* 12px */ font-style: oblique;
							  text-align: left;
							  margin: 0.5em 0 0 0;
							  caption-side: bottom; }
							  
	colgroup.prices			{ width: 60px; }

/* Figure */

	.figure					{ margin: 1em 0 0 0; }
	.figure > *:first-child, 
	.figure > a > *:first-child
							{ margin-top: 0; }
	.figure .top-child		{ margin-top: 0; }
	.figure .legend			{ font-size: 0.75em; /* 12px */ font-style: oblique;
							  display: block;
							  margin: 0.5em 0 0 0; }

/* Forms */

	form					{ }
	fieldset				{ margin: 0; padding: 0;
							  border: 0; }
	legend					{ display: none; }

	.form					{ margin: 1em 0 0 0; padding: 20px;
							  background: #f2f2f2; }
	.form > *:first-child 	{ margin-top: 0; }
	.form .top-child		{ margin-top: 0; }
	.form fieldset			{ margin: 1em 0 0 0; padding: 0.5em 0 0 0; }
	.form legend			{ font-weight: bold;
							  color: inherit;
							  display: block;
							  margin: 0; padding: 0; }
	.form legend span		{ }
	
	.form .control			{ overflow: hidden; margin-top: 0.5em; }
	.form .mandatory		{ }
	.form .description		{ float: left; width: 100px; }
	.form .fields			{ margin: 0 0 0 110px; }
	.form .fields p			{ font-size: 0.75em; /* 12px */
							  margin-top: 0.25em; }

	.form label				{ display: block; }
	.form .asterisk			{ float: right; font-size: 1em; color: #ccc; font-weight: normal; }

	.form .actions			{ padding: 0 0 0 110px; background: transparent; }
	.form .actions legend	{ display: none; }


	.form .field			{ }
	.form .field.part		{ display: inline-block;  }
	.form .affix			{ font-size: 12px; }

	.form .messages			{ margin-bottom: 0; }

/* Inputs */
	
	input, button, select,
	textarea				{ font-size: 1em; font-family: sans-serif;
							  text-rendering: optimizeSpeed; }
	textarea.monospaced		{ font-family: Consolas, "Courier New", Courier, monospace; }
	optgroup				{ font-style: normal; font-weight: bold; }

	input[type=text],
	input.type_text,
	input[type=password],
	input.type_password,
	textarea				{ margin: 0; padding: 2px; }
	select					{ margin: 0; padding: 2px; }
	optgroup				{ text-indent: 2px; }
	optgroup option			{ padding-left: 15px; }
	input[type=file],
	input.type_file			{ margin: 0; }

	input[type=radio], 
	input.type_radio, 
	input[type=checkbox],
	input.type_checkbox 	{ margin: 0; vertical-align: -0.15em; font-size: 0.85em; }
	
	.size_liquid			{ width: 98%; }

	input.size_xxs			{ width: 3em; }
	input.size_xs			{ width: 6em; }
	input.size_s			{ width: 12em; }
	input.size_m			{ width: 18em; }
	input.size_l			{ width: 24em; }
	input.size_xl			{ width: 30em; }
	input.size_xxl			{ width: 36em; }
	
	textarea.size_xs		{ height: 2.5em; }
	textarea.size_s			{ height: 5em; }
	textarea.size_m			{ height: 10em; }
	textarea.size_l			{ height: 20em; }
	textarea.size_xl		{ height: 40em; }
	
/* Rule */

	.rule					{ border-top: 1px solid #e7e7e7; margin: 1em 0 0 0; }
	.rule hr				{ display: none; }

/* Content */

	.c > *:first-child, 
	.c > .ba_left_wrap:first-child + *, 
	.c > .ba_right_wrap:first-child + *
							{ margin-top: 0; }
	.c .top-child			{ margin-top: 0; }

/* Text Alignment */

	.ta_center				{ text-align: center; }
	.ta_left				{ text-align: left; }
	.ta_right				{ text-align: right; }
	.ta_justify				{ text-align: justify; }

/* Block Alignment */
	
	.ba_center				{ margin-left: auto; margin-right: auto; }
	.ba_left				{ margin-left: 0; margin-right: auto; }
	.ba_right				{ margin-left: auto; margin-right: 0; }
	.ba_left_wrap			{ float: left; clear: left;
							  margin-left: 0; margin-right: 25px; margin-bottom: 0; }
	.ba_right_wrap			{ float: right; clear: right;
							  margin-left: 25px; margin-right: 0; margin-bottom: 0; }

/* Grid */

	.x						{ overflow: hidden;
							  margin: 20px 0 0 0; }
	.y						{ float: left;
							  margin: 0 0 0 20px; }
	.y:first-child, 
	.y_first-child			{ margin-left: 0; }

/* Fixed Widths */

	.fw_standard			{ width: 200px; }

/* Percentage Widths */
	
	.pw_05					{ width: 05%; }
	.pw_10					{ width: 10%; }
	.pw_15					{ width: 15%; }
	.pw_20					{ width: 20%; }
	.pw_25					{ width: 25%; }
	.pw_30					{ width: 30%; }
	.pw_35					{ width: 35%; }
	.pw_40					{ width: 40%; }
	.pw_45					{ width: 45%; }
	.pw_50					{ width: 50%; }
	.pw_55					{ width: 55%; }
	.pw_60					{ width: 60%; }
	.pw_65					{ width: 65%; }
	.pw_70					{ width: 70%; }
	.pw_75					{ width: 75%; }
	.pw_80					{ width: 80%; }
	.pw_85					{ width: 85%; }
	.pw_90					{ width: 90%; }
	.pw_95					{ width: 95%; }


/* PAGE LAYOUT */

/* Body & Wrapper */

	body					{ margin: 20px;
							  background: #638059 url(../images/layout/bg.jpg) top left; }
	#wrapper				{ width: 900px; margin: 0 auto; }

/* Header */

	#header					{ position: relative; }
	#header, #header a		{ color: #000; }
		
	#logo					{ display: inline; vertical-align: middle;
							  margin: 0; }
	#tagline				{ text-indent: -10000px;
							  height: 55px; width: 223px;
							  position: absolute; top: 0; right: 0;
							  background: url(../images/layout/tagline.alpha.png); }
	
/* Navigation */

	#nav					{ overflow: hidden;	
							  margin: 10px 0 0 0; padding: 0;
							  background: url(../images/layout/pixel.alpha.png);
							  list-style: none; }
	#nav li					{ line-height: 1em;
							  float: left;
							  margin: 0; }
	#nav li:first-child, 
	#nav li.first-child		{ margin-left: 0; }
	#nav a					{ font-size: 1.5em;
							  display: block;
							  padding: 14px 20px;
							  color: #fff; text-decoration: none;
							  text-transform: lowercase; }
	#nav a:focus, 
	#nav a:hover,
	#nav a:active, 
	#nav li.active a		{ background-color: #000; }

/* Content */

	#content				{ margin: 0; }
	#content .c				{ background: url(../images/layout/pixel.alpha.png); }

	#left					{ width: 550px; height: 375px;
							  position: relative; }
	
	.item					{ position: absolute; top: 0; left: 0;
							  width: 550px; height: 375px;
							  z-index: 0; }
	.item img				{ position: absolute; top: 0; left: 0;
							  margin: 0;
							  z-index: 1; }
	.item h1				{ font-size: 32px;
							  margin: 20px;
							  position: relative;
							  z-index: 2;
							  line-height: 41px; }
	.item h1 span			{ padding: 2px 10px;
							  background: url(../images/layout/pixel.alpha.png); }
	
	#right					{ width: 290px; padding: 20px; min-height: 335px; }

/* Strip */

	#strip					{ padding: 15px 30px; }
	#strip blockquote		{ width: 510px; margin: 0; }

	#words					{ text-indent: -10000px;
							  height: 26px;
							  clear: both;
							  background: url(../images/layout/words.alpha.png) center no-repeat; }

	.logo					{ text-indent: -10000px;
							  float: right;
							  margin: 0 0 1.2em 10px;
							  background: left;
							  overflow: hidden; }
	.logo_bali				{ width: 48px;  height: 80px;
							  background-image: url(../images/layout/bali.png); }
	.logo_bali:hover		{ background-position: right; }
	.logo_ltl				{ width: 125px;  height: 50px;
							  background-image: url(../images/layout/ltl.png); }
	.logo_ltl:hover			{ background-position: right; }
	.logo_hta				{ width: 60px;  height: 80px;
							  background-image: url(../images/layout/hta.png); }
	.logo_hta:hover			{ background-position: right; }
	.logo_apl				{ width: 54px;  height: 80px;
							  background-image: url(../images/layout/apl.png); }
	.logo_apl:hover			{ background-position: right; }
	.logo_trust				{ width: 100px;  height: 50px;
							  background-image: url(../images/layout/trustmark.png); }
	.logo_trust:hover		{ background-position: right; }

/* Gallery */

	#image img				{ margin: 0; }
	
	#thumbs	ul				{ overflow: hidden;	
							  margin: 0; padding: 0;
							  list-style: none; }
	#thumbs li				{ line-height: 1em;
							  float: left;
							  margin: 0 0 0 2px; }
	#thumbs li:first-child, 
	#thumbs li.first-child	{ margin-left: 0; }
	#thumbs a				{ display: block;
							  position: relative;
							  text-decoration: none; font-size: 0.833em;
							  width: 111px; height: 111px;
							  background: url(../images/photos/gallery_thumbs.jpg); }
	#thumbs li.slim	a		{ width: 110px; }
	#thumbs span			{ position: absolute; left: 0; bottom: 0; right: 0;
							  display: block;
							  padding: 5px 10px;
							  background: url(../images/layout/pixel.alpha.png); }
							  
	#thumbs_1 a				{ background-position: 0 0; }
	#thumbs_2 a				{ background-position: -111px 0; }
	#thumbs_3 a				{ background-position: -222px 0; }
	#thumbs_4 a				{ background-position: -333px 0; }
	#thumbs_5 a				{ background-position: -444px 0; }
	#thumbs_6 a				{ background-position: -555px 0; }
	#thumbs_7 a				{ background-position: -666px 0; }
	#thumbs_8 a				{ background-position: -777px 0; }

/* Footer */

	#footer					{ font-size: 0.833em; /* 12px */
							  margin: 10px 0 0 0; }
	#footer, #footer a		{ color: #b5cbb5; }

	#footer	p				{ margin: 0;
							  text-align: right; }

