/* reset ============================================== */
* {
	margin: 0px;
	padding: 0px;
	line-height: 1;
	vertical-align: baseline;
	background: transparent;
	outline: 0px;/* CAUTION: will stop outlining of links when tabbing through a page!!!!! */

	-webkit-tap-highlight-color: rgba(0,0,0,0);
	        tap-highlight-color: rgba(0,0,0,0);
}
@media screen and (max-width: 480px) {
	* {
	 	-webkit-text-size-adjust: none !important;
	 	        text-size-adjust: none !important;
	}
}

/* responsive settings */
* {max-width: 100%;}/* to disable for individual styles, use max-width: none; */
html.lt-ie9 * {
	width: auto;
	max-width: none;
}
#wpadminbar * {max-width: none !important;}
#wpadminbar ul {float: left !important;}
img {
	max-width: 100%;
	height: auto;
}
/* /responsive settings */

/* automatic global clearfix, from http://www.marcwatts.com.au/best-clearfix-ever.html & http://css-tricks.com/snippets/css/clear-fix/ ===== */
/* NOTE: needs :before for some cases */
article:before,article:after {content:"";display:table;clear:both;}
aside:before,aside:after {content:"";display:table;clear:both;}
div:before,div:after {content:"";display:table;clear:both;}
footer:before,footer:after {content:"";display:table;clear:both;}
form:before,form:after {content:"";display:table;clear:both;}
header:before,header:after {content:"";display:table;clear:both;}
nav:before,nav:after {content:"";display:table;clear:both;}
section:before,section:after {content:"";display:table;clear:both;}
ul:before,ul:after {content:"";display:table;clear:both;}
/* /automatic global clearfix ===== */

/* /reset ============================================== */

/* Tag styles ========================================================= */
html {
	xheight: 100%;/* DO NOT USE THIS, CAUSES IFRAME RESIZING CODE TO BREAK */
	min-height: 100%;
	box-sizing: border-box;/* padding does NOT add to box width */
}
*, *:before, *:after {box-sizing: inherit;}

body {
	position: relative;/* leave this alone!!!! */
	xheight: 100%;/* DO NOT USE THIS, CAUSES IFRAME RESIZING CODE TO BREAK */
	min-height: 100%;
	text-align: center;
	color: #000000;
	text-shadow: 1px 1px 0px rgba(255,255,255,0.25);
	background-color: #ffffff;
}

html,body,button,td,input,textarea,select,option {
	xfont: normal 14px verdana,arial,sans-serif;
}

p {
	margin: 0px;
	padding: 0px 0px 1.4rem 0px;
}
p,
div.p,
blockquote,
.pp_inline li,
.pagecontainer li,
.form2 label {
	line-height: 1.4;
}

b {font-weight: bold;}
i {font-style: italic;}
u {text-decoration: underline;}

a,
a:link,
a:visited,
a:hover,
.bn1,
.pagecontainer a img  {
	color: #0000aa;
	border-color: #0000aa;
	text-decoration: none;
}
a {
	transition: all 100ms ease-in-out;
}
a:hover,
.bn1:hover,
.pagecontainer a:hover img {
	color: #aa0000;
	border-color: #aa0000;
	text-decoration: underline;
}
.pagecontainer a:hover img {
	text-decoration: none;
}

h1,h2,h3,h4 {
	font-weight: normal;
	margin: 0px;
	padding: 0px 0px 0.75rem 0px;
	line-height: 1.2;
}
h1 a,h2 a,h3 a,h4 a {text-decoration: none !important;}
h1 {
	font-size: 150%;
	padding-top: 0px;
}
h2 {
	font-size: 135%;
}
h3 {
	font-size: 120%;
}
h4 {
	font-size: 100%;
}

table {border-collapse: collapse;}
table.separate {border-collapse: separate;}
td {vertical-align: middle;}

form table td {padding: 3px;}

fieldset {
	/* allows input elements in fieldset to have max-width: 100% */
	display: table-cell;/* for FF */
	min-width: 0;/* for webkit */
	width: 100%;
	/* /allows input elements in fieldset to have max-width: 100% */
	margin: 0px 0px 14px 0px;
	padding: 5px 5px 5px 5px;
	border: solid 1px #000;
	border-radius: 3px;
}
legend {
	margin: 0px 0px 0px 5px;
	padding: 0px 5px 0px 5px;
}

img {
	vertical-align: bottom;
	border-width: 0px;
}

hr {
	height: 1px;
	margin-bottom: 14px;
	xcolor: red;
	xbackground-color: red;/*for IE6/7*/
	border-style: dotted;
	border-width: 0px 0px 1px 0px;
	border-color: #000000;
}

blockquote {
	padding: 0px 50px 14px 50px;
	text-indent: 0px;
}

blockquote.quotes {
	position: relative;
	margin: 0px 50px 1.5rem 60px;
	padding: 0px 0px 0px 0px;
	line-height: normal !important;
	font-size: 1.5rem;
	text-indent: -0.2em;
	quotes: '\201C' '\201D';
xoutline: solid 1px #000;
}
blockquote.quotes:before,blockquote.quotes:after {
	display: inline-block;
	position: relative;
	top: 0px;
	z-index: 5;
	display: inline-block;
	transform: scale(6,6);
	transform-origin: left -8px;
	line-height: 0 !important;
	font-family: georgia,times,"times new roman",serif;
	color: rgba(0,0,0,0.1);
xoutline: solid 1px #000;
}
blockquote.quotes:before {
	left: -1.1em;
	content: open-quote;
}
blockquote.quotes:after {
	left: 1.2em;
	content: close-quote;
}

.byline {
	margin: 0px 50px 0px 60px;
	padding: 0px 0px 1.4em 0px;
	line-height: 1.2;
	text-align: right;
xborder: solid 1px #000000;
}
.byline:before {
	display: inline-block;
	content: '\2014';
}

q {
}

cite {
}

sup {vertical-align: super;}
sub {vertical-align: sub;}

iframe {
}
/* /Tag styles ========================================================= */

/* /HTML5 Tag styles =================================================== */
article,
footer,
header,
hgroup,
nav {
	display: block;
}
aside {}
audio{}
command {}
details {}
figcaption {}
figure {}
footer {}
header {}
hgroup {}
mark {}
meter {}
nav {}
progress {}
ruby {}
rt {}
rp {}
section {}
time {}
summary {}
wbr {}
/* /HTML5 Tag styles =================================================== */

/* list styles ========================================================= */
ul, ol {margin: 0px 0px 0px 5px;}

ul ul, ul ol, ol ol, ol ul {
	margin-bottom: 0px;
	padding-bottom: 0px;
}

ul {padding: 0px 0px 0px 15px;}

ol {padding: 0px 0px 0px 25px;}

li {}

ul.bullet {list-style-image: url("/pix/bullet.gif");}

.pp_inline ol,
.pp_inline ul,
.pagecontainer ol,
.pagecontainer ul {
	margin-bottom: 0;
	padding-bottom: 1.4rem;
}

.pagecontainer ul ul,
.pagecontainer ul ol,
.pagecontainer ol ol,
.pagecontainer ol ul {
	margin-bottom: 0;
	padding-bottom: 0;
xoutline: solid 1px #000;
}

.pp_inline li,
.pagecontainer li {
	padding-bottom: 5px;
xoutline: solid 1px #000;
}
.pagecontainer ol > li:last-child,
.pagecontainer ul > li:last-child {
	padding-bottom: 0;
}
/* /list styles ========================================================= */

/* form ================================================================= */
input[type="email"],
input[type="password"],
input[type="search"],
input[type="text"],
input[type="file"],
select,
textarea {
	width: 300px;
	padding: 3px 5px 3px 5px;
	line-height: normal  !important;
	background-color: rgba(255,255,255,0.3);
	border: solid 1px rgba(0,0,0,0.4);
	xborder-radius: 5px;
	xbox-shadow: inset 1px 4px 20px rgba(0,0,0,0.06);
}

textarea {height: 100px;}

select {
	width: auto;
	padding-right: 2px;
	border-radius: 5px;
}
option {
	padding: 0px 5px 0px 3px;
	line-height: normal  !important;
	background: #fff !important;/*NOTE: do NOT use background-color here!!!!! */
}

input[type="checkbox"],
input[type="radio"] {
	position: relative;
	top: 2px;
	margin: 2px 3px 0px 2px;
}

input[type="file"] {
	position: relative;
	z-index: 20;
	width: 100%;
	height: 104px;
	opacity: 0;
}
.file-upload-container {
	position: relative;
	display: inline-block;
	background: url("/pix/dragupload.jpg") no-repeat top left;
	background-size: 100%;
}
.file-upload-display-name {
	xdisplay:none;
	position: absolute;
	top: 50%;
	z-index: 10;
	transform: translate(0%, -50%);
	width: 100%;
	padding: 10px 10px 10px 75px !important;
	xtext-align: center;
	color: rgba(0,0,0,1);
xoutline: solid 1px #000;
}

span.required {
	xcolor: red;/* see "misc classes" below */
	display: inline-block;
	padding-right: 3px !important;
}

.auto {width: auto;}

#recaptcha_response_field {
	width: auto;
	min-width: 0px !important;
	background-color: #fff;
}

input#search {
	min-width: 0px;
	width: 80% !important;
	padding-right: 22px;
	background-image: url("/pix/search.png");
	background-position: right 3px top 4px;
	background-repeat: no-repeat;
}
.lt-ie9 input#search {
	background-position: right top;
}

.pre-input {
	display: inline-block;
	padding-right: 2px;
}
.post-input {
	display: inline-block;
	padding-left: 6px;
}

/* form1 ===== */
.form1 .required.pre-label:before {
	content: '*';
	display: inline-block;
	padding-right: 3px;
}
.form1 .required.post-label:before {
	display: none;
}

.form1,
.form1 > fieldset,
.form1 > div > span > fieldset {
	display: table;
}

.form1 > div,
.form1 > fieldset > div,
.form1 > div > span > fieldset > div {
	display: table-row;
}
.form1 > div > label,
.form1 > fieldset > div > label,
.form1 > div > span > fieldset > div > label {
	display: table-cell;
	.display: block;
	height: 28px;
	padding: 6px 6px 3px 0px;
	.padding-bottom: 2px;
	text-align: right;
	.text-align: left;
	vertical-align: top;
	line-height: normal !important;
xborder-bottom: solid 1px #000000;
}
.form1 > div > span,
.form1 > fieldset > div > span,
.form1 > div > span > fieldset > div > span {
	display: table-cell;
	.display: inline;
	height: 28px;
	padding: 3px 0px 3px 0px;
	vertical-align: top;
	line-height: normal !important;
xborder-bottom: solid 1px #000000;
}
.form1 > div > span div,
.form1 > fieldset > div > span div,
.form1 > div > span > fieldset > div > span div {
	padding: 5px 0px 0px 0px !important;
	color: #aaa;
xborder: solid 1px #000000;
}
.form1 > div > span div:nth-child(1),
.form1 > fieldset > div > span div:nth-child(1),
.form1 > div > span > fieldset > div > span div:nth-child(1) {
	padding-top: 0px;
}
.form1 > div > span div:nth-last-child(1),
.form1 > fieldset >  div > span div:nth-last-child(1),
.form1 > div > span > fieldset >  div > span div:nth-last-child(1) {
	padding-bottom: 5px;
}

.form1 > div > span > label,
.form1 > fieldset > div > span > label,
.form1 > div > span > fieldset > div > span > label {
	padding-right: 10px;
xborder: solid 1px #000000;
}


.form1 span div.sup,
.form1 span div.sub {
	font-size: 0.85rem;
}
.form1 span div.sup {
	padding-top: 6px !important;
}
.form1 span div.sub {
	padding-bottom: 6px !important;
}

.form1 .submit-bns-container label,
.form1 .submit-bns-container span {
	padding-top: 14px !important;
}
/* /form1 ===== */

/* form2 ===== */
.form2 .required.pre-label:before {
	display: none;
}
.form2 .required.post-label:before {
	content: '*';
	display: inline-block;
	padding-left: 3px;
}

.form2 {
}
.form2  div {
	padding: 0px 0px 8px 0px;
}
.form2  div > label {
	display: block;
	padding: 0px 0px 3px 0px;
}
.form2  div > span {
}

.form2  div > label > span {
}

.form2  div > span > label {
	display: inline-block;
	padding-right: 10px;
}
.form2  div > span > div {
}
/* /form2 ===== */

fieldset.password_confirm_password {
	display: inline-block;
}
.print-value span div {
	color: #777;
}
.actions-container{
	margin: 0.75rem 0px 0.75rem 0px;
}
/* /form ================================================================= */

/* shell structure ================================================================== */
.topnav,
header.header-shell-2,
.panel,
.title-container,
footer.footer-shell-2 {
	width: 950px;
	width: 100%;
	margin: 0px auto 0px auto; /* centers this div on the page, also, see body definition above */
	text-align: left;
xborder: solid 1px #000;
}

.shell {
	text-align: left;
}

.shellbox1 {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 10;
}
.shellbox2 {
}
/* /shell structure ================================================================== */

/* header ============================================================= */
.header-wrapper {}
header {
	position: relative;
}
header.header-shell-0 {}
header.header-shell-1 {}
header.header-shell-2 {}

#sitename {
	line-height: 1;
}
#sitename a {
	text-decoration: none;
}
#sitename a span {
}
#sitedesc {
	line-height: 1;
}
#sitedesc a {
}
#sitedesc a span {
	text-decoration: none;
}

#sign-in-out-container {
	position: absolute;
	top: 50px;
	right: 0px;
	z-index: 1000;
}

#search-container {
	position: absolute;
	top: 10px;
	right: 0px;
	z-index: 1000;
}
#search-container #search {
	width: 200px !important;
}
/* /header ============================================================= */

/* page ============================================================== */
.pagecontainer {
	position: relative;
	top: 0px;
	left: 0px;
	z-index: 20;
	width: 100%;
xborder: solid 1px #000000;
}

.panel_wrapper {}
.panel {
	position: relative;
}
.panel_wrapper-auto .panel {}

.col_1,
.col_2,
.col_3,
.col_4,
.col_5,
.col_6,
.col_7,
.col_8,
.col_9,
.col_10,
.col_11,
.col_12,
.col_13,
.col_14,
.col_15,
.col_16,
.col_17,
.col_18,
.col_19,
.col_20 {
	float: left;
}
.pad {/* see ../../hotpepper_child/css/style.css*/}
/* /page ============================================================== */

/* footer ============================================================= */
footer.footer-shell-1 {
}
footer.footer-shell-2 {
	padding: 10px 0px 20px 0px !important;
	font-size: 0.85rem;
}
footer #copyright,
footer #hp_byline {
	padding-bottom: 1rem;
	line-height: 1.4;
}
footer #copyright {}
footer #hp_byline {}
#powered-by-wordpress {}
#powered-by-wordpress:before {
	content: " ";
}
#hotpepper-design {
	padding-left: 23px;
	background-image: url("/pix/hp_bug.png");
	background-position: 0% 50%;
	background-repeat: no-repeat;
}
#hotpepper-design:after {
	content: ".";
}
/* /footer ============================================================= */

/* buttons =========================================================================== */
/*
NOTE: DO NOT use the height,line-height,vertical-align middle trick, OR tabling for stroked (bn1) buttons!!!!!
*/
.bn1,
.bn1:hover,
.bn1:visited,
button,
input[type="button"],
input[type="submit"] {
	display: inline-block;
	width: auto !important;
	line-height: normal !important;
	padding: 0px 8px 1px 8px;
	font-size: 1rem;
	font-weight: normal;
	text-decoration: none !important;
	text-shadow: 1px 1px 0px rgba(255,255,255,0.25);
	white-space: nowrap;
	background-color: #ffffff;
	border-style: solid;
	border-width: 1px;
	border-radius: 3px;
	cursor: pointer;
}

.bn,
.bn_ext,
.more-link,
.bn_back,
.bn_top,
.more-link_back,
.bn_blog-prev-page,
.bn_blog-prev-post,
.bn_blog-next-page,
.bn_blog-next-post {
	display: inline-block;
}
.bn:hover,
.bn_ext:hover,
.more-link:hover,
.bn_back:hover,
.bn_top:hover,
.more-link_back:hover,
.bn_blog-prev-page:hover,
.bn_blog-prev-post:hover,
.bn_blog-next-page:hover,
.bn_blog-next-post:hover {
	text-decoration: none;
}
.bn:before,
.more-link:before {
	content: '\f101';
	font-family: 'FontAwesome';
	padding-right: 4px;
}
.bn_ext:before {
	content: '\f08e';
	font-family: 'FontAwesome';
	font-size: 70%;
	padding-right: 4px;
}
.bn_back:before,
.more-link_back:before,
.bn_blog-prev-page:before,
.bn_blog-prev-post:before {
	content: '\f100';
	font-family: 'FontAwesome';
	padding-right: 4px;
}
.bn_blog-next-page:after,
.bn_blog-next-post:after {
	content: '\f101';
	font-family: 'FontAwesome';
	padding-left: 4px;
}
.bn_top:before {
	content: '\f102';
	font-family: 'FontAwesome';
	padding-right: 4px;
}


.bn_add {
	display: inline-block;
	text-decoration: none !important;
	border: 0;
	cursor: pointer;
}
.bn_add:before {
	font-family: 'FontAwesome';
	content: "\f055";
	padding-right: 4px;
}

.bn_cancel {
	font-size: 0.85rem;
	text-decoration: none !important;
	text-transform: lowercase;
}
.bn_cancel:before {
	content: '\f00d';
	font-family: 'fontAwesome';
	padding-right: 4px;
}

.bn_close {
	display: inline-block;
	padding: 2px 1px 0px 1px;
	font-size: 14px;
	text-align: center;
	text-decoration: none !important;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.50);
	color: #fff !important;
	background-color: rgb(224, 56, 56);
	border: solid 1px rgb(224, 56, 56) !important;
	border-radius: 5px;
}
.bn_close:after {
	font-family: 'FontAwesome';
	content: "\f00d";
	padding-left: 4px;
}
.bn_close:hover {
	color: rgb(224, 56, 56) !important;
	text-shadow: 1px 1px 0px rgba(255,255,255,0.50);
	background-color: rgba(224, 56, 56,0.4);
}

.bn_copy {
	display: inline-block;
	text-decoration: none !important;
}
.bn_copy:before {
	font-family: 'FontAwesome';
	content: "\f0c5";
	padding-right: 4px;
}

.bn_delete {
	display: inline-block;
	text-decoration: none !important;
	border: 0;
}
.bn_delete:before {
	font-family: 'FontAwesome';
	content: "\f057";
	padding-right: 4px;
}

.bn_edit {
	display: inline-block;
	text-decoration: none !important;
}
.bn_edit:before {
	font-family: 'FontAwesome';
	content: "\f040";
	padding-right: 4px;
}

.bn_help {
	display: inline-block;
	font-size: 120%;
	text-decoration: none !important;
	cursor: help;
}
.bn_help:before {
	font-family: 'FontAwesome';
	content: "\f059";
	padding-right: 4px;
}

.bn_lock {
	display: inline-block;
	text-decoration: none !important;
}
.bn_lock:before {
	font-family: 'FontAwesome';
	content: "\f023";
	padding-right: 4px;
}

.bn_mail {
	display: inline-block;
	text-decoration: none !important;
}
.bn_mail:before {
	font-family: 'FontAwesome';
	content: "\f003";
	padding-right: 4px;
}

.bn_pdf {
	/* see http://css-tricks.com/snippets/css/transparent-background-images/ */
	display: inline-block;
	position: relative;
	margin: 0px 0px 0px 0px;
	padding: 2px 0px 0px 0px;
	text-decoration: none !important;
}
.bn_pdf:before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 2px;
	opacity: 0.7;
	background: url("/pix/pdficon_small.png");
	background-repeat: no-repeat;
}
.bn_pdf:hover:before {
	opacity: 1;
}

.bn_reset {
	text-decoration: none !important;
}
.bn_reset:before {
	content: '\f01e';
	font-family: 'fontAwesome';
}
/* /buttons =========================================================================== */


/* table ==================================================================== */
.table {
	display: table;
	.display: inline-block;
	border-collapse: collapse;
xborder: solid 1px #000;
}
.row,
.table-row,
.table_row,
.table-row-header,
.table_row_header {
	display: table-row;
	.display: inline-block;
xborder: solid 1px red;
}
.table-row-header,
.table_row_header {
	font-weight: bold;
}
.cell,
.table-cell,
.table_cell {
	display: table-cell;
	.display: inline-block;
	vertical-align: top;
	.float: left;
xborder: solid 1px green;
}

.table.data {
}
.table.data .table-row-header,
.table.data .table_row_header {
}
.table.data .table-row,
.table.data .table_row {
}
.table.data .table-row:nth-child(even),
.table.data .table_row:nth-child(even) {
	background-color: #fff;
}
.table.data .table-row:nth-child(odd),
.table.data .table_row:nth-child(odd) {
	background-color: #f2f2f2;
}
.table.data .table-row.table-row-selected,
.table.data .table_row.table_row_selected {
	background-color: #ffffca;
}
.table.data .table-cell,
.table.data .table_cell {
	padding: 5px;
}
/* /table ==================================================================== */
/* columns ================================================================== */
span.col {
	/* IE hacks */
	.display: inline-block;
	.vertical-align: top;
	.padding: 0px 20px 0px 0px;
	display: inline-block\9;
	vertical-align: top\9;
	padding: 0px 20px 0px 0px\9;
}

.cols-2,
.cols-3,
.cols-4 {
	column-gap: 20px;
}
.cols-2 {
	column-count: 2;
}
.cols-3 {
	column-count: 3;
}
.cols-4 {
	column-count: 4;
}
/* /columns ================================================================== */


/* position ======================================================================== */
.center,
.aligncenter {
	text-align: center;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignleft {float: left;}
img.alignleft,
span.alignleft > img,
div.alignleft > img,
p.alignleft > img,
div.alignleft > p > img,
span.alignleft > a > img,
div.alignleft > p > a > img {
	margin: 0px 1.3rem 0.75rem 0px;
}

.alignright {float: right;}
img.alignright,
span.alignright > img,
div.alignright > img,
p.alignright > img,
div.alignright > p > img,
span.alignright > a > img,
div.alignright > p > a > img  {
	margin: 0px 0px 0.75rem 1.3rem;
}

.pix-text-left {
	padding: 0px 1.3rem 0.75rem 0px;
}
.table-cell.pix-text-left img {max-width: initial;}
.pix-text-right {
	padding: 0px 0px 0.75rem 1.3rem;
}
.table-cell.pix-text-right img {max-width: initial;}

.clear {clear: both;}
.clear {clear: both;}
.clearfix:after {content: "";display: table;clear: both;}

.relative {position: relative;}
.container {
	position: relative;
	top: 0px;
	left: 0px;
	z-index: 0;
	_width: 100%;
}
/* /position ======================================================================== */

/* misc classes ===================================================================== */
.alert,
.error,
.required {
	color: #cc0000 !important;
}
.error.form-validation {
	max-width: 300px;
	padding: 5px 0px 5px 0px !important;
	line-height: normal;
	font-style: italic;
	font-size: 0.85rem;
}

.smtxt {font-size: 0.85rem;}

.lgtxt {font-size: 1.15rem;}

.callout {font-size: 1.25rem;}

.notransform {text-transform: none;}

.lineheight_normal {line-height: normal;}

.nowrap {white-space: nowrap;}
.wordwrap {word-wrap: break-word;}

.block {display: block;}
.inline {display: inline;}
.inline-block {display: inline-block;}
.none {display: none;}
#othercomments2 {display: none !important;}/*anti-span field*/
.hidden {visibility: hidden;}
.visible {visibility: visible;}
.collapse {visibility: collapse;}
.inherit {visibility: inherit;}

.crumbtrail {
}



.filetree_container {
	float: left;
	min-width: 100%;
	white-space: nowrap;
	background-color: #ffffff;
	border: solid 1px #000000;
	padding: 5px;
	margin-bottom: 15px;
}

.footnote {
	font-size: 0.85rem;
	text-indent: -7px;
	padding-left: 7px;
	line-height: 1.2;
}

.crumbtrail {
	padding-bottom: 14px;
}
.crumbtrail span {
	font-style: italic;
}

.hilite {
	display: inline-block;
	padding: 3px;
	text-shadow: rgba(253,255,255,0.30);
	background-color: rgba(253,255,0,0.35);
	border-radius: 5px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.05);
}

.profile {
}
.profile .password-change fieldset {
	margin: 20px 0px 20px 0px;
}
.profile .password-change legend {
	font-size: 0.85rem;
	text-transform: uppercase;
}

/* /misc classes ===================================================================== */


/* alert jqueryui dialog ============================================================ */
.alert_dialog {
	z-index: 10000;
	font-size: 1rem !important;
	text-align: left !important;
	text-shadow: none !important;
}
/* /alert jqueryui dialog ============================================================ */

/* prettyPhoto ======================================================================= */
.ppt {
	text-shadow: 1px 1px 0px rgba(0,0,0,0.50);
}
/* /prettyPhoto ======================================================================== */

/* datepicker ======================================================================= */
#ui-datepicker-div {
	display: none;/* NOTE: this MUST be initially set to hidden!!!!! */
}
.datepicker {
}

.datepicker input[type="text"] {
	width: 185px;
	min-width: 185px;
	padding-right: 20px;
	background-image: url("/pix/calendar_blank.pn_16.png");
	background-position: 165px 3px;
	background-repeat: no-repeat;
	cursor: pointer;
}

.datepicker-unset {
	position: relative;
	top: -4px;
	width: 16px !important;
	height: 16px !important;
	margin: 0px 0px 0px 5px;
	padding: 0px;
	background-color: transparent;
	background-image: url("/pix/b_drop.png");
	background-position: top left;
	background-repeat: no-repeat;
	border-width: 0px !important;
	cursor: pointer;
}
/* /datepicker ======================================================================= */

/* hp_slider ========================================================================= */
.hp_slide-content {
}
.hp_slide-content .story {
	position: absolute;
	bottom: 10%;
	left: 0;
	z-index: 20;
	max-width: 50%;
	padding: 10px 10px 10px 10px;
	background-color: rgb(255,255,255);
	background-color: rgba(255,255,255,0.8);
	border-radius: 0px 6px 6px 0px;
}
.lt-ie9 .hp_slide-content .story {
	width: 50%;
}
.hp_slider_nav {
	position: absolute;
	bottom: 0px;
	right: 0px;
	z-index: 1000;
	padding: 10px 10px 10px 10px;
	xborder: solid 1px #000000;
}
.hp_slider_nav button {
	width: 20px;
	height: 20px;
	margin: 0px 0px 0px 5px;
	padding: 0px;
	line-height: 1 !important;
	background-color: #fff;
	border: solid 2px rgb(0,0,255);
	border-color: rgba(0,0,255,0.50);
	border-radius: 10px;
	background-color: rgb(255,255,255);
	background-color: rgba(255,255,255,0.9);
	cursor: pointer;
}
.hp_slider_nav button:hover {
	border-color: rgb(255,0,0);
	border-color: rgba(255,0,0,0.50);
	background-color: rgb(255,255,255);
}
.hp_slider_nav button.current,
.hp_slider_nav button.current:hover {
	border-color: rgb(255,0,0);
	border-color: rgba(255,0,0,0.50);
	background-color: rgb(255,255,255);
}
.hp_slider_nav button span {
	display: none;
}
/* /hp_slider ========================================================================= */

/* hp_slider2 ========================================================================= */
.hp_slider2-container {
	position: relative;
}

.hp_slider2 {
	position: relative;
}

.hp_slide2 {
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 10;
	width: 100%;
	height: 100%;
	background-position: top left;
	background-repeat: no-repeat;
	background-size: 100%;
}
.hp_slide2:first-child {
	display: block;
}

.hp_slide2-content {
}

.hp_slider2-nav {
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: 1000;
	width: 100%;
	text-align: center;
}
.hp_slider2-nav div {
	display: inline-block;
	height: 20px;
	width: 20px;
	margin-right: 0.5rem;
	background-color: rgba(255,255,255,0.8);
	cursor: pointer;
	border: solid 2px #000;
	border-radius: 100px;
	transition: all 100ms ease-in-out;
}
.hp_slider2-nav div:hover {
	background-color: rgba(255,255,255,1);
}
.hp_slider2-nav div.current {
	background-color: rgba(230,87,60,1);
}

.hp_slider2-nav-arrows {
	position: absolute;
	top: 0px;
	z-index: 1000;
	width: 10%;
	height: 100%;
	cursor: pointer;
	transition: all 200ms ease-in-out;
	opacity: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 60%;
xborder: solid 1px #000;
}
.hp_slider2-nav-arrows:hover {
	opacity: 1;
	background-color: rgba(255,255,255,0.3);
}
.hp_slider2-nav-arrows-back {
	left: 0px;
	background-image: url("/pix/arrow_back.svg");
}
.hp_slider2-nav-arrows-next {
	right: 0px;
	background-image: url("/pix/arrow_next.svg");
}
/* /hp_slider2 ========================================================================= */

/* hp_rotator ======================================================================= */
.rotator {
	position: relative;
}
.rslide {
	position: absolute;
	display: none;
}
.rslide:first-child {
	xdisplay: block;
}
/* /hp_rotator ======================================================================= */

/* bgimg2 ============================================================================= */
.bgimg2_container {
	position: relative;
	z-index: 1000;
	background-repeat: no-repeat;
	background-size: cover;
	xcursor: pointer;
}
a.bgimg2_href {
	position: absolute;
	z-index: 1100;
	display: block;
	width: 100%;
	height: 100%;
}
.bgimg2_img {
	position: relative;
	z-index: 0;
}
.bgimg2_img-overlay-gradient {
	position: absolute;
	z-index: 1010;
	width: 100%;
	height: 10000px;
	max-height: 100%;
}
.bgimg2_img-overlay {
	position: absolute;
	z-index: 1020;
	width: 100%;
	height: 10000px;
	max-height: 100%;
	background-color: #fff;
	opacity: 0.1;
	opacity: 0;
	transition: all 500ms ease-in-out;
}
.bgimg2_container-hover:hover .bgimg2_img-overlay {
	opacity: 0;
	opacity: 0.2;
}
.bgimg2_content {
	position: absolute;
	top: 50% !important;
	left:0px;
	transform: translate(0%, -50%);
	z-index:1030 !important;
	max-height:100%;
	width: 100%;
	xpadding: 0px 0px 0px 0px;
	xtext-align: center;
}
/* /bgimg2 ============================================================================= */

/* blog classes ===================================================================== */
.error-page {}
.blog {}

.post {
xborder: solid 1px #000000;
}
.type-post{}
.type-page{}
.post-title {}
.hentry {}
.sticky {}
.category-misc {}
.tag-news {}
.tag-wordpress {}
.tag-markup {}

#multicat {
}
#multicat:after {
	content: ".";
	display: block;
	height: 0px;
	clear: both;
	visibility: hidden;
}

#multicat .cat-title {
}

.wp_last3 {
}
.wp_last3_headlines {
}

.featured-image {
	padding-bottom: 1rem;
}

.excerpt-more {
	white-space: nowrap;
}
.excerpt-more .bn {
}
.excerpt-more .bn:after {
	content: 'more';
}
.excerpt-more span:before {
	content: '\2026\0020';
}

.postmetadata {
	font-size: 0.85rem;
xborder: solid 1px #000;
}
.meta-pos-pre-title {
	margin-bottom: 0.2rem;
}
.meta-pos-post-title {
	margin-bottom: 1.2rem;
}
.meta-pos-post-entry {
	margin-bottom: 1.5rem;
}
.the_tags {
}
.the_time {
	font-style: italic;
}
.the_time:before {
	content: '\0020on\0020';
}
.the_author {
	font-style: italic;
}
.the_author:before {
	content: 'Posted by\0020';
}
.the_category:before {
	content: '\0020in\0020';
}
.the_category:after {
	content: '\0020';
}
.the_edit_post_link {
}
.the_comments_number {
}

.entry {
}

.blog-nav {
	padding: 14px 0px 14px 0px;
}
.blog-nav:after {
	content: ".";
	display: block;
	height: 0px;
	clear: both;
	visibility: hidden;
}
* html .blog-nav             { zoom: 1; } /* IE6 */
*:first-child+html .blog-nav { zoom: 1; } /* IE7 */

.blog-nav-left {float: left;}
.blog-nav-right {float: right;}


.navigation {
	padding: 0px 0px 10px 0px;
}
.navigation:after {
	content: ".";
	display: block;
	height: 0px;
	clear: both;
	visibility: hidden;
}
* html .navigation             { zoom: 1; } /* IE6 */
*:first-child+html .navigation { zoom: 1; } /* IE7 */

.cat-title {
}

#single-post-title {
}
#single-post-back {
	padding-bottom: 10px;
}

.page_item {
}

#search-results #results,
#search-results #no-results {
	min-height: 400px;
}

#search-results #no-results-label {
	font-weight: bold;
}
#search-results #no-results-form-container {
}
#search-result-count {
	margin-bottom: 14px;
	padding-bottom: 5px;
	line-height: 1.4;
	border-bottom: dotted 1px #000000;
}
#search-result-count span {
	font-weight: bold;
}
#search-results .hentry {
	padding-bottom: 20px;
	line-height: 1.4;
}
#search-results .search-return-title {
	font-weight: bold;
	padding-bottom: 8px;
}
#search-results .search-return-title .the_time {
	display: block;
	padding-bottom: 5px;
	font-size: 0.85rem;
	font-weight: normal;
	text-transform: uppercase;
}
#search-results .type-page .the_time,
#search-results .type-page .postmetadata {
	display: none;
}

.thread-alt {
}
.thread-even {
}
.thread-odd {
}
.depth-1 {
	border: solid 1px #cccccc;
}
.even {
	border: solid 1px #dddddd;
	background-color: #f8f8f8;
}
.odd {
	border: solid 1px #dddddd;
	background-color: white;
}
.alt {
}
.sticky {
	background: #f7f7f7;
	padding: 0 10px 10px;
}
/* /blog classes ===================================================================== */

/* Comments ======================================================================== */
.nocomments {
}
.commentlist {
	margin: 0px 5px 0px 5px;
	padding: 0px 0px 0px 0px;
	text-align: justify;
}
.commentlist li {
	margin: 0px 0px 10px 0px;
	padding: 5px 5px 10px 10px;
	list-style: none;
}
.commentlist .children {
	margin: 0px 0px 0px 0px !important;
	padding: 0px 0px 0px 0px !important;
}
.commentmetadata {
	margin: 0;
	display: block;
}
.commentlist li ul li {
}
.commentlist li {
}
.commentlist li .avatar {
	float: right;
	border: 1px solid #eee;
	padding: 2px;
	background: #fff;
}
.commentmetadata {
	font-size: 84%;
}
textarea#comment {
	width: 100%;
}
.reply {/* see buttons section above for .reply a definitions */
	padding-bottom: 10px;
}
#cancel-comment-reply-link {
	margin: 0px 10px 0px 0px;
}
/* /Comments ======================================================================== */

/* Sidebar ========================================================================= */
#sidebar {
}
#sidebar .widget-container {
	padding-bottom: 15px;
}
#meta {
	padding: 10px 0px 10px 0px;
}
/* /Sidebar ========================================================================= */


/* captions ========================================================================== */
.wp-caption {
	padding: 0px 0px 14px 0px;
}
.wp-caption .wp-caption-text {
	padding: 4px 0px 0px 0px;
	font-size: 0.85rem;
}

.wp-caption.alignright {
	margin: 0px 0px 0px 20px;
}
.wp-caption.alignleft {
	margin: 0px 20px 0px 0px;
}

.caption2 {
	position: relative;
	padding: 0px 0px 1.4rem 0px;
}
.caption2-img {
	position: relative;
}
.caption2-txt {
	position: relative;
	font-size: 0.85rem;
	padding: 3px 0px 0px 0px;
}
/* /captions ========================================================================== */

/* vid overlay, see functions-shortcodes.php [vid] =================================== */
.vid-container {
	background: url("/pix/play-arrow-2.png") no-repeat -9999px -9999px;
}
.vid-container a {
	display: block;
	position: relative;
	xborder: solid 1px red;
}
.bn_vid {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: url("/pix/play-arrow-1.png");
	background-position:50% 50%;
	background-repeat:no-repeat;
	xborder: solid 1px green;
}
.bn_vid:hover {
	background-image: url("/pix/play-arrow-2.png");
}
/* vid overlay ======================================================================= */


/* rss feed ===================================================================== */
.rss-feed {
}
.rss-feed ul {
	list-style: none;
}
.rss-feed li {
	margin: 0px 0px 0.5rem 0.1rem;
}
.rss-feed li:before {
	float: left;
	margin: 0.125rem 0px 0px -1.1rem;
	content: '\f045';
	font-family: 'fontAwesome';
	font-size: 0.75rem;
}
.rss-feed li div {
	line-height: 1.4rem;
}
.rss-feed h1,.rss-feed h2,.rss-feed h3,.rss-feed h4,.rss-feed h5,.rss-feed h6,.rss-feed h7 {
	padding: 0px 0px 0px 0px !important;
	line-height: normal !important;
	font-size: 1rem;
}
.rss-feed a {
	position: relative;
	text-decoration: none !important;
}
.rss-feed a:hover {
}

.widget_rss {
}
.widget_rss ul {
}
.widget_rss li {
}
.widget_rss .widgettitle {
}
.widget_rss a.rsswidget {
}
.widget_rss .rssSummary {
}
/* /rss feed ===================================================================== */

/* print styles ========================== */
@media print {

/* hack to give hasLayout to IE7, stops runaway printing */
.pagecontainer,
#pageboxfull,
#pagebox0,
#pagebox1,
#pagebox2,
#pagebox3 {
	min-height: 0 !important;
}
/* /hack to give hasLayout to IE7 */

* {
	text-shadow: none !important;
}

}
/* /print styles ========================== */
