/*======================================================================
	FOOTMARKS: Layout
	--------------------------------------------------------------------
	COLOR PALETTE:
	Lt Pink:		#fae0eb;
	Lt Pink:		#f499c0;
	Pink:			#CC3399;
	Dk Pink:		#ec008c;
	Lt Blue:		#DFF2FF;
	Dark Blue:		#41678D;
	Dk Blue:		#000033;
	Lt Grey:		#999;
	Grey:			#777;
	Dk Grey:		#555;
	
	GRID:
	960px / 16 column grid
	column: 40px;
	margin: 0 10px;
	
	Z-INDEX:
	1000: Interface
	2000: Content
	3000: Zoom Image
	4000: Secondary Navigation
	5000: Main Navigation
	7000: Modal
----------------------------------------------------------------------*/
* { margin: 0; padding: 0; }

body
{
	padding: 20px 50px;
	font: 62.5% "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #888;
	background-color: #fae0eb;
}

/*======================================================================
	HEADINGS
----------------------------------------------------------------------*/
h1
{
	margin-bottom: 0;
	font-family: "Times New Roman", Times, serif;
	font-size: 2.8em;
	font-weight: normal;
	letter-spacing: 0.02em;
	color: #fff;
	text-transform: uppercase;
}

h2
{
	margin: 0;
	font-family: "Times New Roman", Times, serif;
	font-size: 1.6em;
	font-weight: normal;
	color: #fff;
}

h3
{
	margin: 0 0 0.5em;
	font-family: "Times New Roman", Times, serif;
	font-size: 1.4em;
	font-weight: bold;
	color: #555;
}

/*======================================================================
	LINKS
----------------------------------------------------------------------*/
a
{
	text-decoration: underline;
	color: #41678D;
	overflow: hidden;
}

a:hover
{
	text-decoration: none;
	color: #ec008c;
}

	a img,
	a:visited img
	{
		border: none;
	}


/*======================================================================
	PARAGRAPHS
----------------------------------------------------------------------*/
p 
{
	margin: 0 0 1.3em 0;
	font-size: 1.2em;
	line-height: 1.6;
}

/*======================================================================
	LISTS
----------------------------------------------------------------------*/
ul
{
	margin: 1em 0 1em 2em;
	list-style: disc;
}
	
	ul li
	{
		margin: 0.5em 0;
	}
	
ol
{
	margin: 1em 0 1em 2em;
	list-style: decimal;
}
	
	ol li
	{
		margin: 0.5em 0;
	}
	
dl
{
	margin: 1em 0;
}

	dt 
	{
		font-weight: bold;
	}
	
		dd
		{
			margin-left: 1em;
			line-height: 1.3;
		}


/*======================================================================
	MISC ELEMENTS
----------------------------------------------------------------------*/
address
{
	font-size: 1em;
	font-style: normal;
}

abbr,
acronym 
{ 
	border-bottom: 1px dotted #000033; 
	cursor: help; 
}  

blockquote
{
	margin: 1em;
	padding: 1em;
	background-color: #f1f1f1;
	border-left: 1px solid #000033;
}

cite
{
	margin-left: 1em;
	font-style: italic;
}
.skip-to
{
	position: absolute;
	top: -9999px;
	left: -9999px;
}

/*======================================================================
	_DEFAULTS
----------------------------------------------------------------------*/
/* Make sure our inline elements vertical-align properly. */
img,
input,
select,
label
{
	vertical-align: middle;
}

/* Make sure all elements inherent font properties properly. */
table,
thead,
tbody,
tfoot,
tr,
th,
td,
input,
select,
textarea
{
	font-size: 1em;
	font-family: inherit;
}

/* Make table cells default to top vertical alignment since more often than not we want it this way. */
td
{
	vertical-align: top;
}

table .action,
table .numeric,
table .money
{
	text-align: right;
}
tfoot th
{
	text-align: right;
}

/*======================================================================
	CLEARFIX
----------------------------------------------------------------------*/
.clearfix { display: block; zoom: 1; }
.clearfix:after { content: "."; display: block; height: 0.1px; clear: both; font-size: 0; visibility: hidden; }

/*======================================================================
	FORMS
----------------------------------------------------------------------*/
form
{}

.isolated
{
	margin-bottom: 1em;
	padding: 15px 20px;
	float: left;
	background-color: #DFF2FF;
}

fieldset
{
	border: none;
}

legend
{
	*margin-left: -7px; /* kill IE6 & 7-imposed spacing */
	font-family: "Times New Roman", Times, serif;
	font-size: 1.8em;
	font-weight: normal;
	color: #ec008c;
}
	legend span
	{
		display: block;
		padding: 0 0 0.75em; /* margin will not work in Safari */
	}
label
{
	font-size: 1.3em;
	color: #333;
}

.input-text,
.input-password,
select,
textarea
{
	padding: 4px 6px;
	font-size: 1.3em;
	color: #666;
	background: #fff;
	border: 1px solid #ccc;
}

input.hint
{
	color: #ccc;
	font-style: italic;
}

.input-file
{
	padding: 4px 6px;
	font-size: 1.1em;
	color: #666;
}

select
{
	padding: 2px 2px;
}

	.input-text:focus,
	.input-text.focus,
	.input-password:focus,
	.input-password.focus,
	select:focus,
	select.focus,
	textarea:focus,
	textarea.focus
	{
		border-color: #ec008c;
	}
	
.button
{
	padding: 3px 36px;
	font-family: Tahoma, Geneva, Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	background-color: #333;
	border: none;
	overflow: visible; /* fixes IE submit input double-padding bug */
	cursor: pointer;
}

a.button
{
	display: block; /* fixes IE padding */
}

	.button-small
	{
		padding: 3px 4px;
	}
	
	.button-mini
	{
		padding: 0 8px;
		font-size: 1em;
		color: #fff;
		background-color: #918f8f;
	}
	
		/* adjust to match line-height of submit button */
		a.button-mini
		{
			display: block;
			line-height: 14px; 
		}
	
	.button-alt
	{
		padding: 3px 15px;
		background-color: #918f8f;
	}

	.button:hover
	{
		text-decoration: none;
		color: #fff;
		background-color: #ec008c;
	}

input.input-radio
{
	margin-right: 5px;
}

input.input-checkbox
{
	margin-right: 3px;
}

select option
{
	font-size: 1em;
	padding: 2px 6px 2px 4px;
}

select optgroup option
{
	padding-left: 14px;
}

/*---------------------------------
	FIELD VALUES
	-------------------------------
	Text-represented form values
---------------------------------*/
dl.fv
{
	margin-top: 0;
}

	dl.fv span.actions
	{
		padding-left: 8px;
		font-size: 1em;
	}

		dl.fv span.actions span
		{
			margin-right: 2px;
			padding-right: 6px;
		}
	
			dl.fv span.actions span.last
			{
				margin: 0;
				padding: 0;
				border: none;
			}
		
	dl.fv dt
	{
		margin-bottom: 0.5em;
		/*font-weight: normal;*/
	}
	
		dl.fv dt span.actions
		{
			font-weight: normal;
			font-size: 1em;
		}

	dl.fv dd
	{
		margin-left: 0;
		font-size: 1em;
	}
	
	dl.fv dd .button
	{
		margin-bottom: 1.65em;
		clear: both;
	}

		dl.fv dd dl
		{
			margin-top: 0;
			margin-right: 10px;
			width: 248px;
			float: left;
		}
		
			dl.fv dd dl dt
			{
				margin-bottom: 0;
				font-weight: bold;
				text-transform: none;
			}
			
				dl.fv dd dl dt span.actions
				{
					font-size: 0.909em;
				}

/*---------------------------------
	PAIRING LISTS
---------------------------------*/
div.pairinglist
{}
	
	ul.pairings
	{
		margin: 0;
		padding: 0;
		list-style-type: none;
	}
	
		li.pairing
		{
			margin: 0 0 1em;
			background: none;
		}
		
			li.pairing label.primary
			{
				cursor: default;
			}
		
			li.pairing div.pairing-controls
			{
				overflow: hidden;
			}

	/*-- PAIRING LIST VERTICAL --*/
	li.pairing-vertical label.primary
	{
		display: block;
		margin-bottom: 0.2em;
	}
	
			li.pairing-vertical label.primary span.required,
			li.pairing-vertical label.primary span.optional
			{
				font-size: 1em;
				font-weight: normal;
				font-style: italic;
				color: #ec008c;
			}
		
			li.pairing-vertical label.primary span.pairing-note
			{
				font-size: 1em;
				font-weight: normal;
				color: #a0a6a2;
			}
		
	/*-- PAIRING LIST HORIZONTAL --*/
	li.pairing-horizontal
	{
		margin-bottom: 10px;
		width: 100%;
		clear: both;
		float: left;
	}
	
	li.pairing-horizontal .input-text,
	li.pairing-horizontal .input-password
	{
		width: 200px;
	}
	
	li.pairing-horizontal label.primary
	{
		margin-right: 3px;
		padding-top: 3px;
		width: 100px;
		float: left;
	}
		
		li.pairing-horizontal label.primary span.pairing-label
		{
			/*margin-right: 2px;*/
			/*float: left;*/
			
		}
		li.pairing-horizontal label.primary span.pairing-note
		{
			display: block;
			font-size: 0.9em;
			color: #a0a6a2;
		}
		
		li.pairing-horizontal label.primary span.required,
		li.pairing-horizontal label.primary span.optional
		{
			margin: 0 2px 0 0;
			font-size: 1em;
			font-weight: normal;
			font-style: italic;
			color: #ec008c;
		}

	li.pairing-horizontal .pairing-content
	{
		float: left;	
	}
		li.pairing-horizontal .pairing-content label.error
		{
			display: block;
			padding: 3px 0;
			float: none;
			width: auto;
			color: #ec008c;
		}

		li.pairing-horizontal .pairing-content select option
		{
			/*font-size: 1.1em;
			padding: 0 2px 0 4px;*/
		}

/*---------------------------------
	ACTION LISTS
---------------------------------*/
div.actionlist
{
	padding-top: 1em;
}
div.actionlist-horizontal
{
	padding-left: 103px;
}

	ul.actions
	{
		margin: 0;
		padding: 0;
		list-style: none;
	}

		ul.actions li.action
		{
			margin: 0 12px 0 0;
			float: left;
		}
			
			/* presumes primary action is a button and secondary action is text */
			ul.actions li.action-secondary
			{
				padding-top: 4px;
				font-size: 1em;
			}
			
			/* primarily for full-width buttons in checkout */
			ul.actions li.single-action
			{
				margin: 0;
			}



/*======================================================================
	LAYOUT
----------------------------------------------------------------------*/
#wrap
{
	margin: 0 auto;
	padding: 5px;
	width: 600px;
	background-color: #fff;
	border: 1px solid #ec008c;
	border-top: 4px solid #ec008c;
}
	#header
	{
		padding: 10px 20px;
		border-bottom: 1px solid #ec008c;
	}
	#content
	{
		padding: 15px 20px 15px 20px;
	}


/*---------------------------------
	HEADER
---------------------------------*/
#header {}
	#header img.logo
	{
		margin: 0 30px 0 0;
		float: left;
	}
	#header h1
	{
		padding-top: 10px;
		color: #ec008c;
	}
	#header h2
	{
		margin-bottom: 30px;
		padding-right: 45px;
		text-align: right;
		color: #999;
	}
	#header a
	{
		margin: 0 0 0 87px;
		text-align: center;
	}

/*---------------------------------
	COLUMNS
---------------------------------*/
.columns
{
	margin-left: -10px;
}
	.columns .col
	{
		margin-left: 10px;
		float: left;
	}
	.columns .col-1
	{
		width: 63%;
	}
	.columns .col-2
	{
		width: 28%;
		float: right;
	}


/*======================================================================
	LAYOUT: Home
----------------------------------------------------------------------*/
.home {}
	.home p.intro
	{
		font-size: 1.3em;
	}
		.home .col-1 h3
		{
			margin-bottom: 0px;
		}
		.home .vcard
		{
			margin-bottom: 1em;
			font-size: 1.3em;
			line-height: 1.5;
		}
			.home .vcard .country-name,
			.home .vcard .tel .type,
			.home .vcard .emails .type
			{
				display: none;
			}
			.home .vcard .note
			{
				margin-top: 3px;
				font-size: 0.833em;
			}
	
		.home .col-2 form.isolated
		{
			float: right;
		}

	.home .moreinformation {}
		.home .moreinformation p
		{
			font-size: 1.1em;
		}



