/****** FILE: themes/mytheme/css/reset.css *****/
/* CSS Document */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote { 
	margin:0;
	padding:0;
}
fieldset,img { 
	border:0;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
	font-weight:normal;
}
/*
Chris Bolt, commented out ol so that the type attribute can be used in content
ol,*/
ul {
	list-style:none;
}
caption,th {
	text-align:left;
}
h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}
q:before,q:after {
	content:'';
}
abbr,acronym { border:0;
}
br {font-size: 0}

/****** FILE: themes/mytheme/css/base.css *****/
/* CSS Document */

/* Chris Bolt - added a default line-height */
body {
	line-height: 1.35em;	
}
body * {
	line-height: inherit;
}
/* inline styles should inherit their line height */
span, cufon, strong, em, a, b, i {
	line-height: inherit;	
}
/* input elements should not have such a high line-height */
input, select, textarea {
	line-height: normal;	
}
/* End CHris Bolt

/* base.css, part of YUI's CSS Foundation */
h1 {
	/*18px via YUI Fonts CSS foundation*/
	font-size:138.5%;  
}
h2 {
	/*16px via YUI Fonts CSS foundation*/
	font-size:123.1%; 
}
h3 {
	/*14px via YUI Fonts CSS foundation*/
	font-size:108%;  
}
h1,h2,h3 {
	/* top & bottom margin based on font size */
	margin:1em 0;
}
h1,h2,h3,h4,h5,h6,strong {
	/*bringing boldness back to headers and the strong element*/
	font-weight:bold; 
	font-style: inherit;
}
abbr,acronym {
	/*indicating to users that more info is available */
	border-bottom:1px dotted #000;
	cursor:help;
} 
em {
	/*bringing italics back to the em element*/
	font-style:italic;
	font-weight: inherit;
}
blockquote,ul,ol,dl {
	/*giving blockquotes and lists room to breath*/
	margin:1em;
}
ol,ul,dl {
	/*bringing lists on to the page with breathing room */
	margin-left:2em;
}
ol {
	/*giving OL's LIs generated numbers*/
	/*list-style: decimal outside;	*/
}
ul {
	/*giving UL's LIs generated disc markers*/
	list-style: disc outside;
	margin-left: 1.4em;
}
dl dd {
	/*giving UL's LIs generated numbers*/
	margin-left:1em;
}
th,td {
	/*borders and padding to make the table readable*/
	/*border:1px solid #000;
	padding:.5em;*/
}
th {
	/*distinguishing table headers from data cells*/
	font-weight:bold;
	text-align:center;
}
caption {
	/*coordinated marking to match cell's padding*/
	margin-bottom:.5em;
	/*centered so it doesn't blend in to other content*/
	text-align:center;
}
p,fieldset,table {
	/*so things don't run into each other*/
	margin-bottom:1em;
}

/* Chris Bolt, added fix for image positioning */
img, iframe {
	vertical-align: bottom;
}

/* Chris Bolt, added fix for outlines */
a:focus, button:focus { 
    outline: none; 
}

/* add HTML 5 defaults */
video {
	background-color: #000;	
}
textarea,
input,
select {
  margin: 0;
  vertical-align: bottom;
}

/* Chris Bolt, br tags are funny in some browsers ?? */
br {
	font-size: 0;
	line-height: 0;	
}

/****** FILE: themes/mytheme/css/focuspoint.css *****/
/* !FOCUSED IMAGES */
/*-----------------------------------------*/
.focuspoint {
	position: relative; /*Any position but static should work*/
	overflow: hidden;
}
.focuspoint img {
	position: absolute;
	left: 0;
	top: 0;
	margin: 0;
	display: block;
	/* fill and maintain aspect ratio */
	width: auto; height: auto;
	min-width: 100%; min-height: 100%;
	max-height: none; max-width: none;
}

/****** FILE: themes/mytheme/css/layout.css *****/
/* CSS Document */
body {
	margin: 0;
	padding: 0;
	
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	color: #808285;
	font-size: 14px;
	line-height: 1.57em;	
	
	background: #fff;
	
	-webkit-text-size-adjust: none;
}


/* Header 
-------------------------------------------- */
#HeaderWrapper {
	background: #0032a0;	
	
	position: relative;
	z-index: 100;
}
#Header {
	max-width: 890px;
	margin: 0 auto;	
	position: relative;
	height: 98px;
}
#Logo {
	width: 198px;
	height: 36px;
	background: url(/themes/mytheme/images/logo.png) 0 0 no-repeat;
	background-size: 198px auto;
	position: absolute;
	left: 0;
	top: 30px;
}
#Logo a {
	display: block;
	height: 100%;
	text-indent: -1000px;
	overflow: hidden;
}
.retina #Logo {
	background-image: url(/themes/mytheme/images/logo-retina.png);
}

/* Navigation 
-------------------------------------------- */
#Nav {
	position: absolute;
	font-family: Asap, Arial, Helvetica, sans-serif;
	font-weight: normal;
	letter-spacing: 1px;
}
#Nav ul {
	margin: 0;
	padding: 0;
	list-style: none;	
}
#Nav li a {
	text-decoration: none;
}


/* Footer 
-------------------------------------------- */
#FooterWrapper {
	background: #f48120;
	color: #fff;
}
#Footer {
	margin: 0 auto;	
	color: #fff;
}
#Footer a {
	color: #fff;	
	text-decoration: none;
}
#Intuit a {
	font-size: 0;
	text-indent: 1000px;
	white-space: nowrap;
	overflow: hidden;
	display: inline-block;
	vertical-align: bottom;
	width: 33px;
	height: 30px;
	background: url(/themes/mytheme/images/intuit.png) 0 0 no-repeat;
	background-size: 33px auto;
}
.retina #Intuit a {
	background-image: url(/themes/mytheme/images/intuit-retina.png) 
}
#Intuit {
	border-top: 1px solid #fff;
	clear: both;	
	text-align: right;
	padding: 9px 0 46px 0;
}

/* Content  / Layout
-------------------------------------------- */
#Layout {
	max-width: 1090px;	
	background: #fff;
	margin: 0 auto;
}

/* Page Specific */
.ServiceHoursPage #Layout {
	background: url(/themes/mytheme/images/rightcol.png) 0 395px repeat-x;	
	background-size: 376px auto;
}
.retina.ServiceHoursPage #Layout {
	background-image: url(/themes/mytheme/images/rightcol-retina.png);
}
.ServiceHoursPage #Content {
	border-bottom: 1px solid #68bc49;
}
.ServiceHoursPage #RightCol {
	display: none;	
}

/* About Page */
.person img {
	background: #808285;	
}
.person header {
	border-bottom: 1px solid #68bc49;
	padding-bottom: 13px;
	margin-bottom: 9px;	
}
.typography .person header h4, .typography .person header p {
	display: inline-block;
	margin: 0;	
	vertical-align: bottom;
}
.typography .person header p:before {
	content: " - ";	
}
/* Image Shadow */
.imgShadow {
	display: inline-block;
	vertical-align: bottom;
	position: relative;	
	padding: 33px;
	left: -12px;
	margin-top: 40px;
}
.imgShadow:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 78px;
	height: 78px;
	background: url(/themes/mytheme/images/image-shadow.png) 0 0 no-repeat;
	background-size: 78px auto;
}
.retina .imgShadow:before {
	background-image: url(/themes/mytheme/images/image-shadow-retina.png);
}
.imgShadow:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 78px;
	height: 78px;
	background: url(/themes/mytheme/images/image-shadow.png) 0 100% no-repeat;
	background-size: 78px auto;
}
.retina .imgShadow:after {
	background-image: url(/themes/mytheme/images/image-shadow-retina.png);
}
/* Image Shadow Small */
.imgShadow.small {
	padding: 18px;
	left: 0;
	margin: 0 auto;
}
.imgShadow.small:before {
	top: 0;
	right: auto;
	left: 0;
	width: 46px;
	height: 46px;
	background: url(/themes/mytheme/images/image-shadow-small.png) 0 0 no-repeat;
	background-size: 46px auto;
}
.retina .imgShadow.small:before {
	background-image: url(/themes/mytheme/images/image-shadow-small-retina.png);
}
.imgShadow.small:after {
	bottom: 0;
	left: auto;
	right: 0;
	width: 46px;
	height: 46px;
	background: url(/themes/mytheme/images/image-shadow-small.png) 0 100% no-repeat;
	background-size: 46px auto;
}
.retina .imgShadow:after {
	background-image: url(/themes/mytheme/images/image-shadow-small-retina.png);
}

/* Contact page */
.ContactPage .typography h1 {
	margin-bottom: 11px;	
}
.ContactPage #Content section {
	border-top: 1px solid #f48120;
	padding-top: 10px;	
}
.ContactPage .typography #Content section p {
	font-family: Asap, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 16px;
}
.ContactPage .typography .phone h2 {
	font-size: 16px;
	font-style: normal;
	color: inherit;
	line-height: inherit;
	margin: 0 0 12px 0;
	padding: 0;
	border: 0;
}
.ContactPage .typography #Content section.phone p {
	font-family: Asap, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-style: italic;
	font-size: 32px;
	line-height: 32px;
	margin: 0 0 9px 0;	
}
.ContactPage .phone div.call, .ContactPage .phone div.fax {
	float: left;
	width: 50%;	
}
.ContactPage .typography #Content section h3 {
	font-size: 16px;
	line-height: inherit;
	color: #f48120;
	margin: 0;
	padding: 0;
	border: 0;
}
.ContactPage #Content section.contactForm {
	padding-top: 20px;
	
}
.ContactPage .typography .contactForm h1 {
	font-size: 31px;
	margin-bottom: 13px;
}
.ContactPage .typography .contactForm form {
	border-bottom: 1px solid #f48120;
}
.ContactPage .privacy {
	margin-top: -46px;
	margin-left: 17px;	
	margin-bottom: 24px;
}

/* misc */
.ErrorPage h1.seo {
	display: block;	
}
.urlSecurity h1.seo {
	display: block;	
}
.clear {
	clear: both;	
}
.seo {
	display: none;	
}
.hidden {
	visibility: hidden;	
}

/* Big Desktop Size */
@media only screen and (min-width: 1090px) {
	
	body {
		background: #fff url(/themes/mytheme/images/bg.jpg) 50% 96px no-repeat;	
	}

}

/* Desktop Size / large tablets */
@media only screen and (min-width: 960px) {
	
	/* Header */
	#HeaderWrapper {
		-webkit-box-shadow: 0px 0px 16px 8px rgba(0,0,0,0.3);
		-moz-box-shadow: 0px 0px 16px 8px rgba(0,0,0,0.3);
		box-shadow: 0px 0px 16px 8px rgba(0,0,0,0.3);	
	}
	
	/* navigation */
	#Nav {
		right: 0;
		bottom: 0;	
		height: 54px;
	}
	#Nav ul {
		margin: 0;
		padding: 0;
		list-style: none;	
		font-size: 0;
	}
	#Nav li {
		display: inline-block;
		font-size: 16px;
		line-height: 16px;
		text-transform: uppercase;
		margin: 0 0 0 25px;	
		padding: 0 0 0 25px;	
		border-left: 1px solid #fff;
		height: 26px;
	}
	#Nav li:first-child {
		border-left: 0;	
	}
	#Nav li a {
		color: #fff;
		display: inline-block;
		height: 43px;	
		position: relative;
		overflow: hidden;
		padding: 6px 0 0 0;
		
		border-bottom: 5px solid #0032a0;
	}
	#Nav li a:hover {
		color: #f48120;
	}
	#Nav li.current a, #Nav li.section a {
		color: #f48120;
		border-bottom-color: #f48120;
	}
	#Nav li.desktopHide {
		display: none;	
	}
	
	/* Header slideshow */
	#HeaderImages {
		max-width: 1090px;
		background: #b3b3b3;
		height: 400px;
		position: relative;
		
	}
	#Slides {
		height: 400px;	
		position: relative;
		overflow: hidden;
	}
	#Slides a {
		display: block;
		height: 400px;
		width: 100%;	
	}
	#HeaderImages a.next, #HeaderImages a.prev {
		display: block;
		position: absolute;	
		height: 77px;
		width: 47px;
		background: url(/themes/mytheme/images/slide-nav.png) 0 0 no-repeat;
		background-size: 94px auto;
		text-indent: -1000px;
		overflow: hidden;
		position: absolute;
		left: 0;
		top: 162px;
		z-index: 200;
	}
	.retina #HeaderImages a.next, .retina #HeaderImages a.prev {
		background-image: url(/themes/mytheme/images/slide-nav.png);
	}
	#HeaderImages a.next {
		left: auto;
		right: 0;
		background-position: 100% 0;	
	}
	
	/* Footer */
	#FooterWrapper {
		-webkit-box-shadow: inset 0px 24px 10px -16px rgba(0,0,0,0.3);
		-moz-box-shadow: inset 0px 24px 10px -16px rgba(0,0,0,0.3);
		box-shadow: inset 0px 24px 10px -16px rgba(0,0,0,0.3);	
	}
	#Footer {
		max-width: 890px;
		position: relative;
		padding: 35px 0 0 0;
	}
	#Footer a {
		color: #fff;	
		text-decoration: none;
	}
	
	#Footer:before {
		display: block;
		content: "Unichem Marina Pharmacy";
		font-size: 32px;
		line-height: 32px;
		font-family: Asap, Arial, Helvetica, sans-serif;
		font-weight: bold;
		width: 160px;	
		float: left;
		padding: 3px 55px 25px 0;
	}
	#FooterPhone:before {
		content: "T: ";	
	}
	#FooterFax:before {
		content: "F: ";	
	}
	#FooterEmail:before {
		content: "E: ";	
	}
	
	#Contact {
		float: left;
		padding: 0 0 25px 0;
	}
	
	#FooterSubscribe {
		float: right;
		width: 446px;	
	}
	
	#FooterFacebook {
		width: 393px;
		padding: 14px 0 0 0;
		clear: both;
	}
	#FooterFacebook a {
		font-size: 0;
		text-indent: 1000px;
		white-space: nowrap;
		overflow: hidden;
		display: inline-block;
		vertical-align: bottom;
		width: 33px;
		height: 33px;
		background: url(/themes/mytheme/images/facebook.png) 0 0 no-repeat;
		background-size: 33px auto;
	}
	.retina #FooterFacebook a {
		background-image: url(/themes/mytheme/images/facebook-retina.png) 
	}
	
	/* Layout */
	#Layout {
		background: #fff url(/themes/mytheme/images/rightcol.png) 118% 395px no-repeat;
		background-size: 376px auto;
		min-height: 870px;
	}
	.retina #Layout {
		background-image: url(/themes/mytheme/images/rightcol-retina.png);
	}
	#ContentWrapper {
		max-width: 960px;
		margin: 0 auto;
		background: url(/themes/mytheme/images/rightcol.png) 650px -5px no-repeat;
		background-size: 376px auto;
		
		padding: 0 0 57px 0;
	}
	.retina #ContentWrapper {
		background-image: url(/themes/mytheme/images/rightcol-retina.png);
	}
	#Content {
		max-width: 574px;
		width: 100%;
		margin-left: 35px;
		padding-top: 37px;
		float: left;
	}
	#RightCol {
		float: right;
		width: 261px;
		padding: 151px 0 0 9px;	
		margin: 0 6px 0 0;
		min-height: 695px;
		background: url(/themes/mytheme/images/careadvice.png) 0 -7px no-repeat;
		background-size: 152px auto;
	}
	.retina #RightCol {
		background-image: url(/themes/mytheme/images/careadvice-retina.png);	
	}
	#RightCol:after {
		content: "";
		display: block;
		height: 0;
		border-bottom: 1px solid #68bc49;	
	}
	
	/* Page Specific */
	.ServiceHoursPage #ContentWrapper {
		padding-top: 113px;
		background: url(/themes/mytheme/images/careadvice.png) 26px -7px no-repeat;
		background-size: 152px auto;	
	}
	.retina .ServiceHoursPage #ContentWrapper {
		background-image: url(/themes/mytheme/images/careadvice-retina.png);
	}
	
	/* About Page */
	.person {
		margin-top: 36px;	
	}
	.person .imgShadow {
		float: left;
	}
	.person .details {
		margin-left: 198px;	
	}
	.person .imgShadow.small {
		margin: -13px 0 0 -18px;	
		left: 0;
	}
}

/* Tablet size / large phones */
@media only screen and (max-width: 959px) {
	
	/* Header */
	#HeaderWrapper {
		-webkit-box-shadow: 0px 0px 8px 4px rgba(0,0,0,0.3);
		-moz-box-shadow: 0px 0px 8px 4px rgba(0,0,0,0.3);
		box-shadow: 0px 0px 8px 4px rgba(0,0,0,0.3);	
	}
	#Header {
		max-width: 700px;
		height: 75px;
	}
	#Logo, .retina #Logo {
		width: 142px;
		height: 26px;	
		background: url(/themes/mytheme/images/mobile/logo.png) 0 0 no-repeat;
		background-size: 142px auto;
		left: auto;
		right: 25px;
		top: 25px;
	}
	
	/* Navigation */
	/* Navigation */
	#Nav {
		top: 0;
		left: 0;
		width: 100%;
		cursor: pointer;
		font-size: 20px;
		line-height: 28px;
		text-transform: uppercase;
		color: #fff;
	}
	#Nav:before {
		content: "";
		display: block;
		background: url(/themes/mytheme/images/mobile/menu.png) 50% 50% no-repeat;
		width: 29px;
		height: 29px;
		background-size: 29px auto;
		padding: 22px 25px 24px 25px;
	}
	#Nav.active:before {
		background-color: #f48120;	
	}
	#NavWrapper {
		background: #f48120;	
		padding: 25px;
		display: none;
	}
	#NavWrapper:before {
		content: "MENU";
		display: block;
		font-weight: bold;
		border-bottom: 1px solid #fff;
		padding: 0 0 13px 0;
		margin: 0 0 14px 0;	
	}
	
	#Nav ul {
		margin: 0;
		padding: 0;
		display: block;
	}
	#Nav li {
		
	}
	#Nav li a {
		color: #fff !important;
	}
	#Nav li a:hover, #Nav li.section a, #Nav li.current a {
		font-weight: bold;	
	}
	#MenuFacebook {
		border-top: 1px solid #fff;
		border-bottom: 1px solid #fff;
		padding: 14px 0 13px 0;
		margin: 13px 0 14px 0;	
	}
	#MenuFacebook:before {
		content: "GET SOCIAL";
		font-weight: bold;	
	}
	#MenuFacebook a {
		font-size: 0;
		text-indent: 1000px;
		white-space: nowrap;
		overflow: hidden;
		display: block;
		vertical-align: bottom;
		width: 25px;
		height: 25px;
		background: url(/themes/mytheme/images/mobile/facebook.png) 0 0 no-repeat;
		background-size: 25px auto;
		float: right;
	}
	
	/* Footer */
	#Footer {
		max-width: 650px;
		font-family: Asap, Arial, Helvetica, sans-serif;
		padding: 17px 25px 0 25px;
	}
	#Footer:before {
		content: "Stay in touch. We’d love to hear from you.";
		display: block;
		font-weight: bold;
		line-height: 27px;
		font-size: 12px;
		padding-bottom: 11px;
	}
	#FooterPhone,#FooterFax {
		font-size: 20px;
		line-height: 27px;
		font-weight: bold;
		font-style: italic;	
		border-top: 1px solid #fff;
		display: block;
		padding: 14px 0 14px 0;
	}
	#FooterPhone:before, #FooterFax:before {
		display: block;
		font-style: normal;
		font-size: 12px;
		line-height: 21px;
	}
	#FooterPhone:before {
		content: "Call us: ";
	}
	#FooterFax:before {
		content: "Fax us: ";	
	}
	
	#Intuit {
		padding: 20px 0 28px 0;
	}
	#Intuit a {
		width: 23px;
		height: 21px;
		background: url(/themes/mytheme/images/mobile/intuit.png) 0 0 no-repeat;
		background-size: 23px auto;
	}
	.retina #Intuit a {
		background-image: url(/themes/mytheme/images/mobile/intuit.png) 
	}
	
	/* Layout */
	#Layout {
		max-width: 650px;
		padding: 0 25px 25px 25px;	
	}
	#ContentWrapper {
		padding-top: 25px;	
	}
	
	
	/* Page Specific */
	
	/* Home Page */
	.imageWrapper {
		text-align: center;
	}
	/* Image Shadow */
	.imgShadow.large {
		display: inline-block;
		max-width: 100%;
		vertical-align: bottom;
		position: relative;	
		padding: 17px;
		left: 0;
		margin: 18px -17px 18px -17px;
	}
	.imgShadow.large:before {
		width: 39px;
		height: 39px;
		background: url(/themes/mytheme/images/image-shadow.png) 0 0 no-repeat;
		background-size: 39px auto;
	}
	.retina .imgShadow.large:before {
		background-image: url(/themes/mytheme/images/image-shadow.png);
	}
	.imgShadow.large:after {
		width: 39px;
		height: 39px;
		background: url(/themes/mytheme/images/image-shadow.png) 0 100% no-repeat;
		background-size: 39px auto;
	}
	.retina .imgShadow.large:after {
		background-image: url(/themes/mytheme/images/image-shadow.png);
	}
	
	/* Services Page */
	.ServiceHoursPage #ContentWrapper {
		padding-top: 139px;
		background: url(/themes/mytheme/images/mobile/careadvice.png) 0 0 no-repeat;
		background-size: 122px auto;	
	}
	.retina .ServiceHoursPage #ContentWrapper {
		background-image: url(/themes/mytheme/images/mobile/careadvice.png);
	}
	.ServiceHoursPage #Layout {
		background-position: 0 0;
	}
	.person header {
		padding-bottom: 9px;
		margin-bottom: 6px;	
	}
	
	/* About Page */
	.ContactPage #Content section.contactForm {
		padding-top: 18px;
		
	}
	.person .imgShadow.small {
		width: 169px;
		height: 169px;
		display: block;
		margin: 0 auto;
		left: 0;	
	}
	
	/* Contact Page */
	.ContactPage .typography #Content section p {
		font-size: 14px;	
	}
	.ContactPage .typography .phone h2 {
		font-size: 14px;	
	}
	.ContactPage .typography #Content section.phone p {
		font-size: 20px;	
	}
	.ContactPage .phone div.fax {
		border-top: 1px solid #f48120;
		padding-top: 10px;	
	}
	.ContactPage .phone div.call, .ContactPage .phone div.fax {
		float: none;
		width: auto;	
	}
	.ContactPage .typography .contactForm h1 {
		font-size: 20px;
		margin-bottom: 11px;
	}
	.ContactPage .privacy {
		margin: 6px 0 1em 0;
		text-align: right;
	}
}

/* -------------
Put your layout changes above
These options are ONLY for hiding revealing things, only modify the sizes
MUST keep max and min sizes!
*/
/* Big Desktop Size */
@media only screen and (min-width: 1090px) {
	.bigDesktopHide {
		display: none !important;
	}
	.desktopHide {
		display: none !important;	
	}
}
/* Desktop Size / large tablets */
@media only screen and (min-width: 960px) and (max-width: 1089px) {
	.desktopHide {
		display: none !important;	
	}
}
/* Tablet size / very large phones */
@media only screen and (min-width: 768px) and (max-width: 959px) {
	.tabletHide {
		display: none !important;	
	}
}
/* Mobile */
@media only screen and (max-width: 767px) {
	.mobileHide {
		display: none !important;	
	}
}


/****** FILE: themes/mytheme/css/typography.css *****/
/* Font face example */

/* GENERIC STYLES 
-------------------------------------------- */

.typography {
	font-size: 14px;
}

/* PARAGRAPHS 
-------------------------------------------- */
.typography p { 
 	
}

.typography p strong, .typography p b {
	font-weight: 600;	
}

.typography .small {
	font-size: 10px;	
}

.typography .leadin  {
	font-size: 16px;
	line-height: 22px;
	font-weight: 600;
	color: #0032a0;
}

.typography .large  {
	font-size: 16px;
	line-height: 22px;
	font-weight: 600;
}

.typography .marginbottom {
	margin-bottom: 1em !important
}
.typography .nomargins {
	margin: 0 !important;	
}

.bordertop {
	border-top: 1px solid #68bc49;
	padding-top: 10px;	
}


/* INLINE STYLES
-------------------------------------------- */

/* TABLES
-------------------------------------------- */
.typography table {
	max-width: 100%;
	margin-top: 1em;
}
.typography table td, .typography table th {
	vertical-align: top;
}
.typography table td[valign='bottom'], .typography table th[valign='bottom'] {
	vertical-align: bottom;
}
.typography table td[valign='middle'], .typography table th[valign='middle'] {
	vertical-align: middle;
}
.typography table tr:last-child td p {
	margin-bottom: 0;	
}

/* base styles for tables with borders */
.typography table[border='1'] {
	border: 1px solid #585858;	
	border-collapse: collapse;
}
.typography table[border='1'] td, .typography table[border='1'] th {
	border: 1px solid #585858;	
	padding: 6px;
}
.typography table[border='1'] th {
	background-color: #888888;
	color: #fff;
}
.typography table[border='1'] td p:last-child, .typography table[border='1'] th p:last-child {
	margin-bottom: 0;
}
.typography table[border='1'] tr:nth-child(odd)	{ background-color:#eee; }
.typography table[border='1'] tr:nth-child(even) { background-color:#fff; }

/* QUOTES
-------------------------------------------- */

/* LINKS 
-------------------------------------------- */

.typography a { 
 	text-decoration: none;
	color: #f48120;
}
	.typography a:hover { 
 		text-decoration: underline;
	}
	
	.typography a img {
		border: 0;	
	}


/* LIST STYLES 
-------------------------------------------- */
.typography ul, .typography ol {
	margin-top: 0;
}
.typography ul ul, .typography ol ol {
	margin-bottom: 0;	
}

.typography ul.ticklist {
	list-style: none;
	margin: 0 0 9px 0;
	padding: 0;	
}
.typography ul.ticklist li,
.typography li.ticklist {
	list-style: none;
	display: block;
	padding-left: 21px;
	background: url(/themes/mytheme/images/tick.png) 0 4px no-repeat;
	background-size: 14px 14px;
}
.retina .typography ul.ticklist li,
.retina .typography li.ticklist {
	background-image: url(/themes/mytheme/images/tick-retina.png);
}
		
/* HEADER STYLES 
-------------------------------------------- */

.typography h1 {
	font-size: 32px;
	line-height: 32px;
	font-family: Asap, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-style: italic;
	color: #f48120;
	margin: 3px 0 23px 0;
}
.typography h2 {
	font-size: 28px;
	line-height: 32px;
	font-family: Asap, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-style: italic;
	color: #808285;
	margin: 29px 0 11px 0;
	border-bottom: 1px solid #68bc49;
	padding-bottom: 11px;
}

.typography h3 {
	font-size: 32px;
	line-height: 32px;
	font-family: Asap, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #68bc49;
	margin: 23px 0 19px 0;
}
.typography h4 {
	font-size: 16px;
	line-height: 22px;
	font-family: Asap, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #0032a0;
	margin: 0 0 0 0;
}
.typography h5 {
	font-family: Asap, Arial, Helvetica, sans-serif;
	margin: 0;
}
.typography h6 {
	font-family: Asap, Arial, Helvetica, sans-serif;
	margin: 0;
}

.typography h1 a, .typography h2 a, .typography h3 a, .typography h4 a {
	color: inherit;	
}

/* WYSIWYG EDITOR ALIGNMENT CLASSES 
-------------------------------------------- */
.typography .left {
	text-align: left;
}
.typography .center {
	text-align: center;
}
.typography .right {
	text-align: right;
}

/* IMAGES 
-------------------------------------------- */
.typography img {
   /* border: 5px solid #d7d7d7;*/
   max-width: 100%; /* prevents width being wider than 100% */
   height: auto; /* resets the image height so that it maintains its aspect ratio when width is set */
   /*background: transparent url(../images/ajax-loader.gif) no-repeat center center;*/
}
.typography img.left {
    float: left;
    max-width: 50%;
    margin: 5px 20px 10px 0;
}
.typography img.right {
    float: right;
    max-width: 50%; /* Responsive width */
    margin: 5px 0 10px 20px;
}
.typography img.leftAlone {
    /*float: left;
    margin-right: 100%;
    margin-bottom: 10px;*/
    clear: both;
}
.typography img.center {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 10px;
    clear: both;
}
.typography .captionImage { width: 100%; margin-top: 5px; }
.typography .captionImage img { margin: 0; }
  .typography .captionImage.left {
    float: left;
    margin: 5px 30px 20px 0px;
  }
  .typography .captionImage.right{
    float: right;
    margin: 5px 0 20px 30px;
  }
  .typography .captionImage.left[style],
  .typography .captionImage.right[style] {
    max-width: 50%; /* Overides core width to make responsive */
  }
  .typography .captionImage.left img,
  .typography .captionImage.right img {
    float: none;
    max-width: none;
    width: 100%;
  }
  .typography .captionImage.left img {
    margin-right: -10px;
  }
  .typography .captionImage.right img {
    margin-left: -10px;
  }
  .typography .captionImage.right p {
    margin-left: -10px;
    text-align: left;
    margin-left: -10px;
  }
.typography .captionImage.leftAlone{
  float:none;
  margin: 0 20px 20px 0px;
}
.typography .captionImage.center{
  margin: 0 auto 20px;
}
.typography .captionImage p {
  clear: both;
  margin: 5px 0;
  font-style: italic;
  color: #888;
}

@media only screen and (max-width: 959px) {
	.typography {
		font-size: 12px;	
	}
	
	.typography .leadin, .typography .large  {
		font-size: 14px;
		line-height: 19px;
	}
	
	.bordertop {
		padding-top: 7px;	
	}
	
	.typography ul.ticklist {
		list-style: none;
		margin: 0 0 9px 0;
		padding: 0;	
	}
	.typography ul.ticklist li,
	.typography li.ticklist {
		list-style: none;
		display: block;
		padding-left: 17px;
		background: url(/themes/mytheme/images/mobile/tick.png) 0 5px no-repeat;
		background-size: 12px 12px;
	}
	.retina .typography ul.ticklist li,
	.retina .typography li.ticklist {
		background-image: url(/themes/mytheme/images/mobile/tick.png);
	}
	
	.typography h1 {
		font-size: 20px;
		line-height: 23px;
		margin: 3px 0 23px 0;
	}
	.typography h2 {
		font-size: 20px;
		line-height: 16px;
		margin: 14px 0 5px 0;
		padding-bottom: 11px;
	}
	
	.typography h3 {
		font-size: 30px;
		line-height: 30px;
		margin: 22px 0 18px 0;
	}
	.typography h4 {
		font-size: 14px;
	}
	
}



/****** FILE: themes/mytheme/css/form.css *****/
/** ----------------------------------------------------------
 *
 * This stylesheet includes both generic form styles and 
 *    additional form styles for the User Defined Form Module.
 *
 ** ------------------------------------------------------- */


/* GENERIC FORMS
----------------------------------------------- */

form {
}
div.field {
    margin: 0 0 9px;
	
	/* this prevents 100% wide form elements from breaking wider than their container,
	adjust size of this to match padding and border of input elements */
	padding-right: 28px; 
}
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}
form label {
    margin-bottom: 5px;
}
    form label.left {
        display: block;
    }
	.typography form label.right {
		text-align: left;
    }

form input.text,
form textarea,
form .textajaxuniquetext,   /* Not sure if this is used? */
form select {
    width: 100%;
    padding: 14px 16px;
    background-color: #e6e6e6;
    border: 1px solid #e6e6e6;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
}

form input.text:focus,
form textarea:focus,
form .textajaxuniquetext:focus,
form select:focus {
    outline:none;
}
form input[disabled], form textarea[disabled] {
    background-color: #f7f7f7;
    border: 1px solid #dad9d9;
}
textarea {
    resize: vertical; /* forces text area to be resized vertically only */
	height: 70px;
}


/* Radio and Checkbox */
.field .checkbox, .field .radio {
    float: left; 
    width: 13px; 
    height: 13px; 
    margin-right: 6px; 
    margin-top: 3px;
    padding: 0;
}
    .checkbox label.right,
    .radio label.right {
        float: left;
    }

/* Chris Bolt, Options set field */
.optionset ul {
	list-style: none;
}
.optionset li {
	float: left;
}
.optionset.stacked li {
	float: none;
	clear: both;
}
.stacked {
	clear: left;
	float: none;
}

/* Messages */
.message {
	display: inline-block;
    background-color: #fef4ba;
    padding: 5px 10px;
    border: 1px solid #e8c805;
    border-radius: 3px;
}
    .good {
        background-color: #ecf9d0;
        border-color: #8fbe00;
    }
    .bad, .required {
        background-color: #f9d0d0;
        border-color: #cf0000;
        color: #b80000;
    }


/* ACTIONS */
.Actions {
	text-align: right;
}
    a.btn, .Actions button, .Actions input[type="submit"], .Actions .action {
        display: inline-block;
        margin-top: 5px;
        margin-bottom: 15px;
		font-family: inherit;
		font-size: inherit;
		color: inherit;
		cursor: pointer;
		
		border: 0;
		background: url(/themes/mytheme/images/submit.png) 100% 0 no-repeat;
		background-size: 38px auto;
		line-height: 38px;
		padding: 0 52px 0 0;
    }
	.retina a.btn, .retina .Actions button, .retina .Actions input[type="submit"], .retina .Actions .action {
		background-image: url(/themes/mytheme/images/submit-retina.png);
	}
    a.btn:hover, button, input[type="submit"]:hover, .Actions .action:hover {
        
    }
    a.btn {
        line-height: 18px;
        margin-bottom: 10px;
    }
    a.btn:after {                     /* creates arrow in button */
        content: '\2192';
        padding-left: 10px;
    }
    .ie7 input.action {
        width: 0;                     /* IE table-cell margin fix */
        overflow: visible;
    }
    input.action[class] {             /* IE ignores [class] */
        width: auto;                  /* cancel margin fix for other browsers */
    }

    .ie7 .Actions .action {
        float: left;
    }
    .Actions:after {
        color: #B94A48;
        /*content: "* Indicates a required field";*/
        display: inline-block;
        font-weight: normal;
        margin-top: 9px;
    }
    #MemberLoginForm_LoginForm .Actions:after {
        display: none;
    }


/* AREA SPECIFIC */
    /* LOGIN and FORGOT PASSWORD */
    #Remember {
        min-height: 20px;
    }
    #ForgotPassword {
        clear: left;
    }
    #MemberLoginForm_LostPasswordForm .Actions:after {
        display: none;
    }

    /* Search / Login */
    .header form .middleColumn {
        /* float: none;
        width: 100% !important; */
    }

/* style placeholders */
::-webkit-input-placeholder {
   color:inherit;	
}
:-moz-placeholder {
   color:inherit;	
   opacity: 1; 
}
::-moz-placeholder {
   color:inherit;	 
   opacity: 1; 
}
:-ms-input-placeholder {  
   color:inherit;	 
}
.labelTextFieldInactive {
	color:inherit;	
}

/* Desktop Size / large tablets */
@media only screen and (min-width: 960px) {
	#Form_ContactForm #Name {
		width: 277px;
		padding: 0;
		float: left;
	}
	#Form_ContactForm #Email {
		width: 277px;
		padding: 0;
		float: right;
	}
	#Form_ContactForm #Name input, #Form_ContactForm #Email input {
		width: 249px;
	}
	#Form_ContactForm_Message {
		clear: both;	
	}
	
	/* Footer subscribe */
	#Form_SubscribeForm:before {
		content: "Stay in touch.";
		display: block;
		font-size: 32px;
		line-height: 32px;
		font-family: Asap, Arial, Helvetica, sans-serif;
		font-weight: bold;
		padding: 0 0 4px 0;
	}
	#Form_SubscribeForm fieldset {
		width: 393px;
		float: left;
	}
	#Form_SubscribeForm div.field {
		padding: 0;
		margin: 0;	
	}
	#Form_SubscribeForm_Email {
		background: transparent;
		border: 0;
		width: 393px;
		padding: 7px 0;
		color: #fff;	
		border-bottom: 1px solid #fff;
	}
	#Form_SubscribeForm .Actions {
		float: right;
		margin-top: -5px;
	}
	#Form_SubscribeForm a.btn, #Form_SubscribeForm .Actions button, #Form_SubscribeForm .Actions input[type="submit"], #Form_SubscribeForm .Actions .action {
		
		padding: 0;
		margin: 0;
		width: 45px;
		height: 45px;
		vertical-align: bottom;
		text-indent: -1000px;
		overflow: hidden;
		
		background: url(/themes/mytheme/images/footer-submit.png) 100% 0 no-repeat;
		background-size: 45px;
	}
	.retina #Form_SubscribeForm a.btn, .retina #Form_SubscribeForm .Actions button, .retina #Form_SubscribeForm .Actions input[type="submit"], .retina #Form_SubscribeForm .Actions .action {
		background-image: url(/themes/mytheme/images/footer-submit-retina.png);
	}
}

/* Tablet size / large phones */
@media only screen and (max-width: 959px) {
	div.field {
		margin: 0 0 5px;
		padding-right: 20px;	
	}
	form input.text,
	form textarea,
	form .textajaxuniquetext,   /* Not sure if this is used? */
	form select {
		padding: 9px 9px;
	}
	textarea {
		height: 102px;	
	}
	a.btn, .Actions button, .Actions input[type="submit"], .Actions .action {
		line-height: 25px;
		padding-right: 37px;
		background-size: 25px auto;	
	}
	
	/* Menu Form */
	#Form_TopSubscribeForm {
		border-bottom: 1px solid #fff;	
	}
	#Form_TopSubscribeForm:before {
		content: "Stay in touch.";
		display: block;
		padding-bottom: 7px;
		font-weight: bold;
	}
	#Form_TopSubscribeForm div.field {
		margin: 0;
		padding: 0 30px 0 0;
	}
	#Form_TopSubscribeForm label {
		text-transform: none;
		font-weight: normal;
		font-family: "Open Sans", Arial, Helvetica, sans-serif;	
		font-size: 12px;
		line-height: 14px;
		border-bottom: 1px solid #fff;
		padding-bottom: 16px;
		width: 100%;
		padding-right: 30px;
	}
	#Form_TopSubscribeForm_Email {
		background: transparent;
		border: 0;
		padding: 15px 0 19px 0;
		color: #fff;	
		font-size: 12px;
	}
	#Form_TopSubscribeForm .Actions {
		float: right;
		margin-top: -41px;
	}
	#Form_TopSubscribeForm a.btn, #Form_TopSubscribeForm .Actions button, #Form_TopSubscribeForm .Actions input[type="submit"], #Form_TopSubscribeForm .Actions .action {
		
		padding: 0;
		margin: 0;
		width: 26px;
		height: 26px;
		vertical-align: bottom;
		text-indent: -1000px;
		overflow: hidden;
		
		background: url(/themes/mytheme/images/mobile/menu-submit.png) 100% 0 no-repeat;
		background-size: 26px;
	}
}

