/* Base Styles
末末末末末末末末末末末末末末末末末末末末末末末末末 */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html { font-size: 62.5%; }
body {
	font-size: 20px; /* currently ems cause chrome bug misinterpreting rems on body element */
	font-weight: 400;
	font-family: Helvetica, Arial, sans-serif;
	color: #000; 
}

/* Typography
末末末末末末末末末末末末末末末末末末末末末末末末末 */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 2rem;
	font-weight: 300; 
}
h1 { font-size: 4.0rem;}
h2 { font-size: 3.6rem;}
h3 { font-size: 3.0rem;}
h4 { font-size: 2.4rem;}
h5 { font-size: 1.8rem;}
h6 { font-size: 1.5rem;}

p { margin-top: 0; }

.txt_lg{font-size:3.0rem}
.txt_sm{ font-size:12px; }
/* Colors and Backgrounds
末末末末末末末末末末末末末末末末末末末末末末末末末 */
.black{ color:#000; }
.gold{ color:#feb821; }
.white{ color:#fff; }
.bg_black{ background-color:#000; }
.bg_white{ background-color:#fff; }
/* Links
末末末末末末末末末末末末末末末末末末末末末末末末末 */
a { color: #000; }
a:hover { color: #666; }
.lnk_gold{
	display:table;
	width:100%;
	max-width:100%;
	padding:6px 28px;
	margin-top:8px;
	margin-bottom:8px;
	line-height:36px;
	color:#000;
	background-color:#feb821;
	text-decoration:none;
	text-align:center;
	border-radius:6px;
	box-sizing: border-box;
}
.lnk_gold:hover{
	color:#fff;
}
/* Buttons
末末末末末末末末末末末末末末末末末末末末末末末末末 */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	height: 38px;
	padding: 0 30px;
	color: #555;
	text-align: center;
	font-size: 11px;
	font-weight: 600;
	line-height: 38px;
	letter-spacing: .1rem;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border-radius: 4px;
	border: 1px solid #bbb;
	cursor: pointer;
	box-sizing: border-box; 
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	color: #333;
	border-color: #888;
	outline: 0; 
}
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
	color: #FFF;
	background-color: #33C3F0;
	border-color: #33C3F0; 
}
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
	color: #FFF;
	background-color: #1EAEDB;
	border-color: #1EAEDB; 
}

/* Forms
末末末末末末末末末末末末末末末末末末末末末末末末末 */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
	height: 38px;
	padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
	background-color: #fff;
	border: 1px solid #D1D1D1;
	border-radius: 4px;
	box-shadow: none;
	box-sizing: border-box; 
}
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none; 
}
textarea {
	min-height: 65px;
	padding-top: 6px;
	padding-bottom: 6px; 
}
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
	border: 1px solid #33C3F0;
	outline: 0; 
}
label,
legend {
	display: block;
	margin-bottom: .5rem;
	font-weight: 600; 
}
fieldset {
	padding: 0;
	border-width: 0; 
}
input[type="checkbox"],
input[type="radio"] { display: inline; }
label > .label-body {
	display: inline-block;
	margin-left: .5rem;
	font-weight: normal; 
}

/* Lists
末末末末末末末末末末末末末末末末末末末末末末末末末 */
ul { list-style: square inside; }
ol { list-style: decimal inside; }
ol, ul {
	padding-left: 0;
	margin-top: 0; 
}
ul ul,
ul ol,
ol ol,
ol ul {
	margin: 1.5rem 0 1.5rem 3rem;
	font-size: 90%; 
}
li { margin-bottom: 1rem; }

/* Code
末末末末末末末末末末末末末末末末末末末末末末末末末 */
code {
	padding: .2rem .5rem;
	margin: 0 .2rem;
	font-size: 90%;
	white-space: nowrap;
	background: #F1F1F1;
	border: 1px solid #E1E1E1;
	border-radius: 4px; 
}
pre > code {
	display: block;
	padding: 1rem 1.5rem;
	white-space: pre; 
}

/* Tables
末末末末末末末末末末末末末末末末末末末末末末末末末 */
th,
td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #E1E1E1; 
}
th:first-child,
td:first-child { padding-left: 0; }
th:last-child,
td:last-child { padding-right: 0; }

/* Spacing
末末末末末末末末末末末末末末末末末末末末末末末末末 */
button,
.button { margin-bottom: 1rem; }
input,
textarea,
select,
fieldset { margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol { margin-bottom: 1.5rem; }
form { margin:0; }

/* Utilities
末末末末末末末末末末末末末末末末末末末末末末末末末 */
.u-full-width {
	width: 100%;
	box-sizing: border-box; 
}
.u-max-full-width {
	max-width: 100%;
	box-sizing: border-box; 
}
.u-pull-right { float: right; }
.u-pull-left { float: left; }

/* Images
末末末末末末末末末末末末末末末末末末末末末末末末末 */
img{
	width:auto;
	max-width:100%;
	vertical-align:bottom;
}

/* Misc
末末末末末末末末末末末末末末末末末末末末末末末末末 */
hr {
	margin-top: 3rem;
	margin-bottom: 3.5rem;
	border-width: 0;
	border-top: 1px solid #E1E1E1; 
}
.full_width{
	width:100%;
	max-width:100%;
}
.indent{ text-indent:36px; }
.mar_auto{
	margin-left:auto;
	margin-right:auto;
}
.pad{ padding:24px; }
.bor_rad{ border-radius:4px; }
.tacenter{ text-align:center; }
.taleft{ text-align:left; }
.taright{ text-align:right; }
.float_right{ float:right; }
.float_left{ float:left; }
.error{ color:#ff0000; }
.success{ color:#00ff00; }
.select-menu { display:block;margin-top:12px; }
.sf-menu{ display:none; }
.btt{
	width:36px;
	height:30px;
	display:none;
	position:fixed;
	bottom:72px;
	right:0px;
	z-index:999;
}
.navigation_container{ 
	display:table;
	margin-right:auto;
	margin-left:auto;
}
/* Clearing
末末末末末末末末末末末末末末末末末末末末末末末末末 */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf,
.clear {
	content: "";
	display: table;
	clear: both; 
}

/* Blogs & Blog Categories
末末末末末末末末末末末末末末末末末末末末末末末末末 */
.blog_title{}
.blog_date{}
.blog_link, .blog_link:hover{
	font-size:22px;
	text-decoration:none;
}
.blog_link_img, blog_link_img:hover{}
.blog_img_sm{}
.blog_img{
	display:block;
	margin:0px auto 24px auto;
}
.blog_img_splash{
	margin-left:auto;
	margin-right:auto;
	max-height:288px;
}
.blog_separator{
	margin-top:18px;
	margin-bottom:36px;
	border-bottom:1px dashed #ccc;
}
.blog_desc_short{}
.blog_desc{}
.blog_link_read_more, .blog_link_read_more:hover{
	display:inline-block;
	width:auto;
	max-width:216px;
	padding-left:24px;
	padding-right:24px;
	line-height:36px;
	color:#fff;
	background-color:#000;
	text-decoration:none;
}
.blog_location{}
.blog_location_link, .blog_location_link:hover{}
.blog_empty{}

.blogc_categ{}
.blogc_link, .blogc_link:hover{
	font-size:22px;
	text-decoration:none;
}
.blogc_categ_link, .blogc_categ_link:hover{}
.blogc_link_img, .blogc_link_img:hover{}
.blogc_img_sm{}
.blogc_desc_short{}
.blogc_separator{}
.blogc_title{}
.blogc_location{}
.blogc_location_link,.blogc_location_link:hover{}
.blogc_container{
	padding:12px;
	background-color:#fff;
}
/* Category List */
.blogcl_link{
	display:block;
	margin:6px;
	padding:12px 12px;
	color:#666;
	text-decoration:none;
	border-bottom:1px solid #ccc;
}
.blog_link_index,.blog_link_index:hover{
	display:inline-block;
	width:100%;
	max-width:100%;
	text-decoration:none;
	color:#feb821;
	background-color:#000;
	padding:12px;
	box-sizing: border-box; 
}
/* Media Queries
末末末末末末末末末末末末末末末末末末末末末末末末末 */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {
	h1 { font-size: 5.0rem; }
	h2 { font-size: 4.2rem; }
	h3 { font-size: 3.6rem; }
	h4 { font-size: 3.0rem; }
	h5 { font-size: 2.4rem; }
	h6 { font-size: 1.5rem; }
	.indent{ margin-left: 72px; }
	.select-menu { display:none; }
	.sf-menu{ display:block; }
	.blog_img{
		display:inline;
		float:right;
		width:25%;
		margin: auto auto 24px 24px;
	}
}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}