/* ==========================================================================
   Author's custom styles
   ========================================================================== */
* { box-sizing: border-box; }

html,
button,
input,
select,
textarea {
    color: #222;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #595346;
  font-size: 13px;
  background: url(../images/site-design/main-bg.jpg) repeat;
	}

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

a {
	color: #C84E05;
	text-decoration: none;
	}

	a:hover {
		color: #C84E05;
		text-decoration: underline;
		}

a.pdf {
	display:inline;
	padding-right:28px;
	background-image:url(../images/icons/icon-pdf.png);
	background-repeat:no-repeat;
	background-position: right center;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

.left {float: left;}

.right {float: right;}

.editable img {
	margin:0 10px 10px 10px;
	max-width:100% !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Georgia, serif;
	margin-top: 0;
	margin-bottom: 15px;
	font-weight: normal;
	color: #766951;
	line-height: 100%;
	}

	h1 {font-size: 32px;}
	h2 {font-size: 28px; color: #224D7D;}
	h3 {font-size: 24px;}
	h4 {font-size: 20px; color: #224D7D;}

@media (max-width: 968px) {
		h1, h2, h3, h4, h5, h6 {line-height: 110%;}
	}

/* ==========================================================================
   Tables
   ========================================================================== */

table { max-width:100% !important; }
table td { vertical-align: top; }
table.zebra tr:nth-of-type(odd) { background-color: #f1f1f1; }

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

form, fieldset {
	border: 0;
    margin: 0 0 20px 0;
    padding: 0;
}

form span.required { color:#FF0000; }

input[type="text"], input[type="password"], input[type="email"], textarea, select {
	box-sizing:border-box;
	border: 1px solid #ccc;
	padding: 4px;
	outline: none;
	border-radius: 2px;
	color: #777;
	margin: 0;
	width: 300px;
	max-width: 100%;
	display: block;
	margin-bottom: 10px;
	background: #fff;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, textarea:focus {
	border: 1px solid #aaa;
	color: #444;
	box-shadow:  0 0 3px rgba(0, 0, 0, .2);
}

input.phone {
	width:30px;
	float:left;
	margin-right:10px;
}

textarea {
	min-height: 60px;
	resize: vertical;
}

input[type="text"].full-width, input[type="password"].full-width, input[type="email"].full-width, textarea.full-width, select.full-width {
	width: 100%;
}

input[type="checkbox"] {
	display: inline;
}

label, legend {
	display: block;
	font-weight: bold;
	font-size: 13px;
	margin:0 0 5px 0;
	width:100% !important;
}

label span, legend span {
	font-weight: normal;
	font-size: 13px;
	color: #444;
}

@media (max-width: 320px) {
	input[type="text"] {width: 250px;}
	}

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

a.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
	background-color: #194679;
	border: 1px solid #D7D7D7;
	padding: 5px 12px;
	border-radius: 3px;
	color: #FFF;
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	margin-bottom: 20px;
	line-height: 21px;
}
a.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover,
a.button:active, button:active, input[type="submit"]:active, input[type="reset"]:active, input[type="button"]:active {
	background-color: #285382;
}
a.button.full-width, button.full-width, input[type="submit"].full-width, input[type="reset"].full-width, input[type="button"].full-width {
	width: 100%;
	padding-left: 0 !important;
	padding-right: 0 !important;
	text-align: center;
}

.formerror {
	background-color: #FFCCCC;
	border: 1px solid red;
	margin-bottom: 5px;
	padding: 5px;
	width: auto;
}


/* ==========================================================================
   Header
   ========================================================================== */

.site-header-wrapper {
	width: 100%;
	height: 194px;
	background: url(../images/site-design/top-bg.png) repeat-x;
	position: relative;
	color: #FFF;
	z-index: 10;
	}

	.site-header {
		background: url(../images/site-design/header-bg.png) center 105px no-repeat;
		padding: 0;
		}

		.site-header .header-top {padding: 0 20px;}

	@media (max-width: 1024px) {
		.site-header {background-size: 100% !important;}
		}

	@media (max-width: 767px) {
		.site-header-wrapper {
			background: #194679;
			height: 276px;
			}

		.site-header {padding: 0 10px;}

		.site-header .header-top {padding: 0;}
		}

	@media (max-width: 320px) {
		.site-header-wrapper {height: 250px;}
		}


/* ==============
   Logo
   ============ */
#logo,
#logo h1,
#logo h2,
#logo h3,
#logo h4,
#logo h5,
#logo h6 {
	display:block;
	margin:0;
	padding:0;
}

#logo a {
	overflow: hidden;
	display: block;
	outline: none;
	margin: 40px 0 0;
	padding: 0;
	width: 500px;
	max-width: 100%;
	height: 79px;
	background: url(../images/site-design/logo.png) no-repeat 0 0;
	text-indent: -9999px;
	background-size: 100%;
	}

@media (max-width: 767px) {
	#logo a {
		margin: 30px auto 20px;
		height: auto;
		}
	}

/* ==============
   Top Nav
   ============ */

ul.top-nav {
	float: right;
	padding: 0;
	margin: 5px 0 0;
	}

	ul.top-nav li {
		display: inline;
		border-left: 1px #CCC solid;
		margin-left: 7px;
		padding-left: 10px;
		font-size: 12px;
		}

	ul.top-nav li:first-child {
		border-left: 0;
		margin-left: 0;
		padding-left: 0;
		}

		ul.top-nav a {
			color: #FFF;
			text-decoration: none;
			}

			ul.top-nav a:hover {text-decoration: underline;}

	@media (max-width: 767px) {
		ul.top-nav {
			float: none;
			text-align: center;
			}
		}

/* ==============
   Search Form
   ============ */

.site-header form {
	clear: right;
	float: right;
	margin: 10px 0 0;
	}

	.site-header form p {
		font-size: 18px;
		font-family: Georgia, serif;
		margin-bottom: 10px;
		}

	.site-header form p span {
		font-family: Arial, sans-serif;
		font-size: 20px;
		}

	.site-header form input[type="text"] {
		float: left;
		width: 265px;
		max-width: 100%;
		border: 1px #95A9BF solid;
		}

	.site-header form input[type="submit"] {
		width: 21px;
		height: 21px;
		background: url(../images/site-design/search-button.png) no-repeat;
		border: 0;
		float: left;
		margin: 2px 0 0 10px;
		cursor: pointer;
		}

	@media (max-width: 980px) {
		.site-header form p {font-size: 16px;}

		.site-header form p span {font-size: 18px;}

		.site-header form input[type="text"] {width: 235px;}
		}

	@media (max-width: 767px) {
		.site-header form {
			text-align: center;
			float: none;
			}

		.site-header form p {font-size: 15px;}

		.site-header form p span {font-size: 16px;}

		.site-header form p span a {color: #FFF;}

		.site-header form input[type="text"] {
			width: 225px !important;
			float: none;
			display: inline;
			}

		.site-header form input[type="submit"] {
			float: none;
			display; inline;
			margin: -10px 0 0 10px;
			}
		}

/* ==============
   Nav Main
   ============ */

.nav-main {margin: 20px 0 0;}

	.nav-main ul {
		height: 55px;
		margin: 0;
		padding: 0;
		list-style: none outside none;
		display: none;
		text-align: center;
		}

	.nav-main select {
		display: block;
		width: 100%;
		}

	@media (min-width: 768px) {
		.nav-main ul { display: block; }
		.nav-main select { display: none; }
		}

		.nav-main ul li {
			display: block;
			float: left;
			margin: 10px 0 0;
			padding: 0;
			height: 25px;
			border-left: 1px #8F9194 solid;
			position: relative;
			}

			.nav-main ul li:first-child {border-left: 0;}

			.nav-main ul li a {
				overflow: hidden;
				display: block;
				outline: none;
				margin: 0;
				padding: 2px 0 0;
				height: 40px;
				color: #FFF;
				font-size: 19px;
				text-decoration: none;
				}

				.nav-main ul li a:hover,
				body.about-us a#about-us-nav,
				body.find-a-provider a#find-a-provider-nav,
				body.office-locations a#office-locations-nav,
				body.medical-services a#medical-services-nav,
				body.for-patients a#for-patients-nav,
				body.patient-portal a#patient-portal-nav,
				.selected {border-bottom: 5px #F0EFDF solid;}

	@media (max-width: 1200px) {
		.nav-main ul li a {font-size: 17px;}
		}

	@media (max-width: 980px) {
		.nav-main ul li a {font-size: 15px;}
		}

	@media (max-width: 767px) {
		.nav-main {margin: 10px 0 0 0;}
		}

/* ==============
   Dropdown
   ============ */

	.nav-main ul li ul {
		position: absolute;
		height: auto;
		width: 100%;
		left: 0;
		display: none;
		margin: 0;
		padding: 10px 15px;
		z-index: 10;
		box-shadow: 0 2px 2px 1px #555;
		background: #F0EFDF;
		}

		.nav-main ul li ul li {
			display: block;
			height: auto;
			padding-top: 5px;
			margin-top: 5px;
			border-top: 1px #AFAE9A solid;
			border-left: 0;
			text-align; center;
			float: none;
			}

		.nav-main ul li ul li:first-child {
			margin-top: 0;
			border-top: 0;
			}

			.nav-main ul li ul li a {
				font-size: 14px;
				display: block;
				color: #C84E05;
				padding: 0;
				height: auto;
				}

				.nav-main ul li ul li a:hover {
				background: #C84E05;
				color: #FFF !important;
				text-decoration: none;
				border: 0;
				}

	@media (max-width: 980px) {
		.nav-main ul li:hover ul a {
			font-size: 12px;
			font-weight: normal;
			border: 0;
			}
		}

/* ==========================================================================
   Container
   ========================================================================== */

.content {
	background: #FFF;
	border-radius: 5px;
	box-shadow: 0 0 5px #000;
	position: relative;
	z-index: 9;
	margin: -3px 0 30px;
	}

	.content-main {
		padding: 20px 20px 40px 20px;
		background: url(../images/site-design/footer-shadow.png) bottom center no-repeat;
		}

	body.error-404 .content .content {box-shadow: 0 0;}

	@media (min-width: 768px) and (max-width: 1024px) {
		.content {z-index: 2;}
		}

	@media (max-width: 767px) {
		.content {
			border-radius: 0;
			box-shadow: 0 0;
			margin: 0 0 30px;
			}

		.content-main {padding: 10px 10px 20px 10px;}
		}

/* ==========================================================================
   Homepage
   ========================================================================== */

body.home .content h2 {color: #766951;}

/* ==============
	Slider
	=========== */

.hero-unit-wrapper {
	position: relative;
	overflow: hidden;
	background-size: auto 100%;
	}

/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  { outline: none; }
.slides,
.flex-control-nav,
.flex-direction-nav { margin: 0; padding: 0; list-style: none; }

/* FlexSlider Necessary Styles */
.flexslider { margin: 0; padding: 0; }
.flexslider .slides > li { display: none; -webkit-backface-visibility: hidden; }
.flexslider .slides img { width: 100%; display: block; }
.flex-pauseplay span { text-transform: capitalize; }

/* Clearfix for the .slides element */
.slides:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
html[xmlns] .slides { display: block; }
* html .slides { height: 1%; }

/* No JavaScript Fallback */
.no-js .slides > li:first-child { display: block; }

/* FlexSlider Default Theme */
.flexslider { margin:-5px 0 0; padding: 0 20px; position: relative; zoom: 1; }
.flex-viewport { max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease; }
.loading .flex-viewport { max-height: 300px ;}
.flexslider .slides { zoom: 1; }

.slide-text {
	position: absolute;
	z-index: 5;
	height: 100%;
	width: 100%;
	}

/* outer, middle are used for positioning slide text vertically */
.slide-text .outer {
	display:table;
	height:100%;
	overflow:hidden;
	}

.slide-text .middle {
	display:table-cell;
	vertical-align:middle;
	}

.slide-text h1,
.slide-text h2,
.slide-text h3,
.slide-text h4,
.slide-text h5,
.slide-text h6 {
	margin: 0;
	padding: 0;
	color: #022E61;
	line-height: 1;
	font-weight: normal;
	font-family: Georgia, serif;
	font-size: 35px;
	letter-spacing: -0.06em;
	}

.slide-text p {
	color: #363636;
	font-size: 16px;
	margin: 20px 0 30px;
	}

.slide-text a {
	color: #FFF;
	background: #C84E05;
	padding: 10px 20px;
	border-radius: 3px;
	box-shadow: inset 0 0 2px #555;
	font-family: Georgia, serif;
	font-size: 16px;
	text-decoration: none;
	}

	.slide-text a:hover {background: #C4672F;}

.flex-control-nav {
	position: absolute;
	top: 305px;
	left: 20px;
	z-index: 10;
	}

	.flex-control-nav li {
		display: inline-block;
		float: left;
		margin-right: 5px;
		}

		.flex-control-nav li a {
			width: 18px;
			height: 18px;
			background: #BDBC9F;
			border-radius: 10px;
			display: block;
			cursor: pointer;
			text-indent: -99999px;
			overflow: hidden;
			}

			.flex-control-nav li a:hover,
			.flex-active {background: #C84E05 !important;}

@media (max-width: 1200px) {
	/* Portrait tablet to landscape and desktop */

	.slide-text h2 {font-size: 30px;}

	.slide-text p {
		font-size:14px;
		margin: 15px 0;
		}

	.slide-text a {
		padding: 5px 10px;
		font-size: 14px;
		}

	.flex-control-nav {top: 240px;}
	}


@media (max-width: 980px) {
	/* tablet portrait and mobile only */

	.slide-text h2 {font-size: 22px;}

	.slide-text p {
		font-size:12px;
		margin: 10px 0;
		}

	.slide-text a {
		padding: 5px;
		font-size: 13px;
		}

	.flex-control-nav {
		top: 175px;
		left: 640px;
		}
	}

/* ==============
   Family Resouces/Video Library
   ============ */

#resources-wrap {
	width: 100%;
	background-image: linear-gradient(bottom, #EBE9DF 38%, #FFFFFF 68%);
	background-image: -o-linear-gradient(bottom, #EBE9DF 38%, #FFFFFF 68%);
	background-image: -moz-linear-gradient(bottom, #EBE9DF 38%, #FFFFFF 68%);
	background-image: -webkit-linear-gradient(bottom, #EBE9DF 38%, #FFFFFF 68%);
	background-image: -ms-linear-gradient(bottom, #EBE9DF 38%, #FFFFFF 68%);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.38, #EBE9DF), color-stop(0.68, #FFFFFF));
	border-radius: 5px;
	border: 1px #DBD9CA solid;
	padding: 20px;
	margin-bottom: 30px;
	}

	#resources-wrap h3 {
		font-size: 22px;
		color: #6b7986
		}

		#resources-wrap h3 a,
		body.home .content h2 a{
			float: right;
			font-size: 16px;
			}

	#resources-wrap ul {
		padding-left: 12px;
		color: #C84E05;
		}

		#resources-wrap ul li {margin-bottom: 7px;}

	@media (max-width: 767px) {
		#resources-wrap {
			background: #F2F0E5;
			border: 0;
			border-radius: 0;
			}
		}

/* ==============
   Callouts
   ============ */

ul.callouts {
	padding: 20px 0 0;
	margin-bottom: 30px;
	}

	ul.callouts li {
		margin-top: 10px;
		padding-top: 10px;
		border-top: 2px #D7D7D7 solid;
		list-style-type: none;
		}

	ul.callouts li:first-child {
		margin-top: 0;
		padding-top: 0;
		border-top: 0;
		}

		ul.callouts li a {
			width: 100%;
			height: 71px;
			font-family: Georgia, serif;
			color: #8E9DAC;
			font-size: 31px;
			padding: 0 0 0 110px;
			display: block;
			line-height: 100%
			}

			ul.callouts li a#find-a-provider {background: url(../images/site-design/find-a-provider.png) 0 0 no-repeat;}
			ul.callouts li a#patient-reviews {background: url(../images/site-design/patient-reviews.png) 0 0 no-repeat;}
			ul.callouts li a#pay-bill {background: url(../images/site-design/pay-bill.png) 0 0 no-repeat;}
			ul.callouts li a#vid-library {background: url(../images/site-design/video-library.png) 0 0 no-repeat;}

				ul.callouts li a#find-a-provider:hover,
				ul.callouts li a#patient-reviews:hover,
				ul.callouts li a#pay-bill:hover,
				ul.callouts li a#vid-library:hover {
					background-position: 0 -71px;
					color: #C84E05;
					text-decoration: none;
					}

		@media (min-width: 768px) and (max-width: 980px) {
			ul.callouts li a {font-size: 25px;}
			}

/* ==============
   News Headlines
   ============ */

body.home .latest-news a  {
	display: block;
	font-family: Georgia, serif;
	font-size: 16px;
	}

	@media (max-width: 767px) {
		.welcome-news {display: none;}
		}

/* ==========================================================================
   Internal
   ========================================================================== */

body#internal h2,
body#internal h3,
body#internal h4,
body#internal h5,
body#internal h6 {
	margin-top: 20px;
	line-height: 100%;
	}

/* ==============
   Page Heading
   ============ */

.heading {
	height: 190px;
	position: relative;
	z-index: 2;
	margin: -5px auto 0 auto;
	padding: 100px 20px 0 20px;
	font-family: Georgia, serif;
	}

	.heading .title {
		font-size: 40px;
		color: #022E61;
		line-height: 100%;
		}

	.heading p {
		font-size: 24px;
		color: #686864;
		margin: 10px 0 0;
		}

	body.about-us .heading {background: url(../images/site-design/headings/about-us.png) no-repeat;}
	body.find-a-provider .heading {background: url(../images/site-design/headings/about-us.png) no-repeat;}
	body.office-locations .heading {background: url(../images/site-design/headings/about-us.png) no-repeat;}
	body.medical-services .heading {background: url(../images/site-design/headings/about-us.png) no-repeat;}
	body.for-patients .heading {background: url(../images/site-design/headings/about-us.png) no-repeat;}
	body.patient-portal .heading {background: url(../images/site-design/headings/about-us.png) no-repeat;}
	body.news .heading {background: url(../images/site-design/headings/about-us.png) no-repeat;}
	body.careers .heading {background: url(../images/site-design/headings/about-us.png) no-repeat;}
	body.for-physicians .heading {background: url(../images/site-design/headings/about-us.png) no-repeat;}
	body.contact-us .heading {background: url(../images/site-design/headings/about-us.png) no-repeat;}
	body.privacy-policy .heading {background: url(../images/site-design/headings/about-us.png) no-repeat;}
	body.search-results .heading {background: url(../images/site-design/headings/about-us.png) no-repeat;}
	body.error-404 .heading {background: url(../images/site-design/headings/about-us.png) no-repeat;}

	.heading {background-size: cover !important;}

	@media (max-width: 1024px) {
		.heading {
			background: background-size: cover !important;
			height: auto;
			padding: 20px;
			}
		}


	@media (max-width: 767px) {
		.heading {
			background: none !important;
			height: auto;
			padding: 20px 10px 0 10px;
			margin: 0;
			}

		.heading p {margin-bottom: 20px;}
		}

/* ==============
   In This Section
   ============ */

.in-this-section {
	width: 100%;
	background: #EBE9DF;
	background-image: linear-gradient(bottom, #EBE9DF 38%, #FFFFFF 68%);
	background-image: -o-linear-gradient(bottom, #EBE9DF 38%, #FFFFFF 68%);
	background-image: -moz-linear-gradient(bottom, #EBE9DF 38%, #FFFFFF 68%);
	background-image: -webkit-linear-gradient(bottom, #EBE9DF 38%, #FFFFFF 68%);
	background-image: -ms-linear-gradient(bottom, #EBE9DF 38%, #FFFFFF 68%);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.38, #EBE9DF), color-stop(0.68, #FFFFFF));
	border-radius: 5px;
	border: 1px #DBD9CA solid;
	padding: 20px;
	margin-bottom: 30px;
	}

	.in-this-section h6 {
		font-size: 26px;
		font-family: Georgia, serif;
		color: #595346;
		margin-top: 0 !important;
		}

	.in-this-section ul {
		display: none;
		padding: 0;
		}

		.in-this-section ul li {
			padding: 7px 0 0 7px;
			margin-top: 7px;
			border-top: 1px #D2D0C7 solid;
			list-style-type: none;
			}

		.in-this-section ul li:first-child {
			margin-top: 0;
			border: 0;
			}

			.in-this-section ul li a {
				font-size: 16px;
				display: block;
				}

				.in-this-section ul li ul li {
					padding: 7px 0 0 14px;
					margin: 7px 0 0 -7px !important;
					border-top: 1px #D2D0C7 solid !important;
					list-style-type: none;
					}

					.in-this-section ul li ul li:before {
						content: "\00BB";
						margin-right: 7px;
						float: left;
						color: #C84E05;
						}

	.in-this-section select {
		display: block;
		width: 100%;
		}

	@media (min-width: 768px) {
		.in-this-section ul { display: block; }
		.in-this-section select { display: none; }
		}


/* ==============
   Practis Driving Directions Widget
   ============ */

#driving_directions {
	width: 100%;
	padding: 0 8px;
	background-color: #f9f9f9;
	border: 1px solid #dddddd;
	border-radius: 5px;
	}

	#driving_directions h1,
	#driving_directions h2,
	#driving_directions h3,
	#driving_directions h4,
	#driving_directions h5,
	#driving_directions h6 {
		margin: 10px 0 0 !important;
		padding: 10px 0;
		text-align: center;
		}
	#driving_directions p { margin:0; }

	#driving_directions form { margin:0; }

		#driving_directions input[type="text"],
		#driving_directions select { width: 100%; }

	@media (max-width: 767px) {
			#driving_directions h2 {font-size: 24px;}
		}

/* ==============
   Location/Provider Directory
   ============ */

.directory-search {
	overflow: auto;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ACACAC;
	}

.directory-search #text {
    border-right: 1px solid #ACACAC;
    float: left;
    padding: 0 5px;
	}

.directory-search form {padding-top: 20px;}

	.directory-search form div {overflow: auto;}

		.directory-search form .input label {
			float: left;
			width: 20% !important;
			clear: left;
			}

		.directory-search form .input input[type="text"] {
			float: left;
			width: 70%;
			padding: 5px;
			display: inline;
			}

		.directory-search form .input select {
			width: 54%;
			float: left;
			}

		.directory-search form .input input[type="submit"] {
			margin: 0 0 0 10px;
			float: left;
			}

body.office-locations a.button {margin-right: 15px;}

ul#location_listing,
ul#location_providers {padding: 0;}

ul#location_listing li,
ul#location_providers li {list-style-type: none;}

@media (max-width: 1024px) {
	.directory-search form .input label {font-size: 12px;}
	}

@media (max-width: 768px) {
	.directory-search form .input select {
		width: 70%;
		}

	.directory-search form .input input[type="submit"] {
		margin: 0 0 0 20%;
		float: none;
		clear: both;
		}
	}

@media (max-width: 767px) {
	.directory-search #text {border: 0;}

	.directory-search form {clear: both;}

	.directory-search form div {overflow: visible;}

	.image {text-align: center;}
	}

/* ==============
   Job Application Form
   ============ */

#mobile-statement,
td#mobile-accept {display: none;}

@media (max-width: 767px) {
	#mobile-statement,
	td#mobile-accept {display: block;}

	#mobile-statement {margin-bottom: 20px;}

	td#regular-accept {display: none;}
	}

/* ==============
   Blog
   ============ */

ol.commentlist {
    list-style-type: none !important;
    padding-left: 0 !important;
}

	ol.commentlist li {
		padding: 5px !important;
		overflow: auto;
		}

	ol.commentlist li:nth-child(even) {background: #EFEDE0;}

		.reply {
			color: #555555;
			float: right;
			font-size: 12px;
			}

textarea#comment {width: 100% !important;}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
	background: #637789;
	color: #FFF;
	padding: 20px 20px 30px 20px;
	border-radius: 0 0 5px 5px;
	}

	footer h1,
	footer h2,
	footer h3,
	footer h4,
	footer h5,
	footer h6 {
		color: #FFF;
		font-size: 22px;
		margin-top: 0 !important;
		}

	footer a,
	footer a:hover {color: #FFF;}

	.footer-left ul {
		margin: 0 0 40px;
		padding: 0;
		}

		.footer-left ul li {
			display: inline;
			margin: 0 10px 0 0;
			line-height: 200%;
			}

	.footer-right ul {padding: 0;}

		.footer-right ul li {
			display: inline;
			float: left;
			list-style-type: none;
			width: 50%;
			margin-bottom: 10px;
			}

	@media (max-width: 767px) {
		footer {border-radius: 0;}

		.footer-left ul,
		.footer-right {display: none !important;}
		}

    /* Reset box-sizing an entire region */
    .reset-box-sizing, .reset-box-sizing *, .reset-box-sizing *:before, .reset-box-sizing *:after {
      -webkit-box-sizing: content-box;
      -moz-box-sizing: content-box;
      box-sizing: content-box;
    }

    /* Reset image-sizing an entire region */
    .reset-image-sizing, .reset-image-sizing *, .reset-image-sizing *:before, .reset-image-sizing *:after {
      max-width: none!important;
    }

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    * { background: transparent !important; color: #000 !important; box-shadow:none !important; text-shadow: none !important; }
    a, a:visited { text-decoration: underline; }
    a[href]:after { content: " (" attr(href) ")"; }
    abbr[title]:after { content: " (" attr(title) ")"; }
    .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
    pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
    thead { display: table-header-group; }
    tr, img { page-break-inside: avoid; }
    img { max-width: 100% !important; }
    @page { margin: 0.5cm; }
    p, h2, h3 { orphans: 3; widows: 3; }
    h2, h3 { page-break-after: avoid; }
}
