/* ========== Elements ========== */

/* Table of Contents
==================================================
    #Headings
    #Buttons 
*/


/* #Headings
================================================== */

	h1 {
		font-size: 36px;
		font-weight: 400;
		color: #fff;
		line-height: 110%;
		text-shadow: 0px 3px 1px rgba(0, 0, 0, .40);
		filter: dropshadow(color=rgba(0, 0, 0, .40), offx=0, offy=3);
	}
	
	h2 {
		font-size: 24px;
		font-weight: 400;
		color: #093331;
	}
	
	h3 {
		font-size: 20px;
		font-weight: 400;
		color: #093331;
	}
	
	h4 {
		font-size: 16px;
		font-weight: 400;
		color: #093331;
	}
	
	hr.top, hr.bottom { display: block; border: none; width: 940px; height: 26px; margin: 0; padding: 0; }
	
	hr.top { background: url('../images/separator-top.png') no-repeat; }
	hr.bottom { background: url('../images/separator-bottom.png') no-repeat; }
	

/* #Buttons
================================================== */

	.button {
		display: inline-block;
		outline: none;
		cursor: pointer;
		color: #fff;
		text-align: center;
		text-decoration: none;
		font-size: 18px;
		padding: 15px 40px;
		text-shadow: 0 1px 1px rgba(0,0,0,.3);
		-webkit-border-radius: 5px; 
		-moz-border-radius: 5px;
		border-radius: 5px;
		-webkit-box-shadow: 0 3px 1px rgba(0,0,0,.4), inset 0px 1px 1px rgba(255,255,255,.7);
		-moz-box-shadow: 0 3px 1px rgba(0,0,0,.4), inset 0px 1px 1px rgba(255,255,255,.7);
		box-shadow: 0 3px 1px rgba(0,0,0,.4), inset 0px 1px 1px rgba(255,255,255,.7);
		background: #174DD0;
		background: -webkit-gradient(linear, left top, left bottom, from(#3A83E8), to(#174DD0));
		background: -moz-linear-gradient(top,  #3A83E8,  #174DD0);
		filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#3A83E8', endColorstr='#174DD0');
	}
	
	.button:hover {
		color: #fff;
		-webkit-box-shadow: 0 3px 1px rgba(0,0,0,.4), inset 0px 1px 1px rgba(255,255,255,.4);
		-moz-box-shadow: 0 3px 1px rgba(0,0,0,.4), inset 0px 1px 1px rgba(255,255,255,.4);
		box-shadow: 0 3px 1px rgba(0,0,0,.4), inset 0px 1px 1px rgba(255,255,255,.4);
		background: #276b67;
		background: -webkit-gradient(linear, left top, left bottom, from(#174DD0), to(#174DD0));
		background: -moz-linear-gradient(top,  #174DD0,  #174DD0);
		filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#174DD0', endColorstr='#174DD0');
	}
	
	.button:active {
		color: #fff; 
		position: relative; 
		top: 3px;
		-webkit-box-shadow: inset 0px 1px 1px rgba(255,255,255,.4);
		-moz-box-shadow: inset 0px 1px 1px rgba(255,255,255,.4);
		box-shadow: inset 0px 1px 1px rgba(255,255,255,.4); 
	}
		