//  ============================================
//  COLORS
//  ============================================

		@default-color: #9F0E23;
		@default-hover: #cc0000;
		@default-selected: #000;
		@default-alternate: #151515;

//  ============================================
//  PADDING DEFAULTS
//  ============================================

		@holder-padding: 20px 0 20px 0;
		
//  ============================================
//  FLOAT DEFAULTS
//  ============================================

		.float-l {
			float: left;
			display: inline;
		}
		.float-r {
			float: right;
			display: inline;
		}
		.float-n {
			float: none;
			display: static;
		}

//  ============================================
//  POSITION
//  ============================================

		.pos-rel {
			position: relative;
		}
		.pos-abs {
			position: absolute;
		}
		
//  ============================================
//  RADIUS
//  ============================================

		.border-radius (@radius) {
			border-radius: @radius;
			-moz-border-radius: @radius;
			-webkit-border-radius: @radius;
		}
		
//  ============================================
//  WIDTHS / HEIGHTS
//  ============================================

		@default-max-width: 960px;
		
//  ============================================
//  BODY
//  ============================================

		body {
			background: #ccc; 
		}
		
//  ============================================
//  LISTS
//  ============================================

		.horizontal {
			li {
				.float-l;
				margin-right: 10px;
				margin-bottom: 5px;
			}
			p {
				.float-l;
				margin-right: 10px;
			}
		}
		
		.bulletless {
			list-style: none;
			li {
				list-style: none;
				margin-left: 0;
			}	
		}
		
		.icon li, p.icon {
			padding-left: 34px;
			line-height: 24px;
		}
		
//  ============================================
//  ICONS
//  ============================================


		
//  ============================================
//  FORMS
//  ============================================
		
		.form-element {
			margin-bottom: 10px;
		}
		
		.error {
			p {
				font-size: 11px;
				color: #DA2529;
				margin-bottom: 0;
			}
		}
		
		.form-button {
			padding-left: 50px;
		}
		
		.label-holder {
			.float-l;
			padding-right: 10px;
		}
				
		.input-holder {
			.float-l;
			color: #151515;
			font-size: 12px;
			line-height: 20px;
			padding-right: 10px;
			&.fixed {
				padding-top: 7px;
				padding-bottom: 7px;
				p {
					margin-bottom: 0;
				}
			}
			&.short {
				width:160px;
				input {
					width: 148px;
					&.button {
						width: auto;
					}
				}
			}
			&.tiny {
				width: 120px;
				input {
					width: 108px;
					&.button {
						width: auto;
					}
				}
			}
		}
		
		label {
			line-height: 32px;
			height: 32px;
		}
		
		input, textarea {
			border: none;
			border: 0;
			border: 1px solid #ddd;
			padding-left: 5px;
			padding-right: 5px;
			margin-right:0;
			font-size: 13px;
			.border-radius(5px);			
		}
		
		input {
			height: 28px;
		}
		
		.button {
			padding: 0 20px;
			margin: 0;
			height: 32px;
			color: #fff;
			background: @default-color;
			border-color: @default-color;
			font-weight: normal;
			cursor: pointer;
			width: auto;
			font-size: 13px;
			line-height: 16px;
			.border-radius(5px);
			-webkit-transition-property: color, border, background-color;
			-moz-transition-property: color, border, background-color;
			-o-transition-property: color, border, background-color;
			transition-property: color, border, background-color;
			-webkit-transition-duration: 250ms;
			-moz-transition-duration: 250ms;
			-o-transition-duration: 250ms;
			transition-duration: 250ms;
			-webkit-transition-timing-function: ease;
			-moz-transition-timing-function: ease;
			-o-transition-timing-function: ease;
			transition-timing-function: ease;
			&.mega {
				height: 48px;
				padding: 0 60px;
				font-weight: bold;
			}
			&.grey {
				background: #ddd;
				border-color: #ddd;
				color: #454545;
				&:hover {
					border-color: #bbb;
					background: #bbb;
					color: #151515;
				}
			}
		}
		
		.button:hover {
			background: @default-alternate;
			border-color: @default-alternate;
		}
		
		p .button {
			padding-top: 8px;
			padding-bottom: 8px;
			&:hover {
				color: #fff;
			}
		}	
		
		button {
			border: none;
		}
		
		.radio, .checkbox {
			padding: 0;
			height: auto;
			border: none;
			line-height: normal;
			margin: 0;
			margin-right: 20px;
			line-height: 30px;
			width: 30px;
		}	
		.checkbox {
			margin-right: 10px;
		}
		.file {
			border: none;
			padding: 0 !important;
		}
		.reset {
			background: none;
			color: #999;
		}
		.reset:hover {
			color: #fff;
			background: #ddd;
		}
		
		.submit {
			border: 1px solid #ddd;
			background: #e1e1e1;
		}
		.submit:hover {
			border: 1px solid #13E868;
		}
		.inp-text {
			width: 100px;
		}
		.basket-qty {
			width: 42px;
			text-align: center;
		}
		
		select {
			width: 108px;
		}
		
		textarea {
			width: auto;
			height: 180px;
			resize: none;
		}
		
		.row-input {
			margin-bottom: 5px;
		}
		.row-button {}
			.row-button ul {
				list-style: none;
				margin: 0;
			}
			.row-button ul li {
				.float-l;
				display: inline;
				list-style: none;
				margin: 0;
				font-size: 11px;
				line-height: 25px;
			}
			.row-button ul .input {
				.float-r;
			}
			.row-button ul .input + .input {
				margin-right: 10px;
			}
			.row-button ul .input .button {
				padding: 0;
			}
		
		.horizontal .error {
			padding: 0;
		}
		
		#brochure, #register, #addressBook, #contact, #login, #forgottenPassword {
			.error {
				padding-left: 250px;
			}
			.label-holder {
				width: 240px;
				text-align: right;
			}
			.input-holder {
				width: 300px;
				input {
					width: 288px;
					&.button {
						width: auto;
					}
					&.checkbox, &.radio {
						width: 30px;
					}
				}
				textarea {
					width: 288px;
				}
			}
		}
		
//  ============================================
//  TABLE
//  ============================================
		
		.table-holder, .form-holder {
			border: 1px solid #ddd;
			padding: 6px;
			margin-bottom: 20px;
			.border-radius(5px);
			table {
				margin-bottom: 0;
			}
		}
		
		table {
			th, td {
				padding: 10px;
				color: #fff;
				border: 1px solid #fff;
			}
			th {
				background: @default-color;
				font-weight: bold;
			}
			td {
				background: #e5e5e5;
				color: #454545;
				&.caption {
					background: #454545;
					color: #fff;
					font-size: 14px;
					font-weight: 700;
				}
				&.spacer {
					background: #fff;
				}
				.form-element {
					margin-bottom: 0;
					.input-holder {
						padding-right: 0;
						input {
							font-size: 11px;
							height: 22px;
							text-align: center;
						}
					}
				}
				&.qty-holder {
					padding: 6px 10px;
					input {
						width: 20px;
					}
				}
			}
			h4 {
				margin-bottom: 0;
			}
		}
				
		table + form {
			margin-top: 10px;
			.form-element {
				margin-bottom: 5px;
			}
		}
		
		table + .form-element {
			margin-top: 10px;
			margin-bottom: 5px;
		}

//  ============================================
//  BLOCKQUOTE
//  ============================================	

		blockquote {
			font-family: Georgia, Times New Roman, Times, serif;
			font-size: 15px;
			font-style: italic;
			line-height: 22px;
			color: #454545;
		}
		
		.quotee {
			font-size: 11px;
			line-height: 16px;
		}
		
		
//  ============================================
//  LINKS
//  ============================================

		a {
			color: @default-color;
			text-decoration: none;
			&:hover {
				color: @default-hover;
			}
		}
				
//  ============================================
//  OVERIDES
//  ============================================
		
		.text {
			
		}
		
		.image {
			
		}
		
		.description {
			
		}
		
		.alpha {
			margin-left: 0;
		}
		.omega { 
			margin-right: 0; 
		}
		
//  ============================================
//  HIGHLIGHT
//  ============================================

		.highlight {
			color: @default-color;
		}

//  ============================================
//  LAYOUT
//  ============================================
				
		.navigation-wrapper, .gallery-wrapper, .content-wrapper, .footer-wrapper {
			width: 100%;
			height: 30
			margin: 0;
		}
		
		.navigation-wrapper {
			background: #fff;
			.grid_16 {
				padding-top: 20px;
				padding-bottom: 20px;
			}
			.grid_8 {
				padding-top: 10px;
				padding-bottom: 10px;
				ul {
					list-style: none;
					margin-bottom: 0;
					li {
						list-style: none;
						.float-l;
						margin-bottom: 0;
						a {
							color: #999;
							&:hover {
								color: #151515;
							}
						}
					}
					&.main {
						text-transform: uppercase;
						font-size: 12px;
					}
				}
			}
		}
		
		.gallery-wrapper {
			background: #ddd;
			.nivoSlider {
				height: 290px;
			}
		}	
		
		.content-wrapper {
			background: #e8e8e8;
			.container_16 {
				padding-top: 20px;
				padding-bottom: 20px;
			}
			.image-panel {
				border-bottom: 1px solid #aaa;
				margin-bottom: 15px;
				h2 {
					font-family: Georgia, "Times New Roman", Times, serif;
					font-size: 16px;
					font-weight: normal;
					font-style: italic;
					line-height: 22px;
					color: #fff;
					.title {
						padding: 10px;
						display: block;
					}
					&.events {
						background: #999;
					}
					&.facilities {
						background: #65C6D4;
					}
					&.weddings {
						background: #D6BE6B;
						.title {
							color: #333;
						}
					}
					&.feel {
						background: #9F0E23;
					}
				}
				p {
					font-family: Georgia, "Times New Roman", Times, serif;
					font-size: 10px;
					color: #454545;
				}
			}
			.feature-panel {
				img {
					padding-top: 5px;
				}
			}
			.roundel {
				width: 160px;
				height: 160px;
				position: absolute; 
				right: 0; 
				bottom:-300px;
			}
		}
		
		#map-canvas {
			width: 940px;
			height: 290px;
		}
		
		.event {
			.image {
				width: 280px;
				img {
					border-right: 5px solid #fff;
				}
			}
			.text {
				width: 400px;
				p {
					font-size: 11px;
					&.price {
						padding-top: 5px;
						padding-bottom: 5px;
						border-top: 1px solid #454545;
						border-bottom: 1px solid #454545;
					}
					&.disclaimer {
						font-size: 10px;
						color: #999;
					}
					&.button-block {
						margin-bottom: 0;
						a {
							display: block;
							background: #454545;
							color: #fff;
							padding: 5px;
							&:hover {
								background: #cc0000;
							}
						}
					}
				}
			}
		}
		
		.event + .event {
			margin-top: 16px;
			padding-top: 16px;
			border-top: 1px dashed #454545;
		}
		
		.footer-wrapper {
			border-top: 5px solid #999;
			background: #ccc;
			.container_16 {
				padding-top: 20px;
				padding-bottom: 20px;
			}
			p, li {
				font-size: 11px;
				line-height: 140%;
				margin-bottom: 0;
				color: #656565;
			}
			ul {
				list-style: none;
				li {
					list-style: none;
					margin-left: 0;
				}
			}
			a {
				color: #333;
				&:hover {
					color: #151515;
				}
			}
		}
		
//	.navigation-wrapper, .gallery-wrapper, .content-wrapper, .footer-wrapper {
		
		.event-page {
			.navigation-wrapper {
				background: #030200;
				.grid_8 {
					li {
						color: #fff;
					}
					ul {
						li {
							a:hover {
								color: #fff;
							}
						}
					}
				}
			}
			.gallery-wrapper {
				background: #151515;
			}
			.content-wrapper {
				background: #030200;
				p, dl, hr, h1, h2, h3, h4, h5, h6, ol, ul, pre, table, address, fieldset, figure {
					color: #fff;
				}
			}
			a {
				color: @default-color;
				text-decoration: none;
				&:hover {
					color: #fff;
				}
			}
			.footer-wrapper {
				a {
					color: #333;
					&:hover {
						color: #151515;
					} 
				}
			}
		}
		
		.weddings-page {
			.navigation-wrapper {
				background: #fff;
			}
			.gallery-wrapper {
				background: #E1CF96;
			}
			.content-wrapper {
				background: #fff;
				p, dl, hr, h1, h2, h3, h4, h5, h6, ol, ul, pre, table, address, fieldset, figure {
					color: #151515;
				}
			}
			a {
				color: @default-color;
				text-decoration: none;
				&:hover {
					color: #fff;
				}
			}
		}
		
		.conference-page {
			.content-wrapper {
				.roundel {
					bottom: -200px;
				}
			}
		}
		
		
		
//  ============================================
// 	SEARCH
//  ============================================

		.search {
			p, ul {
				.float-l;
				margin-bottom: 0;
				margin-right: 10px;
			}
			p {
				line-height: 30px;
			}
			nav {
				li {
					margin-right: 10px;
					line-height: auto;
				}
				a {
					display: block;
					background: @default-color;
					color: #fff;
					padding: 7px 20px;
					.border-radius(5px);
				}
			}
		}

//  ============================================
// 	MIDDLE
//  ============================================
		
		.middle {
			h2 {
				background-color: transparent;
				background-color: rgba(255, 255, 255, 0.3);  
				filter: ~"progid:DXImageTransform.Microsoft.gradient(startColorstr=#4CFFFFFF,endColorstr=#4CFFFFFF)"; 
				zoom: 1;
				display: block;
				padding: 7px 15px;
				font-size: 17px;
				line-height: 150%;
				color: #fff;
				margin-bottom: 12px;
			}
			.product-list-main-image {
				padding: 5px;
				background: #fff;
			}
			.product-detail-main-image {
				padding: 10px;
				background: #fff;
			}
		}
		
//  ============================================
// 	BREADCRUMB
//  ============================================
		
		.breadcrumb {
			border-bottom: 1px solid #d5d5d5;
			list-style: none;
			margin-bottom: 15px;
			ul {
				margin-bottom: 10px;
			}
			li {
				.float-l;
				list-style: none;
				margin-left: 0;
				font-size: 11px;
			}
			li + li {
				padding-left: 14px;
				background: transparent url(../images/icons/breadcrumb-arrow.png) 5px 6px no-repeat;
			}
		}
		
//  ============================================
// 	PANEL
//  ============================================
		
		.panel {
			width: 140px;
			padding: 5px;
			background: #fff;
			.image {
				padding: 15px;
				background: #fff;
			}
			.text {
				background: @default-alternate;
				padding: 10px;
				text-align: center;
				color: #fff;
				font-size: 13px;
				.discription {}
				.price {}
				p {
					margin-bottom: 0;
				}	
			}
		}
		
//  ============================================
// 	PAGE
//  ============================================

		.page {
			padding-top: 30px;
			padding-bottom: 15px;
			background: #fff;
			h1 {
				margin-bottom: 15px;
				padding-bottom: 10px;
				border-bottom: 1px dotted #ddd;
				line-height: 120%;
			}
			h2 {
				background: none;
				color: #999;
				padding: 0;
			}
			h3 {
				font-size: 16px; 
				color: @default-color;
			}
			.panel {
				.float-l;
				width: 200px;
				margin-left: 15px;
				margin-right: 15px;
				padding: 4px;
				border: 1px solid #ddd;
				margin-bottom: 30px;
				&.last-row {
					margin-bottom: 15px;
				}
				.text {
					.description {
						margin-bottom: 5px;
					}
					.price {
						font-size: 15px;
						font-weight: bold;
					}
				}
				&:hover {
					border-color: #222;
				}
			}
			&.more-content {
				margin-bottom: 20px;
			}
		}
		
//  ============================================
// 	CONTENT BLOCK
//  ============================================
		
		.content-block {
			border-top: 3px solid #454545; 
			padding-top: 10px;
		}
		.grid_4 {
			.content-block {
				textarea {
					width: 278px;
					height: 120px;
				}
				input {
					width: 120px;
				}
				.button {
					width:auto;
				}
			}
		}
		
//  ============================================
// 	FEATURED
//  ============================================
		
		.featured {
			margin-bottom: 20px;
			.panel {
				.float-l;
				margin-left: 6px;
				margin-right: 6px;
				.text {
					.description {
						font-size: 11px;
						margin-bottom: 5px;
					}
					.price {
						font-size: 13px;
						font-weight: bold;
					}
				}
			}
		}

//  ============================================
// 	TABS
//  ============================================	
		
		.tabNavigation {
			list-style: none;
			margin: 0;
			padding: 0;
			li {
				.float-l;
				display: inline;
				margin-left: 0;
				margin: 0;
				a {
					display: block;
					padding: 5px 10px;
					border: 1px solid #ccc;
					border-bottom: none;
					color: #000;
					text-decoration: none;
					-moz-border-radius-topleft: 5px;
					-moz-border-radius-topright: 5px;
					-moz-border-radius-bottomright: 0px;
					-moz-border-radius-bottomleft: 0px;
					-webkit-border-radius: 5px 5px 0px 0px;
					border-radius: 5px 5px 0px 0px;
					-moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; 
					&.selected, &:hover {
						background-color: #333;
						color: #fff;
					}
					&:focus {
						outline: 0;
					}
				}
			}
			li + li {
				margin-left: 3px;
			}
		}
 
		div.tabs > div {
			padding-top: 10px;
			border-top: 1px solid #ddd;
		}
 
		#first {
		    background-color: #f00;
		}
 
		#second {
		    background-color: #0f0;
		}
 
		#third {
		    background-color: #00f;
		}
		
		.waste {
			min-height: 1000px;
		}
		
//  ============================================
// 	ITEM LIST
//  ============================================

		.item-list {
			li {
				border: 1px solid #ddd;
				margin-bottom: 5px;
				padding: 10px;
				.text {
					.float-l;
					h3 {
						margin-bottom: 5px;
					}
					p {
						&.quotee {
							margin-bottom: 0;
						}
					}
					blockquote {
						margin-bottom: 15px;
					}
				}
				.image {
					.float-l;
					margin-right: 10px;
				}
				.image + .text {
					width: 458px;
				}
			}
		}
		
//  ============================================
// 	ASIDE
//  ============================================
		
		.aside {
			border: 1px solid #ccc;
			background: #eee;
			padding: 9px;
			h4 {
				margin-bottom: 6px;
			}
			blockquote {
				font-size: 13px;
			}
			.quotee {
				font-size: 10px;
			}
		}
		.aside + .aside {
			margin-top: 10px;
		}
		
//  ============================================
// 	BOTTOM
//  ============================================
		
		.bottom {
			h2 {
				background: #333;
				display: block;
				padding: 7px 15px;
				font-size: 17px;
			}
			h3 {
				font-size: 15px;
				line-height: 150%;
				margin-bottom: 10px;
			}
			p, li, label {
				font-size: 11px;
			}
			p {
				margin-bottom: 10px;
			}
			.social {
				p, label {
					line-height: 30px;
				}
			}
		}
		
//  ============================================
//  OVERIDES
//  ============================================	

		.alpha {
			margin-left: 0 !important;
		}
		.omega {
			margin-right: 0 !important;
		}
		.last-row {
			margin-bottom: 15px;
		}
		
//  ============================================
//  ADDTHIS
//  ============================================	
		
		.addthis-holder {
			float: right; 
			width: 242px;
		}
		
