/*
 * Default Stylesheet for the website
 * include: layout, default colours
 * users will be able to change colours and fonts through additional stylesheets
*/


/* BASIC */
body {
		
	background: #ffffff; /* old browsers */
	background: -moz-linear-gradient(top, #efefea 10%, #ffffff 15%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #efefea), color-stop(15%,#ffffff)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efefea', endColorstr='#ffffff',GradientType=0 ); /* ie */
	background-repeat: no-repeat;
	
	min-height: 700px;
	line-height: 1.4;
	font-size: 12px;
	color: rgba(60,60,59,58);
	font-family: "Lucida Grande", "Lucida Sans", "sans serif";
}

p {
	margin-bottom: 8px;
}

a, a:visited {
	text-decoration: none;
	color: rgb(0,102,146);
}

a:hover {
	border-bottom: 1px dotted rgb(0,102,146);
}

.faux_link {
	text-decoration: none;
	color: rgb(0,102,146);
}

.faux_link:hover {
	border-bottom: 1px dotted rgb(0,102,146);
	cursor: pointer;
}

a.helvetica {
	font-family: 'HelveticaRoundedBoldCondessed' !important;
}

a.disabled {
	color: #aaaaaa !important;
}

h2.section_heading {
	border-bottom: 2px dotted rgba(60,60,59,58);
	font-size: 35px;
	margin-bottom: 10px;
	padding-bottom: 0px;
	color: rgb(142,142,141);
}

form h3 {
	font-size: 30px;
	margin-bottom: 20px;
	color: #046A97;
}

form h4 {
	font-size: 21px;
	margin-top: 15px;
	margin-bottom: 5px;
	color: #046A97;
}


h3>a {
	font-family: "GothamNarrowBook";
	font-size: 17px;
}

em {
	font-style: italic;
}

ul {
	padding: 0 0 10px 20px;
}

.clear {
	clear: both;
	font-size: 1px;
}

.clear_left {
	clear: left;
	font-size: 1px;
	padding: 0;
	margin: 0;
	height: 1px;
}

.hide {
	display: none;
}

.hidden {
	opacity: 0;
}

.reset_margin {
	margin-top: 8px;
}

.float_right {
	float: right;
}

.upper {
	text-transform: uppercase;
}

::-moz-selection{ background: #c49a6c; color:#fff; text-shadow: none; }
::selection { background:#c49a6c; color:#fff; text-shadow: none; }

/* LAYOUT */

#container {
	width: 940px;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

#main {
	position: relative;
}

#header {
	padding-top: 10px;
	height: 100px;
	margin-bottom: 20px;
	position: relative;
}

	#header #pupmates_logo {
		margin-left: 10px;
		display: block;
		margin-bottom: 10px;
	}

	#header #connect_actions {
		position: absolute;
		top: 70px;
		right: 10px;
		width: 120px;
		text-align: center;
	}

	#header #nav_default {
		margin-left: 10px;
		padding: 0;
	}

	#header #nav_default li a {
		color: rgb(60,60,59);
		font-size: .8em;
		padding: 0 10px 0 10px;
		border-right: 1px solid rgb(60,60,59);
	}

	#header #nav_default li a:hover {
		color: rgb(0,140,201);
		border-bottom: none;
	}

	#header #nav_default li.first a {
		padding: 0 10px 0 0;
	}

	#header #nav_default li.last a {
		padding: 0 0 0 10px;
		border: none;
	}

	#header #nav_default li a.current {
		color: rgb(0,140,201);
	}

	#header #nav_default, #header #nav_default li {
		list-style: none;
		display: inline;
	}

#hp_left {
	width: 640px;
	position: relative;
}

#hp_right, #right {
	width: 280px;
	float: right;
}

	#newsletter_form {
		background: #046a97; /* old browsers */
		background: -moz-linear-gradient(top, #2182b8 0%, #046a97 90%); /* firefox */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2182b8), color-stop(90%,#046a97)); /* webkit */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2182b8', endColorstr='#046a97',GradientType=0 ); /* ie */
		
		-moz-border-radius: 8px;
		-webkit-border-radius: 8px;
		border-radius: 8px 8px 8px 8px;
		
		padding: 10px;
		margin-bottom: 20px;
		
		color: #ffffff;
		
		-moz-box-shadow: 1px 3px 5px rgba(0,0,0,0.25);
		-webkit-box-shadow: 1px 3px 5px rgba(0,0,0,0.25);
		box-shadow: 1px 3px 5px rgba(0,0,0,0.25);
	}

	#newsletter_form h2 {
		font-size: 32px;
		text-shadow: 2px 2px 2px #666666;
	}

	#newsletter_form h2 span.lrg_newspaper_white {
		background-image: url('../images/glyphs/lrg_newspaper_white.png');
		background-position: 225px 5px;
		background-repeat: no-repeat;
		display: block;
	}
	
	#newsletter_form form {
		background-color: #ffffff;
		padding: 8px;
		margin: 0;
		
		position: relative;
		
		-moz-border-radius: 8px;
		-webkit-border-radius: 8px;
		border-radius: 8px 8px 8px 8px;
	}
	
	#newsletterForm input {
		border: 0;
		color: rgba(0,0,0,0.5);
		padding: 5px 3px 5px 5px;
		width: 125px;
	}
	
	.sign_up {
		color: #046a97;
		position: absolute;
		right: -5px;
		top: 105px;
		cursor: pointer;
	}
	
	#hp_search_form {
		margin-bottom: 20px;
		padding: 10px;
		height: 288px;
		
		color: #ffffff;
		
		-moz-border-radius: 8px;
		-webkit-border-radius: 8px;
		border-radius: 8px 8px 8px 8px;
		
		background: #6b6b6b; /* old browsers */
		background: -moz-linear-gradient(top, #6b6b6b 10%, #4e4e4d 80%); /* firefox */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #6b6b6b), color-stop(80%,#4e4e4d)); /* webkit */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b6b6b', endColorstr='#4e4e4d',GradientType=0 ); /* ie */
	}
	
	.search_type_option {
		width: 23%;
		float: left;
		text-align: center;
		margin: 0 0 15px;
		padding: 5px 1%;
		text-transform: uppercase;
		font-size: 11px;
		font-family: 'HelveticaRoundedBoldCondessed' !important;
		cursor: pointer;
	}
	
	.search_type_option img {
		display: none;
	}
	
	.search_type_option.current_selection {
		background: #00547b; /* old browsers */
		background: -moz-linear-gradient(top, #00547b 0%, #008cc9 90%); /* firefox */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00547b), color-stop(90%,#008cc9)); /* webkit */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00547b', endColorstr='#008cc9',GradientType=0 ); /* ie */;
		position: relative;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px 5px 5px 5px;
	}
	
	.search_type_option.current_selection img {
		position: absolute;
		left: 50%;
		top: 15px;
		margin: 7px 0 0 -6px;
		display: block;
	}
	
	#hp_search_form tr td {
		padding: 5px 0;
	}
	
	
	
	#hp_search_form tr td label {
		text-transform: uppercase;
		padding-left: 5px;
		padding-bottom: 2px;
		display: block;
		font-size: 0.9em;
	}
	
	.sbHolder {
		background-color: #ffffff;
		font-family: Arial, sans-serif;
		font-size: 12px;
		font-weight: normal;
		height: 25px;
		position: relative;
		width: 99%;
		-moz-border-radius: 7px;
		-webkit-border-radius: 7px;
		border-radius: 7px 7px 7px 7px;
	}
	.sbSelector {
		display: block;
		height: 25px;
		left: 0;
		line-height: 25px;
		outline: none;
		overflow: hidden;
		position: absolute;
		text-indent: 10px;
		top: 0;
		width: 90%;
	}
	.sbSelector:link, .sbSelector:visited, .sbSelector:hover {
		color: rgb(60,60,60);
		outline: none;
		text-decoration: none;
		font-family: "Lucida Grande", arial !important;
	}
	.sbToggle {
		background: url('../images/dropdown.png') 8px 4px no-repeat;
		display: block;
		height: 30px;
		outline: none;
		position: absolute;
		right: 0;
		top: 0;
		width: 30px;
	}
	.sbToggle:hover {
		background: url('../images/dropdown.png') 8px 4px no-repeat;
	}
	.sbToggleOpen {
		background: url('../images/dropdown_hide.png') 8px 4px no-repeat;
	}
	.sbToggleOpen:hover {
		background: url('../images/dropdown_hide.png') 8px 4px no-repeat;
	}
	.sbHolderDisabled {
		background-color: #3C3C3C;
		border: solid 1px #515151;
	}
	.sbHolderDisabled .sbHolder {
	
	}
	
	.sbHolderDisabled .sbToggle {
	
	}
	
	.sbOptions {
		background-color: rgba(60,60,59,0.9);
		border: solid 1px #515151;
		list-style: none;
		left: -1px;
		margin: 0 0 0 5px;
		padding: 0;
		position: absolute;
		top: 30px;
		width: 90%;
		z-index: 300;
		overflow-y: auto;
	}

	.sbOptions li {
		padding: 0 7px;
	}
	.sbOptions a {
		border-bottom: dotted 1px #515151;
		display: block;
		outline: none;
		padding: 7px 0 7px 3px;
	}
	.sbOptions a:link, .sbOptions a:visited{
		color: #ddd;
		text-decoration: none;
		font-family: "Lucida Grande", arial !important;
	}
	.sbOptions a:hover{
		color: rgb(95,158,227);
	}
	.sbOptions li.last a{
		border-bottom: none;
	}
	
	#hp_search_form tr td input {
		background-color: #ffffff;
		border: 0;
		padding: 5px;
		border: 1px solid #cfd0cd;
		border-radius: 7px;
		-moz-border-radius: 7px;
		-webkit-border-radius: 7px;
		font-size: 0.9em;
	}
	
	#hp_search_form tr td select {
		background-color: #efefea;
		border: 0;
		border: 1px solid #cfd0cd;
		-moz-border-radius: 7px;
		-webkit-border-radius: 7px;
		border-radius: 7px 7px 7px 7px;
	}
	
	.form_date_field {
		width: 115px;
		background-image: url('../images/icons/calendar.png');
		background-position: 105px center;
		background-repeat: no-repeat;
	}
	
	#puppySearchBreed, #dogSearchBreed {
		width: 255px;
	}
	
	#puppySearchSex, #puppySearchState, #dogSearchSex, #dogSearchState {
		width: 125px !important;
	}
	
select {
	padding-top: 5px;
}

option {
	padding: 2px 5px 0;
}

#hp_image_scroller {
	background-color: #333333;
	margin-bottom: 25px;
	height: 288px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px 8px 8px 8px;
	background: #6b6b6b; /* old browsers */
	background: -moz-linear-gradient(top, #6b6b6b 10%, #4e4e4d 80%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #6b6b6b), color-stop(80%,#4e4e4d)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b6b6b', endColorstr='#4e4e4d',GradientType=0 ); /* ie */
}

#hp_image_scroller ul {
	display: none;
}

#main_content {
	position: relative;
}

#main_content h3, #main h3 {
	color: #046A97;
	font-size: 18px;
}



#hp_left_panel {
	width: 200px;
	padding: 15px 10px;
	background-color: rgb(237,244,247);
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px 8px 8px 8px;
	float: left;
}

	#hp_left_panel h3 {
		background-repeat: no-repeat;
		padding: 3px 25px 3px 22px;
		color: #ffffff;
		letter-spacing: 1px;
		margin-bottom: 15px;
		height: 20px;
		font-size: 15px !important;
		text-transform: uppercase;
		background-image: url('../images/left_column_heading_ribbon.png');
		position: absolute;
		top: 5px;
		left: -20px;
		width: 196px;
		height: 33px;
	}

	#hp_left_panel h4 {
		font-size: 12px !important;
		font-family: "Lucida Sans", "Lucida Grande", Arial;
		font-weight: 700;
		margin-bottom: 10px;
	}
	
	#hp_litter_of_the_week, #hp_product_of_the_week {
		margin-bottom: 20px;
		padding-top: 50px;
		position: relative;
	}
	
	#hp_litter_of_the_week .ribbon, #hp_product_of_the_week .ribbon {
		position: absolute;
		left: -28px;
		top: 0px;
		z-index: 1;
	}

#hp_centre_panel {
	float: right;
	width: 400px;
}
	
	#hp_breed_list {
		clear: both;
	}
	
	#hp_breed_list_col_1, #hp_breed_list_col_2, #hp_breed_list_col_3 {
		width: 120px;
		float: left;
	}
	
	#hp_breed_list_col_1, #hp_breed_list_col_2 {
		margin-right: 20px;
	}
	
	#hp_centre_panel .hp_breed_box {
		height: 120px;
		width: 120px;
		margin-right: 20px;
		background-color: #f6f5f3;
		float: left;
		margin-bottom: 15px;
	}
	
	#hp_centre_panel .last {
		margin-right: 0;
	}

#footer {
	font-size: .75em;
	text-align: center;
	margin-top: 10px;
	padding-top: 30px;
	clear: both;
	position: relative;
	height: 75px;
	background: #6b6b6b; /* old browsers */
	background: -moz-linear-gradient(top, #6b6b6b 10%, #4e4e4d 80%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #6b6b6b), color-stop(80%,#4e4e4d)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b6b6b', endColorstr='#4e4e4d',GradientType=0 ); /* ie */
	font-family: "Lucida Grande", "Lucida Sans", verdana !important;
	color: #ffffff;
	text-shadow: 1px 1px 1px #333333;
	
}

	#footer a {
		color: #ffffff;
		font-size: .75em;
	}

	#footer_logo {
		position: absolute;
		top: 20px;
		left: 30px;
		border-right: 1px solid #ffffff;
		padding: 10px 30px 11px 0;
	}

	#footer #nav_default {
		display: inline;
	}

	#footer #nav_default, #footer #nav_default li {
		list-style: none;
		display: inline;
	}
	

	#footer #nav_default li a {
		font-size: .75em;
		padding: 0 5px;
		border-right: 1px solid rgb(255,255,255);
	}

	#footer #nav_default li a:hover {
		color: rgb(0,140,201);
	}

	#footer #nav_default li.first a {
		padding: 0 5px 0 0;
	}

	#footer #nav_default li.last a {
		padding: 0 0 0 5px;
		border: none;
	}
	

	#footer #connect_actions {
		position: absolute;
		top: 20px;
		right: 20px;
		width: 120px;
		text-align: right;
		border-left: 1px solid #ffffff;
		padding: 20px 30px 17px 0;
	}

.current {
	color: #046a97;
}

.bigger {
	font-size: 150%;
}

.uppercase {
	text-transform: uppercase;
}

.white {
	color: rgb(255,255,255) !important;
}

.lt_grey {
	color: rgb(150,150,150) !important;
}

.red {
	color: rgb(200,0,0) !important;
}

.clickable {
	cursor: pointer;
}

.float_right {
	float: right;
}

.small_button a {
		background: #00557c; /* old browsers */
		background: -moz-linear-gradient(top, #008cc9 0%, #00557c 90%); /* firefox */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#008cc9), color-stop(90%,#00557c)); /* webkit */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#008cc9', endColorstr='#00557c',GradientType=0 ); /* ie */
		text-align: center;
		padding: 8px 10px;
		color: #ffffff;
		
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px 5px 5px 5px;
		
		text-shadow: 1px 1px 1px #333333;
		
}

.small_button a:active, .small_button a:hover {
		background: #008cc9; /* old browsers */
		background: -moz-linear-gradient(top, #00557c 0%, #008cc9 90%); /* firefox */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00557c), color-stop(90%,#008cc9)); /* webkit */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00557c', endColorstr='#008cc9',GradientType=0 ); /* ie */
		
}

/* Glyphs */

.sml_star_white {
	background-image: url('../images/glyphs/sml_star_white.png');
	background-position: 180px 3px;
	background-repeat: no-repeat;
	display: block;
	}

.sml_tag_white {
	background-image: url('../images/glyphs/sml_tag_white.png');
	background-position: 180px 3px;
	background-repeat: no-repeat;
	display: block;
	}

/* Easy Slider */

#slider {
	overflow: hidden;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px 8px 8px 8px;
	}

#slider ul, #slider ul li,
#slider2 ul, #slider2 li{
	margin:0;
	padding:0;
	list-style:none;
	}

#slider2 {
	margin-top: 1em;
	}
	
#slider li, #slider2 li{ 
	/* 
		define width and height of list item (slide)
		entire slider area will adjust according to the parameters provided here
	*/ 
	width: 640px;
	height: 288px;
	overflow: hidden; 
	}
	
#prevBtn, #nextBtn,
#slider1next, #slider1prev{ 
	display: block;
	width: 27px;
	height: 55px;
	position: absolute;
	left: 0px;
	top: 115px;
	z-index: 1000;
	}
	
#nextBtn, #slider1next{ 
	left: 613px;
	}
	
#prevBtn a, #nextBtn a,
#slider1next a, #slider1prev a{  
	display: block;
	position: relative;
	width: 27px;
	height: 55px;
	background: url(../images/btn_prev.png) no-repeat 0 0;	
	}
	
#nextBtn a, #slider1next a{ 
	background: url(../images/btn_next.png) no-repeat 0 0;	
	}

#prevBtn, #nextBtn {
	display: none;
}

#mystery_box_large {
	min-height: 360px;
	background-color: transparent;
	text-align: center;
	margin-bottom: 20px;
}

#mystery_box_medium {
	height: 93px;
	background-color: #f6f5f3;
	text-align: center;
	margin-top: 15px;
	display: none;
}

#mystery_box_small {
	height: 108px;
	background-color: #f6f5f3;
	text-align: center;
	display: none;
}

/* breeders list */

#full_breed_list h3 {
	margin: 20px 0 10px;
}

/* Pagination */

#list_pagination {
	text-align: center;
	margin: 20px 0;
	padding: 20px 10px;
	border-top: 2px dotted rgb(60,60,59);
	border-bottom: 2px dotted rgb(60,60,59);
	position: relative;
	font-size: 20px;
	font-family: 'GothamNarrowLight';
}

#page_of_pages {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 12px;
	color: rgb(177,177,177);
	text-transform: uppercase;
	font-family: 'GothamNarrowBook';
}

#list_pagination span, #list_pagination a {
	padding: 0 20px;
}

#list_pagination form {
	display: inline;
}

#list_pagination select {
	font-size: 11px;
}

#list_pagination .sbOptions, #list_pagination .sbHolder {
	width: 100px;
}

.styledForm .fat {
	padding: 3px;
}

.styledForm {
	padding: 20px 30px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px 8px 8px 8px;
	background: #EDF4F7;
}

.styledForm p.formElement  {
	float: left;
	margin-right: 20px;
}


.styledForm input[type=text], .styledForm input[type=password], .styledForm select, .wideasselect {
	width: 240px;
}

.styledForm .defaultsize {
		width: 80px;
}

.styledForm .defaultcheckboxsize {
		width: 30px;
}

/* Dogs page */
#breed_details h3 {
	font-size: 1.7em;
}

.fifty_percent {
	width: 50%;
	float: left;
}

.fortynine_percent {
	width: 49%;
	float: left;
}

.fortynine_percent_first {
	margin-right: 2%;
}

.fourty_percent {
	width: 40%;
	float: left;
}

.thirty_percent {
	width: 30%;
	float: left;
}

.twenty_percent {
	width: 20%;
	float: left;
}

.ten_percent {
	width: 10%;
	float: left;
}

.club_details {
	display: none;
	margin-top: 15px;
}

.breed_breeder_list {
	border-bottom: 1px solid #dddddd;
}

.breed_breeder_list td {
	padding: 5px 4px;
}

.pad10 {
	padding: 10px 0 10px;
}

#breed_image {
	text-align: center;
	margin-bottom: 20px;
}

#breed_image img {
	padding: 5px;
	margin-left: 5px;
	border: 1px solid #dddddd;
	background: #ffffff; /* old browsers */
	background: -moz-linear-gradient(bottom, #dddddd 0%, #ffffff 90%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(90%,#dddddd)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dddddd',GradientType=0 ); /* ie */
}

#classified_contact_information {
	padding: 10px;
	margin-top: 20px;
	border: 1px solid #dddddd;
	background-color: #eeeeee;
	min-height: 90px;
}

#listing_actions {
	float: right;
	text-align: right;
}

.no_border:hover {
	border: none;
}

.no_border img {
	border: none;
}

.pad_below {
	padding-bottom: 15px;
}

.margin_below {
	margin-bottom: 15px;
}

.margin_above {
	margin-top: 15px;
}

/* No support for old browsers */

#no_support {
	width: 400px;
	height: 400px;
	background-color: #ffffff;
	position: absolute;
	padding: 10px;
	border: 4px solid #990000;
	top: 50%;
	left: 50%;
	margin-top: -207px;
	margin-left: -207px;
	z-index: 99999;
}

/* Table Classes */

.action_buttons {
	text-align: right;
	margin-top: 0;
	padding: 0 5px 10px;
}

.sml_button {
	background-color: #dddddd; /* old browsers */
	
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px 3px 3px 3px;
	
	padding: 6px;
	border: 1px solid #aaaaaa;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.sml_button:hover {
	box-shadow: 1px 1px 1px rgba(0,0,0,0.6);
}

.styled_table {
	border: 1px solid #dddddd;
	margin-bottom: 30px;
}

.styled_table tr:hover {
	background-color: #eeeeee;
}

.styled_table tr td, .styled_table tr th {
	padding: 6px;
}

.styled_table tr th {
	border-bottom: 1px solid #dddddd;
	background-color: #eeeeee;
}

.id_column {
	width: 20px;
}

#application_bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 98%;
	padding: 0.4% 1%;
	background-color: rgba(240,240,240,0.7);
	box-shadow: 0 0 10px rgba(0,0,0,0.6);
	border-bottom: 1px solid rgba(128,128,128,0.95);
	z-index: 2000;
}

#application_bar h2 {
	font-size: 24px;
}

.pad_top {
	padding-top: 10px;
}


form h4 {
	color: #000000;
	font-size: 16px;
	font-family: 'GothamNarrowMedium';
}


.notice {
	text-align: center;
	background-color: #e74d4d;
	padding: 10px;
	margin-bottom: 10px;
	color: #ffffff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
	font-size: 14px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px 8px 8px 8px;
}

.align_left {
	text-align: left;
}

.align_right {
	text-align: right;
}

.align_center {
	text-align: center;
}

.hp_table {
	font-size: .9em;
	margin-bottom: 10px;
}

.email_check {
	position: relative;
}

#email_check_loading, #email_check_passed, #email_check_failed {
	position: absolute;
	right: 6px;
	top: 21px;
	display: none;
}

.form_table {
	width: 100%;
}

.form_table tr td {
	padding: 8px;
}

.big_submit {
	height: 30px;
	width: 100%;
}

.breadcrumbs {
	font-size: .9em;
	padding: 0 0 10px 0;
	color: #666666;
}

.contact_card {
	border: 1px dotted #999999;
	float: left;
	width: 265px;
	padding: 5px;
	background-color: #ffffff;
}

.contact_card_even {
	margin-left: 20px;
}

.location_table {
	width: 100%;
}

.location_table tr.even {
	background-color: #fefefe;
}

.location_table tr td {
	padding: 5px 0 0;
	background-color: #fefefe;
}

.location_table tr td p {
	padding: 0 5px;
}

.status_notifier {
	height: 10px;
	width: 12px;
	padding: 0 5px;
	overflow: hidden;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px 7px 7px 7px;
	box-shadow: 1px 1px 3px #333333;
	display: inline;
	font-size: 1px;
}

.is_live {
	border: 1px solid #9fc120;
	background: #C5E160; /* old browsers */
	background: -moz-linear-gradient(top, #C5E160 0%, #EEF8CB 80%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#C5E160), color-stop(80%,#EEF8CB)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#C5E160', endColorstr='#EEF8CB',GradientType=0 ); /* ie */
}

.is_hidden {
	border: 1px solid #7D0924;
	background: #A40328; /* old browsers */
	background: -moz-linear-gradient(top, #A40328 0%, #d05e78 80%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#A40328), color-stop(80%,#d05e78)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#A40328', endColorstr='#d05e78',GradientType=0 ); /* ie */
}

#key {
	padding: 8px;
}

.services_listing_image {
	float: left;
	margin-right: 15px;
	margin-bottom: 8px;
}

.quick_contact_bar {
	margin-bottom: 20px;
}

.small_print {
	font-size: 90%;
	color: #666666;
}

#hp_social_media_links {
	text-align: right;
	margin-bottom: 20px;
	position: relative;
	border: 1px solid #008cc9;
	padding: 5px 10px 0px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px 8px 8px 8px;
	background: #ffffff; /* old browsers */
	background: -moz-linear-gradient(top, #ffffff 0%, #fefefe 80%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(80%,#fefefe)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fefefe',GradientType=0 ); /* ie */
}

#hp_social_media_links h3 { 
	text-align: left;
	margin-bottom: 10px;
}


#social_intro {
	width: 130px;
	position: absolute;
	top: 35px;
	left: 10px;
	text-align: left;
}