/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Typography
	#Links
	#Lists
	#Images
	#Forms
	#Misc
	#Borders 
	#Alert Boxes

	*/
	
	
/* #Reset & Basics
================================================== */
	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; 
		}

	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; 
		}

	body {
		line-height: 1; 
		}

	ol, ul {
		list-style: none; 
		}

	blockquote, q {
		quotes: ; 
		}

	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; 
		}

	table {
		border-collapse: collapse;
		border-spacing: 0; 
		}


/* #Basic Styles
================================================== */
	body {
		margin:0;
		padding:0;
    }
    
    body.home {
		-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
		-webkit-text-size-adjust: 100%;	    
    }
 	.wrapper {
		background:none;
	}
	
	.right {
		float: right;
		text-align: right;
	}
	
	.left {
		text-align: left;
		float: left;
	}


/* #Typography
================================================== */
	h1, h2, h3, h4, h5, h6 {
	   color: #181818;
	   font-family: "adobeGaramondPro-regular", Helvetica, Arial, sans-serif;
	   font-weight: normal; 
    }
	
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { 
	   font-weight: inherit; 
    }
	
	h1 { 
	   font-size: 46px; 
	   line-height: 50px; 
	   margin-bottom: 14px;
    }
	
	h2 { 
	   font-size: 35px; 
	   line-height: 40px; 
	   margin-bottom: 10px; 
    }
	
	h3 { font-size: 28px; line-height: 34px; margin-bottom: 8px; }
	h4 { font-size: 21px; line-height: 30px; margin-bottom: 4px; }
	h5 { font-size: 17px; line-height: 24px; }
	h6 { font-size: 14px; line-height: 21px; }
	.subheader { color: #777; }

	p {
	   /*margin: 0 0 20px 0;*/ 
	   background:none;
	   margin:0px;
	   padding:0px; 
	   font-size: 14px;
	   line-height: 22px;
    }
	
	p img { 
	   margin: 0; 
    }
	
	p.lead { 
	   font-size: 21px; 
	   line-height: 27px; 
	   color: #777;  
    }

	em { 
	   font-style: italic; 
    }
    
	strong { 
	   font-weight: bold; 
	   color: #333; 
    }
    
	small { 
	   font-size: 80%; 
    }
	
	.tagline p {
	   text-align: center;
	   font-size: 24px;
	   font-style: italic;
	   margin: 10px 0 0 0;
	   font-family: Georgia, Times, Serif;
	}

/*	Blockquotes  */
	blockquote, blockquote p { 
	   font-family: Georgia, Times, Serif; 
	   font-size: 17px; 
	   line-height: 24px; 
	   color: #777; 
	   font-style: italic; 
    }
    
    blockquote span.quote {
        font-size: 150%;
    }
    
	blockquote { 
	   margin: 0 0 20px; 
	   padding: 9px 20px 0 40px; 
    }
    
    blockquote cite { 
        display: block; 
        font-size: 12px; 
        color: #555; 
        font-family: Helvetica, Arial, Sans-Serif;
        text-align: right;
        margin: 0 50px 0 0;
    }
    
	blockquote cite:before { 
	   content: "\2014 \0020"; 
    }
    
	blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { 
	   color: #555; 
    }

	hr { 
	   border: solid #ddd; 
	   border-width: 1px 0 0; 
	   clear: both; 
	   margin: 10px 0 0px; 
	   height: 0; 
    }


/* #Links
================================================== */
	a { 
	   cursor:pointer; 
	   -webkit-tap-highlight-color:transparent;
	   -webkit-touch-callout:none;
    }
	
	a img { 
	   border:none; 
    }
	
	a, a:visited { 
	   color: #333; 
	   text-decoration: underline; 
	   outline: 0; 
    }
    
    a:hover, a:focus { 
        color: #000; 
    }
	
	p a, p a:visited { 
	   line-height: inherit; 
	}


/* #Lists
================================================== */
	ul, ol { 
	   margin-bottom: 20px; 
    }
	
	ul { 
	   list-style: none outside; 
    }
	
	ol { 
	   list-style: decimal; 
    }
	
	ol, ul.square, ul.circle, ul.disc { 
	   margin-left: 30px; 
    }
	
	ul.square { 
	   list-style: square outside; 
    }
	
	ul.circle { 
	   list-style: circle outside; 
    }
	
	ul.disc { 
	   list-style: disc outside; 
    }
	
	ul ul, ul ol,
	ol ol, ol ul { 
	   margin: 4px 0 5px 30px; 
	   font-size: 90%;  
    }
	
	ul ul li, ul ol li,
	ol ol li, ol ul li { 
	   margin-bottom: 6px; 
    }
	
	li { 
	   line-height: 18px; 
	   margin-bottom: 12px; 
    }
	
	ul.large li { 
	   line-height: 21px; 
	}
	
	li p { 
	   line-height: 21px; 
    }
	
	ul.checkmark, ul.pin {
        padding-left: 25px;
	}
	
	ul.pin {
        list-style-image: url('../../../images/icons/pinboard.png');
    }
	
	ul.checkmark {
        list-style-image: url('../../../images/icons/tick.png');
    }

/* #Images
================================================== */

	img.scale-with-grid {
		max-width: 100%;
		height: auto; 
    }
	
	img.left {
	   float: left;
	   padding: 10px 10px 10px 0;
	}	

	img.left.no-top {
	   float: left;
	   padding: 0px 10px 10px 0;
	}	

	img.left.no-bottom {
	   float: left;
	   padding: 10px 10px 0px 0;
	}	

    img.right {
        float: right;
        padding: 10px 0 10px 10px;
    }

    img.right.no-top {
        float: right;
        padding: 0px 0 10px 10px;
    }    

    img.right.no-bottom {
        float: right;
        padding: 10px 0 0px 10px;
    }        


/* #Forms
================================================== */

	form {
		margin-bottom: 20px; 
    }
	
	fieldset {
		margin-bottom: 20px; 
    }
	
	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
		border: 1px solid #ccc;
		padding: 10px 2%;
		outline: none;
		font-size: 14px;
		color: #777;
		margin: 0;
		font-family: "avenir-book";
		width: 100%;
		max-width: 100%;
		display: block;
		margin-bottom: 10px;
		background: #fff; 

		-moz-border-radius: 2px;
		-webkit-border-radius: 2px;
		border-radius: 2px;
		
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
    }
	
	select {
		padding: 0; 
    }
	
	input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="email"]:focus,
	textarea:focus {
		border: 1px solid #aaa;
 		color: #444;
 		-moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
		-webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
		box-shadow:  0 0 3px rgba(0,0,0,.2); 
    }
	
	textarea {
		min-height: 60px; 
    }
	
	label,
	legend {
		display: block;
		font-weight: bold;
		font-size: 13px;  
    }
	
	select {
		width: 220px; 
    }
	
	input[type="checkbox"] {
		display: inline; 
    }
	
	label span,
	legend span {
		font-weight: normal;
		font-size: 13px;
		color: #444; 
    }

/* Rows
================================================== */
	.row{ 
	   background:none; 
	}

/* #Borders
================================================== */
    /*horizontal rules*/
        hr{
            display: block;
            border: solid #DDD;
            clear: both;
            margin: 15px 0 30px;
            height: 0;
            border-width: 1px 0 0;
        }
        
        hr.standard {
            border-color: #E0E0E0 white #F9F9F9 white;
            border-width: 1px;
        }
        
        hr.fat {
            border-bottom: 4px solid #DDD;
        }
        
        hr.stripes {
            height: 10px;
            background: transparent url(../../../images/bg/stripes_small_05.png) top left repeat;
            border: none;
        }
        
        hr.mini {
            border-color: #E0E0E0 white #F9F9F9 white;
            border-width: 1px;
            width: 50%;
            margin: 15px auto 30px auto;            
        }
        
    /*horizontal rules*/    


	.row.border 						{ border-top-width:1px; border-bottom-width:1px; border-style:solid; }
	.row .border-top 					{ border-top-width:1px; border-style:solid; }
	.row .border-bottom 				{ border-bottom-width:1px; border-style:solid; }
	.column.border,
	.column2-3.border,
	.column3-4.border,
	.column2-5.border,
	.column3-5.border,
	.column4-5.border,
	.column3.border						{ padding-left:9px; padding-right:9px; border-width:1px; border-style:solid; }
	.column.border-top,
	.column2-3.border-top,
	.column3-4.border-top,
	.column2-5.border-top,
	.column3-5.border-top,
	.column4-5.border-top,
	.column3.border-top					{ border-top-width:1px; border-style:solid; }
	.column.border-right,
	.column2-3.border-right,
	.column3-4.border-right,
	.column2-5.border-right,
	.column3-5.border-right,
	.column4-5.border-right,
	.column3.border-right				{ padding-right:9px; border-right-width:1px; border-style:solid; }
	.column.border-bottom,
	.column2-3.border-bottom,
	.column3-4.border-bottom,
	.column2-5.border-bottom,
	.column3-5.border-bottom,
	.column4-5.border-bottom,
	.column3.border-bottom				{ border-bottom-width:1px; border-style:solid; }		
	.column.border-left,
	.column2-3.border-left,
	.column3-4.border-left,
	.column2-5.border-left,
	.column3-5.border-left,
	.column4-5.border-left,
	.column3.border-left				{ padding-left:9px; border-left-width:1px; border-style:solid; }
	
	.fluid .column.border,
	.fluid .column2-3.border,
	.fluid .column3-4.border,
	.fluid .column2-5.border,
	.fluid .column3-5.border,
	.fluid .column4-5.border,
	.fluid .column3.border				{ padding-left:0.9%; padding-right:0.9%; border-width:1px; border-style:solid; }
	.fluid .column.border-top,
	.fluid .column2-3.border-top,
	.fluid .column3-4.border-top,
	.fluid .column2-5.border-top,
	.fluid .column3-5.border-top,
	.fluid .column4-5.border-top,
	.fluid .column3.border-top			{ border-top-width:1px; border-style:solid; }
	.fluid .column.border-right,
	.fluid .column2-3.border-right,
	.fluid .column3-4.border-right,
	.fluid .column2-5.border-right,
	.fluid .column3-5.border-right,
	.fluid .column4-5.border-right,
	.fluid .column3.border-right		{ padding-right:0.9%; border-right-width:1px; border-style:solid; }
	.fluid .column.border-bottom,
	.fluid .column2-3.border-bottom,
	.fluid .column3-4.border-bottom,
	.fluid .column2-5.border-bottom,
	.fluid .column3-5.border-bottom,
	.fluid .column4-5.border-bottom,
	.fluid .column3.border-bottom		{ border-bottom-width:1px; border-style:solid; }		
	.fluid .column.border-left,
	.fluid .column2-3.border-left,
	.fluid .column3-4.border-left,
	.fluid .column2-5.border-left,
	.fluid .column3-5.border-left,
	.fluid .column4-5.border-left,
	.fluid .column3.border-left			{ padding-left:0.9%; border-left-width:1px; border-style:solid; }

	
	.border,
	.border-top,
	.border-right,
	.border-bottom,
	.border-left						{ border-color:#00FF00; }
	

/* #Alert Boxes
================================================== */
    .alert {
        padding: 10px 10px 10px 40px;
        font-size: 11px;
        margin: 20px 0px 10px 0px;
        
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;

    }

    .alert-notification {
        color: #4F8A10;
        background: #DFF2BF url('../../../images/icons/tick_green.png') 15px 13px no-repeat;
        border: 1px solid #4F8A10;
    }	
    
    .alert-warning {
        border: 1px solid #DDB723;
        background: #FFEA73 url('../../../images/icons/warning.png') 15px 13px no-repeat;
        color: #A63C00;
    }    
    
    .alert-error {
        color: #D8000C;
        background: #FFBABA url('../../../images/icons/cross.png') 15px 13px no-repeat;
        border: 1px solid #D8000C;
        text-shadow: none;
    }

	.bgimage {
		position: absolute;
		top: 0px;
		min-width: 100%;
		width: 100%;
		min-height: 100%;
		height: 100%;
		background-attachment: fixed;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: top;
		display: none;
	}

	#message .error_message {
		display: none;
        background: #FFEA73;
        border: 1px solid #DDB723;
        padding: 10px;
		margin-bottom: 10px;

        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;
    }
    #message .error_message img{
    	display: block;
    	float: left;
    	margin: 2px 10px 0px 0;
    }
    #message .error_message h6 {
        color: #6a6007;
        font-size: 20px;
        text-shadow: 1px 1px #DDB723;
    }

    #message .error_message ul.error_messages {
	    margin: 5px 0 0px 15px;
	    font-size: 14px;
    }

	#message .error_message ul.error_messages li {
	    margin: 5px 0;
        color: #a2920b;
    }

    #message .error_message ul.error_messages li span.red img {
	    width: 14px;
	    margin-top: 2px;
	    margin-right: 5px;
    }

	.email-error, .first-name-error, .last-name-error, .comment-error {
	    display: none;
    }