/* BEGIN - CSS Reset ******************************/
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,font,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,
dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td
{border:0;font-family:inherit;font-size:100%;font-style:inherit;font-weight:inherit;outline:0;vertical-align:baseline;margin:0;padding:0;}
:focus{outline:0;}body{background:#fff;line-height:1;}ol,ul{list-style:none;margin:0;padding:0;}table{border-collapse:separate;border-spacing:0;}
caption,th,td{font-weight:400;text-align:left;}blockquote:before,blockquote:after,q:before,q:after{content:"";}a img{border:0;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
/* END - CSS Reset */

/* BEGIN - Global ******************************/

html, body { height: 100%; }

body {
	font: normal 15px Arial, Helvetica, sans-serif;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	line-height: 1.7em;
}

/* Responsive Text Sizing */
@media screen and (max-width: 800px) {
	body { font-size: 1.05em; }
}

@media screen and (max-width: 500px) {
	body { font-size: 1.1em; }
}

/* Text Elements */
h1, h2, h3, h4, h5, h6 { font-weight: bold; }

h1 { font-size: 2em;   margin: 0 0 0.7em 0; }
h2 { font-size: 1.8em; margin: 0 0 0.7em 0; }
h3 { font-size: 1.6em; margin: 0 0 0.7em 0; }
h4 { font-size: 1.4em; margin: 0 0 0.7em 0; }
h5 { font-size: 1.2em; margin: 0 0 0.7em 0; }
h6 { font-size: 1em;   margin: 0 0 0.7em 0; }	

p {  font-size: 1em;   margin: 0 0 1em 0; }

img { max-width: 100% !important; height: auto !important; }

strong, b { font-weight: bold; }
cite, em, i { font-style: italic; }

/* Lists */
ul, ol { margin-bottom: 1em; padding-left: 3em; }
ul { list-style: disc; }
ol { list-style: decimal; }
ol ol { list-style: upper-alpha; }
ol ol ol { list-style: lower-roman; }
ol ol ol ol { list-style: lower-alpha; }
ul ul, ol ol, ul ol, ol ul { margin-bottom: 0; }

blockquote {
	margin-left: 1em;
	margin-bottom: 1em;
	padding-left: 1em;
	border-left: .06em solid #ccc;
	border-left: .06em solid rgba(0,0,0,0.1);
	font-family: Georgia, "Bitstream Charter", serif;
	font-style: italic;
	font-weight: normal;
}

/* Links */
a { text-decoration: none; }

a:focus,
a:active,
a:hover {
	text-decoration: underline;
}


.hidden, #print-header, #print-footer {
	display: none;
}

.bold {
	font-weight: bold;
}

.clear {
	clear: both;
}


.alignleft { 
	float: left;
	margin-bottom: 25px;
	margin-right: 25px;
}

.aligncenter { 
	margin-bottom: 25px;
	margin-left: auto;
	margin-right: auto;
	clear: both;
	display: block;
}

.alignright  { 
	float: right;
	margin-bottom: 25px;
	margin-left: 25px;
}

/* END - Global */

/* BEGIN - Primary Navigation ******************************/

#primary-nav .menu-bar {
	display: none;
	margin: 0;
	text-align: center;
	cursor: pointer;
	padding: 8px 25px;
}

#primary-nav .menu-bar.dark-icon:before {
	content: " ";
	background: url(../images/icon-sprite.png) no-repeat;
	background-position: -581px 0;
	width: 19px;
	height: 13px;
	margin-right: 8px;
	position: relative;
	display: inline-block;
}	

#primary-nav .menu-bar.light-icon:before {
	content: " ";
	background: url(../images/icon-sprite.png) no-repeat;
	background-position: -558px 0;
	width: 19px;
	height: 13px;
	margin-right: 8px;
	position: relative;
	display: inline-block;
}	

#primary-nav .menu {
	font-size: 0px;
	display: table;
	width: 100%;
}

#primary-nav .menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#primary-nav .menu li {
	padding: 0;
	margin: 0;
}

#primary-nav .menu li a:hover {
	text-decoration: none;
}


/* first level navigation */
#primary-nav .menu > li {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	position: relative;
	cursor: pointer;
}

#primary-nav .menu > li > a {
	display: block;
	height: 100%;
	font-size: 16px;
	line-height: 1em;
}

/* second level navigation */
#primary-nav .menu > li > div {
	position: relative;
}

#primary-nav .menu > li > div > ul {
	position: absolute;
	top: 100%;
	margin-top: 1px;
	left: -2px;
	text-align: left;
	min-width: 300px;
	z-index: 1000;
	background: #fff;
	border: 1px solid #bbb;
	border-top: 0;
	display: none;
}

#primary-nav .menu li > div > ul > li {
	position: relative;
}

#primary-nav .menu li > div > ul > li > a {
	display: block;
	font-size: 16px;
	padding: 5px 15px;
	border-bottom: 1px solid #bbb;
}

#primary-nav .menu li > div > ul > li.last > a {
	border-bottom: 0;
} 

#primary-nav .menu li > div > ul > li.last.has-submenu > a {
	border-bottom: 1px solid #bbb;
} 

#primary-nav .menu li > div > ul > li.has-submenu > a {
	background: rgba(0,0,0,0.2);
	padding: 0 15px;
	line-height: 1.4em;
}


/* third level navigation */

#primary-nav .menu > li > div > ul > li > div > ul {
	background: rgba(0,0,0,0.1);
	border-bottom: 1px solid #bbb;
}

#primary-nav .menu > li > div > ul > li.last.has-submenu > div > ul {
	border-bottom: 0;
}

#primary-nav .menu > li > div > ul > li > div > ul > li > a {
	display: block;
	font-size: 14px;
	padding: 0 15px;
	border-bottom: 1px solid #ccc;
}

#primary-nav .menu > li > div > ul > li > div > ul > li > a:before {
	content: "‣";
	font-family: 'Arial Unicode MS', Arial, sans-serif;
	font-size: 26px;
	line-height: 14px;
	margin-right: 10px;
	position: relative;
	top: 5px;
	text-decoration: none;
}

/* navigation hover rollouts */
html.not-touch #primary-nav .menu > li:hover > div > ul,
html.not-touch #primary-nav .menu > div > ul:hover {
	display: block;
}

#primary-nav .menu ul.display {
	display: block;
}

/* END - Primary Navigation */


/* BEGIN - Primary Mobile Navigation ******************************/
html.mobile-nav #primary-nav .menu-bar {
	display: block;
}

html.mobile-nav #primary-nav .menu {
	text-align: center;
	display: block;
	display: none;
}

html.mobile-nav #primary-nav .menu > li {
	display: block;
	border: none;
}

html.mobile-nav #primary-nav .menu > li > a {
	display: block;
}

html.mobile-nav #primary-nav .menu > li > div > ul {
	position: absolute;
	width: 100%;
	display: none;
	text-align: center;
}

html.mobile-nav #primary-nav .menu > li > div > ul > li > div > ul > li > a:before {
	content: '';
	margin: 0;
}

/* shows second level mobile nav on hover */
html.not-touch.mobile-nav #primary-nav .menu > li:hover > div > ul,
html.not-touch.mobile-nav #primary-nav .menu li > div > ul:hover,
html.mobile-nav #primary-nav .menu div > ul.display  {
	visibility: visible;
	opacity: 1.0;
	display: block;
}

/* END - Primary Mobile Navigation */


/* BEGIN - Secondary Navigation ******************************/

@media screen and (max-width: 500px) {
	#secondary-nav-wrapper {
		display: none;
	}
}

#secondary-nav-container {
	text-align: right;
}

#secondary-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

#secondary-menu li {
	display: inline-block;
	padding-left: 20px;
}

#secondary-menu li ul {
	display: none;
}

/* END - Secondary Navigation */


/* BEGIN - Payment Icons ******************************/

.payment-icons span {
	background-image: url(../images/icon-sprite.png);
	background-repeat: no-repeat;
	width: 41px;
	height: 26px;
	display: inline-block;
}

.payment-icons .visa 					{ background-position: -252px -1px; }
.payment-icons .mastercard 			{ background-position: -299px -1px; }
.payment-icons .discover 				{ background-position: -346px -1px; }
.payment-icons .american-express 	{ background-position: -395px -1px; }
.payment-icons .paypal				 	{ background-position: -441px -1px; }

/* END - Payment Icons */



/* BEGIN - Social Icons ******************************/

.social-icons {
	display: inline-block;
}


.social-icons a{
	display: inline-block;
}

.social-icons .icon {
	background: url(../images/icon-sprite.png) no-repeat;	
	width: 28px;
	height: 28px;
	margin-right: 2px;
	display: inline-block;
}

.social-icons a:first-child { margin-left: 0; }

.social-icons .facebook 		{ background-position: 0 0; }
.social-icons .linked-in 		{ background-position: -36px 0; }
.social-icons .twitter 			{ background-position: -72px 0; }
.social-icons .google-plus 	{ background-position: -108px 0; }
.social-icons .youtube 			{ background-position: -144px 0; }
.social-icons .rss 				{ background-position: -180px 0; }
.social-icons .avvo	 			{ background-position: -216px 0; }

/* END - Social Icons */



/* BEGIN - Other Icons ******************************/

.resume, .vcard,
.resume:hover, .vcard:hover {
	text-decoration: none;
}

.vcard-icon {
	background: url(../images/icon-sprite.png) no-repeat;	
	background-position: -487px 0;
	width: 38px;
	height: 28px;
	margin-right: 6px;
	display: inline-block;
}

.resume-icon {
	background: url(../images/icon-sprite.png) no-repeat;	
	background-position: -532px 0;
	width: 21px;
	height: 28px;
	margin-right: 6px;
	display: inline-block;
}

.vcard .label,
.resume .label {
	position: relative;
	top: -8px;
}

/* END - Other Icons */



/* BEGIN - Breadcrumbs **********************************************/

#breadcrumbs {
	padding-bottom: 0.7em;
	width: 100%;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	margin: 0 0 50px;
}

#breadcrumbs > span {
	display: inline-block;
}

#breadcrumbs > span.delimiter {
	margin: 0 5px;
}

@media screen and (max-width: 700px) {
	#breadcrumbs {
		display: none;
	}
}

/* END - Breadcrumbs */

/* BEGIN - Page Navigation **********************************************/

.page-navigation {
	margin: 50px 0 25px 0;
}

.page-navigation a,
.page-navigation span {
	display: inline-block;
	background: rgba(0,0,0,0.1);
	height: 35px;
	line-height: 36px;
	padding: 0 15px;
	vertical-align: middle;
	text-align: center;
	margin-bottom: 25px;
	font-size: .95em;
}

.page-navigation .page-numbers {
	width: 35px;
	padding: 0;
}

.page-navigation .page-numbers.current {
	background: rgba(0,0,0,0.4);
}

.page-navigation .page-numbers.next,
.page-navigation .page-numbers.prev {
	width: auto;
	padding: 0 15px;
}

.page-navigation .current-page-num {
	margin-right: 35px;
}

.page-navigation .num-container {
	background: none;
	padding: 0;
	margin-right: 35px;
}

/* END - Page Navigation */

/* BEGIN - Posts **********************************************/

.post {
	padding: 20px 0;
	border-bottom: 1px solid #ddd;
}

.post.last {
	border-bottom: none;
}

.post .entry-content {
	margin: 2em 0;
}

.post .entry-title,
.post .entry-title a {
	margin: .3em 0;
}

.post .entry-date {
	font-size: .9em;
	font-weight: bold;
	display: inline-block;
}

.post .bullet {
	display: inline-block;
	margin: 0 5px;
}

.post .entry-author {
	font-size: .9em;
	font-style: italic;
	display: inline-block;
}

.post .entry-read-more {
	float: right;
	display: inline-block;
	background: rgba(0,0,0,0.1);
	padding: 8px 16px;
	margin-left: 25px;
}

.post .entry-meta {
	font-size: .8em;
}

.post .entry-featured-image {
	float: left;
	margin: 0 25px 25px 0;
	width: 200px !important;
	height: auto !important;
}

.post .social-buttons {
	margin-top: 10px;
}


/* post author information */
.post .author-avatar,
.post .author-description,
.post .author-link {
	display: inline-block;
	vertical-align: middle;
}

.post .author-avatar img {
	width: 2em;
	height: 2em;
}

.post .author-description h2 {
	display: inline-block;
	font-size: 1em;
}

.post .author-description .divider {
	display: inline-block;
	margin: 0 5px;
}

.post .author-link {
	vertical-align: baseline;
}

/* END - Posts */



/* BEGIN - Accordian Styles ******************************/

.accordion .control {
	cursor: pointer;
	margin: 0 0 .5em 0;
	font-size: 1em;
	font-weight: bold;
}

.accordion .control:before {
	content: "►";
	font-size: .8em;
	margin-right: .5em;
	position: relative;
	top: -1px;
}

.accordion div.open .control:before {
	content: "▼";
}

.accordion .content {
	display: none;
	margin-left: 1.5em;
}

.accordion > div .open-arrow {
	display: none;
	margin-right: .4em;
}

.accordion > div .closed-arrow {
	display: inline-block;
	margin-right: .4em;
}

.accordion > div.open .open-arrow {
	display: inline-block;
}

.accordion > div.open .closed-arrow {
	display: none;
}

/* END - Accordian Styles */



/* BEGIN - Social Buttons ******************************/

.social-buttons {
	margin-top: 2em;
}

.social-buttons > div {
	display: inline-block;
}

.social-buttons .facebook-like {
	width: 90px;
}

.social-buttons .twitter-tweet {
	width: 90px;
}

.social-buttons .google-plus-one {
	width: 70px;
}

/* END - Social Buttons */



/* BEGIN - Widgets ******************************/

.widget {
	margin-bottom: 40px;
}

.widget img {
	max-width: 100%;
	height: auto !important;
}

/* attorney profile */
.attorney-profile .attorney-name {
	margin-bottom: 0;
}

.attorney-profile img {
	width: 75px;
	height: 75px;
	float: left;
	margin: 6px 1em 1em 0;
}

/* practice areas */

.practice-areas.list {
	list-style: none;
	padding-left: 0;
}

.practice-areas.images td {
	vertical-align: middle;
	padding-bottom: 10px;
}

.practice-areas.images .practice-area-image {
	width: 80px;
	display: block;
}

.practice-areas.images .practice-area-name {
	margin-left: 8px;
	font-size: 1.1em;
}

/* testimonials */
.testimonial-description-1{
	font-weight: bold;
	margin-bottom: .5em;
	float: right;
}

.testimonial-description-2{
	display: inline-block;
	margin-top: 1em;
}

.testimonial-title {
	margin-bottom: .35em;
	line-height: 1.3em;
}

.testimonial-name{
	font-weight: bold;
	display: inline-block;
	float: right;
}

.testimonial-text{
	line-height: 1.8em;
	margin-bottom: .35em;
}

.testimonial-read-more {
	display: inline-block;
}

.tmf-widget.testimonial.list .testimonial {
	margin-bottom: 50px;
}


/* category list */
.blog-categories .sub-category .category-count{
	margin-left: 1.8em;
}

.blog-categories .sub-category.level-3 .category-count{
	margin-left: 3.8em;
}

.blog-categories .category-count {
	background: rgba(0,0,0,0.1);
	border-radius: 20px;
	width: 18px;
	font-size: 11px;
	font-weight: bold;
	line-height: 16px;
	padding-bottom: 1px;
	margin-right: 5px;
	display: inline-block;
	color: #222;
	text-align:center;
	position: relative;
	top: -1px;
}

/* tag cloud */
.blog-tag-cloud > a {
	margin-right: .2em;
	line-height: 1em;
	display: inline-block;
}

/* blog author widget */

.blog-author td {
	vertical-align: top;
	line-height: 1.6em;
}

.blog-author .image-cell {
	min-width: 75px;
	padding-right: .9em;
}

.blog-author .author-image {
	width: 100px;
	height: 100px;
}

.blog-author .author-name {
	font-weight: bold;
	font-style: italic;
}

.blog-author .author-title,
.blog-author .author-phone,
.blog-author .author-fax,
.blog-author .author-email {
	font-size: 1em;
	line-height: 1em;
}

.blog-author .author-icons {
	margin-top: 1em;
}

.blog-author .vcard,
.blog-author .resume{
	margin: 0 1em 1em 0;
	display: inline-block;
}

/* blog feed */

.tmf-widget.blog-feed .blog-feed-post {
	margin-bottom: 25px;
}

.blog-feed .blog-feed-post-title {
	margin-bottom: 0;
	line-height: 1.3em;
}

.blog-feed .blog-feed-post-date {
	font-style: italic;
}

.blog-feed .read-more {
	display: inline-block;
}

.tmf-widget.attorney-list .attorney {
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.tmf-widget.attorney-list .attorney .attorney-name {
	margin: 0;
	line-height: 1.3em;
}

.tmf-widget.attorney-list .attorney .attorney-title {
	font-size: .95em;
	font-style: italic;
	line-height: 1.3em;
	margin-bottom: 3px;
}


.tmf-widget.attorney-list .attorney .attorney-image {
	width: 75px;
	height: 75px;
	float: left;
	margin: 6px 1em 1em 0;
}

.tmf-widget.attorney-list .attorney p {
	margin: 5px 0 0 0;
}

/* END - Widgets */



/* BEGIN - Miscellaneous Styles ******************************/

#header-container .logo {
	max-width: 100%;
}

/* END - Miscellaneous Styles */

/* ======================================== *
	Video Light Box
 * ======================================== */

#video-light-box {
	background: rgba(255,255,255,0.8);
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index: 1000000;
	display:none;
}

#video-light-box .close-button {
	position: absolute;
	top: -10px;
	right: -10px;
	color: #111;
	cursor: pointer;
	font-size: 2em;
	font-family: 'Helvetica', 'Arial', sans-serif;
	background: url(../images/close-button.png) no-repeat;
	width: 30px;
	height: 29px;
}

#video-light-box .wrap {
	position: relative;
	width: 800px;
	height: 460px;
	margin: 50px auto 0;
	display: block;
	-webkit-box-shadow: 0 0 40px rgba(0,0,0,0.5);;
	-moz-box-shadow: 0 0 40px rgba(0,0,0,0.5);;
	box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

#video-light-box iframe {
	width: 100%;
	height: 100%;
}

.video-light-box {
	cursor: pointer;
}

@media screen and (max-width: 900px) {
	#video-light-box .wrap {
		width: 600px;
		height: 345px;
	}	
}

@media screen and (max-width: 700px) {
	#video-light-box .wrap {
		width: 400px;
		height: 230px;
	}	
}

@media screen and (max-width: 500px) {
	#video-light-box .wrap {
		width: 300px;
		height: 173px;
	}	
}