﻿/*=======================================================================
	ISLAND MOANA: Base Layout
-----------------------------------------------------------------------*/
@import "../../../_default/css/layouts/Base.css";

/*=======================================================================
	GENERAL
-----------------------------------------------------------------------*/
* { margin: 0; padding: 0; }

body
{
	font: 75% Arial, Verdana, Helvetica, Sans-serif;
	color: #848484;
}

/*-- HEADINGS --*/
h1
{
	margin-bottom: 0.5em;
	padding-bottom: 0.3em;
	font: normal 1.8em Georgia, "Times New Roman", Times, Serif;
	color: #630;
	border-bottom: 1px solid #e3c8a0;
}

h2
{
	margin: 0;
	padding: 0 10px 0.2em 7px;
	font: normal 1.5em Georgia, "Times New Roman", Times, Serif;
	text-transform: uppercase;
	color: #630;
}

h3
{
	margin: 1em 0;
	font-size: 1em;
	font-weight: bold;
	font-style: normal;
	color: #630;
}

h4
{
	margin: 1em 0;
	font-size: 1em;
	font-weight: bold;
	font-style: italic;
	color: #630;
}

h5
{
	margin: 1em 0;
	font-size: 1em;
	font-weight: bold;
	font-style: normal;
	color: #1e566b;
}

h6
{
	margin: 1em 0;
	font-size: 1em;
	font-weight: bold;
	font-style: italic;
	color: #1e566b;
}


/*-- LINKS --*/
a,
a:visited
{
	overflow: hidden;
	text-decoration: underline;
	color: #148150;
}

a:hover
{
	color: #f48d0e;
	text-decoration: underline;
}

a img,
a:visited img
{
	padding: 0;
	border: none;
}



/*-- PARAGRAPHS --*/
p 
{
	margin-bottom: 1em;
	line-height: 1.2;
}

/*-- LISTS --*/
ul
{
	margin: 1em 0 1em 24px;
	list-style: disc;
}
	
	ul li
	{
		margin: 0.5em 0;
	}
	
ol
{
	margin: 1em 0 1em 24px;
}
	
	ol li
	{
		margin: 0.5em 0;
	}

	

/*-- MISC --*/
address
{
	font-size: 1em;
	font-style: normal;
}

.grid-overlay
{
	position: absolute;
	left: 32px;
	top: 0;
	display: none;
}

/*=======================================================================
	FORMS: GENERAL ELEMENTS
-----------------------------------------------------------------------*/
input.input-text,
input.input-password,
textarea
{
	padding: 4px;
	font-size: 0.917em;
	color: #787878;
	background: #fbfbfb url(../../images/layout/bg_input.jpg) 0 0 repeat-x;
	border-top: 2px solid #e3c8a0;
	border-right: 1px solid #f9f9f9;
	border-bottom: 1px solid #f9f9f9;
	border-left: 2px solid #e3c8a0;
}	
	
	/*include JS-applied classes for IE */
	input.focused,
	input.input-text:focus,
	input.input-password:focus,
	textarea.focused,
	textarea:focus
	{
		border-top-color: #9f8c70;
		border-right-color: #e9e9e9;
		border-bottom-color: #e9e9e9;
		border-left-color: #9f8c70;
	}

/* TODO: Convert these to classes instead of pseudo-selectors for IE */
input[type="radio"]
{
	margin-right: 5px;
}

input[type="checkbox"]
{
	margin-right: 3px;
}

select option
{
	font-size: 1.1em;
	padding: 2px 2px 2px 4px;
}

label.primary
{
	font-weight: bold;
}

/*-- VALIDATION ERRORS --*/
.validation-errors
{
	margin: 1em 0;
	padding: 12px;
	font-weight: bold;
	color: #f00;
	background-color: #fff1f1;
	border: 1px solid #f00;	
}

	.validation-errors ul
	{
		margin: 10px 0 0 30px;
		list-style: disc;	
	}
	
		.validation-errors ul li
		{
			margin: 0.3em 0;
			font-weight: normal;
			color: #4a4a4a;	
		}
		

/*=======================================================================
	FORMS: PAIRING LISTS
-----------------------------------------------------------------------*/
/*-- PAIRING LIST VERTICAL --*/
li.pairing-vertical label.primary
{
	margin-bottom: 0.2em;
	display: block;
}
	
		li.pairing-vertical label.primary span.required,
		li.pairing-vertical label.primary span.optional
		{
			font-size: 0.917em;
			font-weight: normal;
			font-style: italic;
		}
		
		li.pairing-vertical label.primary span.pairing-note
		{
			/*display: block;*/
			font-size: 0.917em;
			font-weight: normal;
			color: #959595;
		}
		
/*-- PAIRING LIST HORIZONTAL --*/
li.pairing-horizontal label.primary
{
	margin-right: 5px;
	float: left;
}

li.pairing-horizontal .pairing-content
{
	float: left;	
}

	li.pairing-horizontal .pairing-content select option
	{
		font-size: 1.1em;
		padding: 0 2px 0 4px;
	}

/*-- ACTION LIST --*/
div.actionlist
{
	padding-top: 1em;
	border-top: 1px dashed #e3c8a0;
}

	ul.actions li.action
	{
		margin-right: 12px;
		float: left;
	}
	
		ul.actions li.action-secondary
		{
			padding-top: 4px;
			font-size: 0.917em;
		}
		
			ul.actions li.action-secondary .button
			{
				font-size: 0.909em;
			}

/*=======================================================================
	FORMS: ADVANCED SELECTORS
-----------------------------------------------------------------------*/
ul.advanced-selector
{
	margin: 0;
	list-style: none;	
}

	ul.advanced-selector li
	{
		margin: 0 20px 14px 0;
		float: left;
	}
	* html ul.advanced-selector li { width: 1%; }
	
		ul.advanced-selector li.mod-3
		{
			/*clear: left;*/	
		}
	
		ul.advanced-selector li dl.item
		{
			padding: 6px;
			width: 166px;
			min-height: 100px;
			color: #666;
			border: 1px solid #afdeef;
		}
		* html ul.advanced-selector li dl.item { height: 100px; }
		
			ul.advanced-selector li dl.item dt.item-term
			{
				font-weight: bold;	
			}
			
				ul.advanced-selector li dl.item dd.item-definition
				{
					padding-left: 20px;	
				}
				
					ul.advanced-selector li dl.item dd.item-definition dl
					{
						margin: 0.3em 0;
					}
					
						ul.advanced-selector li dl.item dd.item-definition dt
						{
							font-weight: bold;
							display: inline;	
						}
						
						ul.advanced-selector li dl.item dd.item-definition dd
						{
							display: inline;	
						}
					
					
		/*-- HOVER --*/
		ul.advanced-selector li.hover dl.item
		{
			cursor: pointer;
			background-color: #e9f9ff;	
		}
		
			ul.advanced-selector li.hover dl.item label,
			ul.advanced-selector li.hover dl.item input.input-radio
			{
				cursor: pointer;
			}
		
		/*-- SELECTED --*/
		ul.advanced-selector li.selected dl.item
		{
			padding: 4px;
			color: #630;
			background-color: #d4eef7;
			border: 3px solid #3d8ead;
		}
		
/*======================================================================
	MESSAGES (system)
----------------------------------------------------------------------*/
.messagelist ul.messages
{
	margin: 0.5em 0;
	list-style: none;	
}

	.messagelist ul.messages li.message
	{
		margin: 0.5em 0;
		padding: 1em 44px;
		font-size: 1.167em;
		background: none;
	}

		.messagelist ul.messages li.message span
		{
			font-weight: bold;
		}

		/*-- INFORMATION --*/
		.messagelist ul.messages li.message-information
		{
			color: #032e4e;
			background: #d8e6f0 url(../../../../_global/images/icons/icon_shoppe/disco/24/comment.png) 10px center no-repeat;
			border: 3px double #fff;
		}
		/*-- AUTHENTICATION REQUIRED --*/
		.messagelist ul.messages li.message-authenticationrequired
		{
			padding: 0.6em 28px;
			font-size: 0.917em;
			color: #333;
			background: #f3f4f5 url(../../../../_global/images/icons/icon_shoppe/disco/16/locked.png) 6px center no-repeat;
			border: 1px solid #bfcbd4;
		}
		/*-- CONFIRMATION --*/
		.messagelist ul.messages li.message-confirmation
		{
			color: #333;
			background: #f1f1f1 url(../../../../_global/images/icons/icon_shoppe/disco/24/minus.png) 10px center no-repeat;
			border: 2px solid #757575;
		}
		/*-- WARNING --*/
		.messagelist ul.messages li.message-warning
		{
			color: #333;
			background: #fff0e3 url(../../../../_global/images/icons/icon_shoppe/disco/24/alert.png) 10px center no-repeat;
			border: 2px solid #f8891f;
		}
		/*-- ERROR --*/
		.messagelist ul.messages li.message-error
		{
			color: #000;
			background: #fef2f1 url(../../../../_global/images/icons/icon_shoppe/disco/24/!.png) 10px center no-repeat;
			border: 2px solid #b61a1a;
		}
		/*-- SUCCESS --*/
		.messagelist ul.messages li.message-success
		{
			color: #333;
			background: #f3ffe9 url(../../../../_global/images/icons/icon_shoppe/disco/24/check.png) 10px 10px no-repeat;
			border: 2px solid #65a63e;	
		}
		/*-- BLANK --*/
		.messagelist ul.messages li.message-blank
		{
			color: #333;
			background: #f1f1f1 10px center no-repeat;
			border: 2px solid #757575;
		}

	/*---------------------------------
		SUBMESSAGES
	---------------------------------*/
	.messagelist ul.messages ul.submessages
	{
		margin: 0 0 0 1em;
	}

		.messagelist ul.messages ul.submessages li.submessage
		{
			padding-left: 22px;
			list-style: none;
			background: none;
			background-color: transparent;
			background-position: 0 0;
			background-repeat: no-repeat;
		}

			/*-- INFORMATION --*/
			.messagelist ul.messages ul.submessages li.submessage-information
			{
				background-image: url(../../../../_global/images/icons/icon_shoppe/disco/16/comment.png);
			}
			/*-- AUTHENTICATION REQUIRED --*/
			.messagelist ul.messages ul.submessages li.submessage-authenticationrequired
			{
				background-image: url(../../../../_global/images/icons/icon_shoppe/disco/16/locked.png);
			}
			/*-- CONFIRMATION --*/
			.messagelist ul.messages ul.submessages li.submessage-confirmation
			{
				background-image: url(../../../../_global/images/icons/icon_shoppe/disco/16/minus.png);
			}
			/*-- WARNING --*/
			.messagelist ul.messages ul.submessages li.submessage-warning
			{
				background-image: url(../../../../_global/images/icons/icon_shoppe/disco/16/alert.png);
			}
			/*-- ERROR --*/
			.messagelist ul.messages ul.submessages li.submessage-error
			{
				background-image: url(../../../../_global/images/icons/icon_shoppe/disco/16/!.png);
			}
			/*-- SUCCESS --*/
			.messagelist ul.messages ul.submessages li.submessage-success
			{
				background-image: url(../../../../_global/images/icons/icon_shoppe/disco/16/check.png);
			}

/*=======================================================================
	ORDER DATA (order review, confirmation, history)
-----------------------------------------------------------------------*/
/*-- SHIPMENTS --*/
.order-data .shipments
{
	margin-top: 2em;	
}

	.order-data .shipments h4
	{
		font-weight: bold;
		color: #333;	
	}
	
	.order-data ol.shipmentlist
	{
		margin: 0;
		list-style: none;	
	}
	
		.order-data ol.shipmentlist li.shipment
		{
			margin: 0;	
		}

/*-- SINGLE SHIPMENTS --*/
.order-data .shipments h2,
.order-data .shipments h3
{
	display: none;
}
	
.order-data .shipments .info
{
	margin-bottom: 2em;	
}

	.order-data .shipments .info .address,
	.order-data .shipments .info .method,
	.order-data .shipments .info .meta
	{
		padding: 1em 20px 2em;
		width: 258px;
		min-height: 140px;
		float: left;
		position: relative;
		border-left: 1px solid #ccc;
	}
	* html .order-data .shipments .info .address,
	* html .order-data .shipments .info .method,
	* html .order-data .shipments .info .meta { height: 140px; }
	
	.order-data .shipments .info .address
	{
		border: none;	
	}
	
/*-- MULTIPLE SHIPMENTS --*/
/*.order-data .shipments-multiple ol.shipmentlist
{
	margin-bottom: 2em;	
}

	.order-data .shipments-multiple li.shipment
	{
		clear: both;
		border-bottom: 1px dotted #e2c9a1;
	}

	.order-data .shipments-multiple li.shipment-last
	{
		border-bottom: 2px solid #e3c79f;
	}

		.order-data .shipments-multiple .info
		{
			margin-right: 20px;
			width: 189px;
			float: left;	
			position: relative;
		}
		
			.order-data .shipments-multiple .info h3
			{
				margin: 0;
				padding: 0;
				position: absolute;
				left: -5px;
				top: 0;
				font-size: 50px;
				color: #e5e5e5;	
				z-index: 1;
			}
			
			.order-data .shipments-multiple .info h4
			{
				margin: 0;	
			}
			
			.order-data .shipments-multiple .info .address,
			.order-data .shipments-multiple .info .method,
			.order-data .shipments-multiple .info .meta
			{
				margin-bottom: 1em;	
				margin-left: 25px;
				position: relative;
				z-index: 2;
			}
			
			.order-data .shipments-multiple .info .address
			{
				margin-top: 10px;	
			}

		.order-data .shipments-multiple .items
		{
			width: 481px;
			float: left; 
		}	
*/
	
/*-- MULTIPLE SHIPMENTS (drop-ship styles for Island Moana ONLY) --*/
.order-data .shipments-multiple h3
{
	display: none;	
}

.order-data .shipments-multiple li.shipment .info,
.order-data .shipments-multiple li.shipment .u-miscellaneous-totalstable
{
	display: none;	
}

.order-data .shipments-multiple li.shipment .items table thead

{
	position: absolute;
	left: -9999px;	
}

.order-data .shipments-multiple li.shipment-first .info
{
	display: block;	
}

.order-data .shipments-multiple li.shipment-first .items table thead
{
	position: static;	
}

/*-- TENDERS --*/
.order-data .tenders
{
	margin-bottom: 2em;
	border-bottom: 2px solid #e3c79f;	
}

	.order-data .tenders table.base
	{
		margin-bottom: 0;	
	}

/*-- ORDER TOTALS --*/
.order-data .totals
{
	margin-bottom: 1em;	
}

	.order-data .totals h2
	{
		margin: 0;
		padding: 0 0 0.5em 0;
		width: 300px;
		float: right;
		text-align: right;
		border-bottom: 1px dotted #e3c79f;
	}

	.order-data .totals .u-miscellaneous-totalstable
	{
		clear: both;
		border: none;
	}
		
		.order-data .totals .u-miscellaneous-totalstable table
		{
			margin-top: 0;
			width: 300px;
			float: right;
		}
		
/*======================================================================
	CSS BUTTONS
----------------------------------------------------------------------*/
/*---------------------------------
	BUTTON
---------------------------------*/
.button 
{
	position: relative;
	display: block;
	float: left;
	font-size: 0.833em;
	font-weight: normal;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	cursor: pointer;
}
* html .button { padding: 4px 10px; background-color: #a3c338; }

	html>body .button * 
	{
		position: relative;
		display: block;
		font-style: normal;
		background-image: url(../../images/buttons/button.png);
		background-repeat: no-repeat;
	}

	html>body .button span
	{
		padding: 4px 14px 4px 10px;
	}

	html>body .button span span 
	{ 
		position: absolute;
		right: 0;
		top: 0;
		padding: 0;
		width: 10px;
		height: 10px;
		background-position: right top;
	}

	html>body .button span i 
	{
		position: absolute;
		right: 0;
		bottom: 0;
		width: 10px;
		height: 100%;
		background-position: right bottom;
	}

	/*-- HOVER --*/
	.button:hover,
	.button:focus
	{
		text-decoration: none;
		color: #fff;
	}

		html>body .button:hover *,
		html>body .button:focus *  
		{
			background-image: url(../../images/buttons/button-hover.png);
		}
/*---------------------------------
	BUTTON SMALL
---------------------------------*/
html>body .button.small
{
	padding: 2px 10px;
	background-color: #a3c338;
}

	html>body .button.small * 
	{
		background: none;
	}
	
	html>body .button.small span
	{
		padding: 0;
	}
	
	html>body .button.small span span,
	html>body .button.small span i
	{
		display: none;
	}
	
	html>body .button.small:hover,
	html>body .button.small:focus
	{
		background-color: #579900; 
	}
	
/*---------------------------------
	BUTTON SMALL DESTRUCTIVE
---------------------------------*/
html>body .button.small.destructive
{
	background-color: #bd8740;
}

	html>body .button.small.destructive:hover,
	html>body .button.small.destructive:focus
	{
		background-color: #9a5212;
	}
	
/*=======================================================================
	TABLES
-----------------------------------------------------------------------*/
/*-- BASE TABLE --*/
table.base
{
	margin-bottom: 1.2em;
	width: 100%;
	color: #787878;
	border-collapse: collapse;   
}
	table.base th
	{
		padding: 1em 10px;
		font-weight: bold;
		text-align: left;
		background-color: #efe8de;
	}
	
	table.base td
	{
		padding: 0.5em 10px;
		text-align: left;
		background-color: #fff;
		border-bottom: 1px solid #E3C8A0;
	}
	
		table.base td.price,
		table.base th.price
		{
			text-align: right;
		}
		
		table.base th.price
		{
			font-size: 1em;
		}
		
		table.base .actionlist
		{
			padding: 0;
			border: none;
		}
		
			table.base .column-actions .actionlist li.action
			{
				margin-top: 3px;
				padding-top: 0;
			}
	table.base tr.pager td
	{
		background-color: #efe8de;
	}
		table.base tr.pager td td
		{
			border-bottom: 0 none;
			border: 1px solid #E3C8A0;
			background-color: #fff;
		}
		table.base tr.pager td td span
		{
			font-weight: bold;
		}

/*-- GRID TABLE --*/
table.grid
{
	margin: 1.2em 0;
	width: 100%;
	border-collapse: collapse;   
	background-color: #fff;
	border: 1px solid #ccc;
}
	table.grid th
	{
		padding: 0.5em 4px;
		font-size: 1em;
		font-weight: bold;
		text-align: center;
		background-color: #f1f1f1;
		border: 1px solid #ccc;
	}
	
		table.grid th span
		{
			display: block;
			font-weight: normal;
			font-size: 0.917em;	
		}
	
	table.grid td
	{
		padding: 0.5em 4px;
		text-align: left;
		border: 1px solid #ccc;
	}
	
/*-- LINE ITEM TABLE --*/
table.lineitems td.column-product .product-image
{
	margin: 0 10px 10px 0;
	float: left;	
}

table.lineitems  td.column-product span.product-fulfillmentsystemid
{
	display: none;
}	

table.lineitems  td.column-options ul
{
	margin: 0;
	list-style: none;	
}

	table.lineitems  td.column-options ul dt
	{
		display: inline; 	
		font-weight: bold;
	}

	table.lineitems  td.column-options ul dd
	{
		display: inline; 	
	}
	
table.lineitems th.column-quantity,
table.lineitems td.column-quantity
{
	text-align: center;
}

/*======================================================================
	TABS
----------------------------------------------------------------------*/
.ui-tabs-nav
{
	position: relative;
	bottom: -1px;
	margin: 0 0 0 16px;
	list-style: none;
	zoom: 1;
}
* html .ui-tabs-nav { height: 1%; }

	.ui-tabs-nav li
	{
		margin: 0;
		padding-left: 5px;
		float: left;
	}
	
		.ui-tabs-nav li a
		{
			display: block;
			padding: 0.5em 1em;
			font-size: 1.083em;
			color: #373737;
			outline: none;
		}
			
			.ui-tabs-nav li a:hover
			{
				color: #2e5f97;
			}
	
	.ui-tabs-nav li.ui-tabs-selected
	{
		
	}
		.ui-tabs-nav li.ui-tabs-selected a
		{
			font-weight: bold;
			color: #fff;
			background-color: #1d8351;
				text-decoration: none;
		}
.ui-tabs-panel
{
	padding: 20px 30px;
	clear: both;
	background: #fff url(../../images/layout/sprite_tabs-sliders.png) left bottom no-repeat;
	border: 1px solid #b7b7b7;
	zoom: 1;
}
* html .ui-tabs-panel { height: 1%; background: none; }

.js .ui-tabs-hide
{
	display: none;
}

/*======================================================================
	CAROUSELS
----------------------------------------------------------------------*/
.widget-carousel
{
	position: relative;
	left: -10px;
}

	.widget-carousel .carousel-content ul li
	{
		margin: 0 10px;
		width: 300px;
		height: 119px;
	}

	.widget-carousel .carousel-controls
	{
		margin: 5px auto;
		width: 110px;
	}
	
		.widget-carousel .carousel-controls a
		{
			display: block;
			padding: 2px 0 4px;
			font-size: 0.833em;
			background-color: transparent;
			background-image: url(../../images/buttons/sprite_carousel-controls.gif);
			background-repeat: no-repeat;
			outline: none;
		}
		
		.widget-carousel .carousel-controls a.prev
		{
			padding-right: 24px;
			float: left;
			background-position: right 0;
		}
		
			.widget-carousel .carousel-controls a:hover.prev
			{
				color: #148150;
				background-position: right -34px;
			}
			
		.widget-carousel .carousel-controls a.next
		{
			padding-left: 24px;
			float: right;
			background-position: left -102px;
		}
		
			.widget-carousel .carousel-controls a:hover.next
			{
				color: #148150;
				background-position: left -136px;
			}

/*======================================================================
	WEBLINC DEVELOPER TOOLBAR
	--------------------------------------------------------------------
	this can be removed in live	client environments.
----------------------------------------------------------------------*/
.weblinc-developer-toolbar
{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 48px;
	min-height: 25px;
	background: transparent url(../../../_default/images/developerbar/bg_dev-bar.png) 0 0 no-repeat;
}
	
	.weblinc-developer-toolbar a.weblinc-developer-toolbar-anchor
	{
		display: block;
		position: absolute; 
		top: 0;
		left: 0;
		width: 25px;
		height: 25px;
		font-size: 1px;
		text-indent: -9999px;
		background: transparent url(../../../_default/images/developerbar/dev-bar-open-close.png) 0 -2px no-repeat;
		outline: none;
	}
		
		.weblinc-developer-toolbar a:hover.weblinc-developer-toolbar-anchor
		{
			background-position: -36px -2px;
		}
		
		.weblinc-developer-toolbar.open a.weblinc-developer-toolbar-anchor
		{
			background-color: transparent;
			background-position: 0 -26px;
		}
		
		.weblinc-developer-toolbar.open a:hover.weblinc-developer-toolbar-anchor
		{
			background-color: transparent;
			background-position: -36px -26px;
		}

	.weblinc-developer-toolbar.open
	{
		width: 100%;
		background-color: #666;
	}
		.weblinc-developer-toolbar .weblinc-developer-toolbar-content
		{
			display: none;
			padding-left: 60px;
		}
		.weblinc-developer-toolbar.open .weblinc-developer-toolbar-content
		{
			display: block;
		}