@import url(../../../warp/css/tools.css);


/* Add larger margin to headings within articles
----------------------------------------------------------------------------------------------------*/
/*
#maininner h1,
#maininner h2,
#maininner h3,
#maininner h4,
#maininner h5,
#maininner h6 { margin-top: 25px; }
*/


/* Inverted
----------------------------------------------------------------------------------------------------*/
.hp_inverted { background-color: #333; }
.hp_inverted,
.hp_inverted h1,
.hp_inverted h2,
.hp_inverted h3,
.hp_inverted h4,
.hp_inverted h5,
.hp_inverted h6 { color: #fff; }

/* Text
----------------------------------------------------------------------------------------------------*/
.bold {
	font-weight: bold;
}
.heading-xl {
	font-size: 65px;
	line-height: 70px;
}
p.lead {
	font-size: 18px;
	line-height: 28px;
	font-weight: normal;
}
.hp_green {
	color: #8bb646;
}
.hp_yellow {
	color: #F0D131;
}
.hp_teal {
	color: #6cb5c0;
}
.title-caps {
	text-transform: capitalize;
}

.hp_success {
	border-top: 2px solid;
	border-bottom: 2px solid;
	padding: 10px;
	background: #fafff2;
	color: #628033;
}
.hp_info {}
.hp_warning {
	border-top: 2px solid;
	border-bottom: 2px solid;
	padding: 10px;
	background: #fffdf2;
	color: #c78800;
}
.hp_error {
	border-top: 2px solid;
	border-bottom: 2px solid;
	padding: 10px;
	background: #fff2f2;
	color: #a72525;
}



/* Inline Text Box */
em.box { 
	border: 1px dotted #bbb;
	background: #fafafa;
	color: #444;
}

/* Dotted Horizontal Rule */
hr.dotted { background: url(../images/tools/line_dotted.png) 0 0 repeat-x; }


/* Hero Unit
----------------------------------------------------------------------------------------------------*/
.hp_hero, .hp_hero:before, .hp_hero:after {
	-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}
.hp_hero { 
	position: relative;
	padding: 60px 0;
	min-height: 180px;
	font-size: 20px;
	line-height: 30px;
	text-shadow: 0 2px 3px rgba(0,0,0,.5);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.hp_hero h1 {
	color: #F0D131;
	font-weight: bold;
}
.hp_hero .contentbox { position: relative; }
.hp_hero .contentbox.text-center { padding: 0 10%; }
.hp_hero .contentbox.text-left { padding: 0 20% 0 15px; }
.hp_hero .contentbox.text-right { padding: 0 15px 0 20%; }

/* Table Cell Vert/Horiz Align Middle */
.hp_table {
	display: table;
	width: 100%;
}
.hp_table-cell {
	display: table-cell;
	vertical-align: middle;
}

/* Heading with Borders
----------------------------------------------------------------------------------------------------*/
.hp_border-header {
	border-top: 2px solid;
	border-bottom: 2px solid;
	padding: 8px 0;
	font-weight: bold;
	letter-spacing: 0.1em;
}

/* JS Toggle Drawer
----------------------------------------------------------------------------------------------------*/
.hp_drawer-box {
	display: none;
}

/* Buttons (Needed for System Markup)
----------------------------------------------------------------------------------------------------*/

.button-default,
.button-primary,
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"],
form.box input[type="button"] {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
	padding: 15px 25px;
	border: 0 none;
	background-color: #c44931;
	font-family: "proxima-nova", Arial, Helvetica, sans-serif;
	color: #fff !important;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	line-height: normal;
	letter-spacing: 0.05em;
	cursor: pointer;
	-webkit-border-radius: 3px;
		 -moz-border-radius: 3px;
					border-radius: 3px;
	-webkit-transition: .1s ease all;
		 -moz-transition: .1s ease all;
			 -o-transition: .1s ease all;
					transition: .1s ease all;
}

.button-default:hover,
.button-primary:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
form.box input[type="button"]:hover {
	border: 0 none;
	background-color: #d24a30;
	color: #fff !important;
}

.button-default:active,
.button-primary:active,
.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
form.box input[type="button"]:active {
	border: 0 none;
	background-color: #b9442d;
	outline: 0 none;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.3) inset;
		 -moz-box-shadow: 0 1px 3px rgba(0,0,0,.3) inset;
					box-shadow: 0 1px 3px rgba(0,0,0,.3) inset;
}

.button.full-width,
button.full-width,
input[type="submit"].full-width,
input[type="reset"].full-width,
input[type="button"].full-width,
form.box input[type="button"].full-width {
	width: 100%;
	padding-left: 0 !important;
	padding-right: 0 !important;
	text-align: center;
}

.button.mini {
	padding: 6px 12px;
	font-size: 12px;
}
.button.small {
	padding: 8px 15px;
	font-size: 12px;
}
.button.large {
	padding: 20px 28px;
}
.button.huge {
	padding: 30px 48px;
	font-size: 22px;
}
	
.button.outline {
	background: transparent;
	color: #8bb646 !important;
	border: 1px solid;
}
.button.outline:hover {
	color: #78a03a !important;
}
.button.outline:active {
	color: #6f933c !important;
}

.button.outline-white {
	background-color: rgba(255,255,255,.15);
	border: 1px solid #fff;
	border: 1px solid rgba(255,255,255,.6);
}
.button.outline-white:hover {
	background-color: rgba(255,255,255,.3);
	border: 1px solid rgba(255,255,255,.8);
}
.button.outline-black {
	color: #333 !important;
	background-color: rgba(20,20,20,.15);
	border: 1px solid #fff;
	border: 1px solid rgba(10,10,10,.6);
}
.button.outline-black:hover {
	background-color: rgba(20,20,20,.3);
	border: 1px solid rgba(10,10,10,.8);
}

/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}


/* Images and Objects (Needed for System Markup)
----------------------------------------------------------------------------------------------------*/

img.border-box { border: 1px solid #ebebeb; }

figure {
	display: block;
	background-color: rgba(18,19,20,.6);
	line-height: 12px;
}
figcaption {
	display: block;
	padding: 5px 10px;
	font-size: 12px;
}

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


/* Lists and Tables (Needed for System Markup)
----------------------------------------------------------------------------------------------------*/

/* Line */
ul.line > li { border-top: 1px solid #ebebeb; }
ul.line > li:first-child { border: none; }

/* Check */
ul.check > li {
	padding: 4px 0 0 30px;
	background: url(../images/tools/list_check.png) 0 0 no-repeat;
}

/* Zebra List and Table */
ul.zebra > li,
table.zebra tbody td { border-bottom: 1px solid #ebebeb; }
ul.zebra > li:first-child,
table.zebra tbody tr:first-child td { border-top: 1px solid #ebebeb; }

ul.zebra > li.odd,
table.zebra tbody tr.odd { background: #fafafa; }
ul.zebra > li:nth-of-type(odd),
table.zebra tbody tr:nth-of-type(odd) { background: #fafafa; }

table.zebra caption { color: #999; }


/* Definition Lists
----------------------------------------------------------------------------------------------------*/

dl.separator dt {	
	position: relative;
	padding-top: 5px;
	padding-bottom: 5px;
	text-transform: uppercase;
}

/* border code because of RTL */
dl.separator dd {
	padding-top: 5px;
	padding-bottom: 5px;
	border-width: 0 0 0 1px;
	border-style: solid;
	border-color: #ebebeb;
}

dl.separator dt:before {
	content: "";
	position: absolute;
	top: 0;
	right: -15px;
	width: 30px;
	border-top: 1px solid #ebebeb;
}

dl.separator dt:after {
	content: "";
	position:absolute;
	top: -3px;
	right: -4px;
	width: 5px;
	height: 5px;
	background: #FFF;
	border: 1px solid #ebebeb;
	border-radius:6px;
}

dl.separator dt:first-child:before,
dl.separator dt:first-child:after { display: none; }


/* Boxes
----------------------------------------------------------------------------------------------------*/

.box-note,
.box-info,
.box-warning,
.box-hint,
.box-download {
	background: #fafafa;
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
}

.box-info {
	background: #ebf5fa url(../images/tools/box_info.png) 0 0 no-repeat;
	border-color: #d2dce1;
}

.box-warning {
	background: #fff0eb url(../images/tools/box_warning.png) 0 0 no-repeat;
	border-color: #ffd7cd;
}

.box-hint {
	background: #fffae6 url(../images/tools/box_hint.png) 0 0 no-repeat;
	border-color: #fae6be;
}

.box-download {
	background: #faffe6 url(../images/tools/box_download.png) 0 0 no-repeat;
	border-color: #dce6be;
}


/* Forms (Needed for System Markup)
----------------------------------------------------------------------------------------------------*/

form.box fieldset { border: 1px solid #ebebeb; }
form.box legend { background: #fff; }


/* Widgetkit
----------------------------------------------------------------------------------------------------*/
.wk-slideshow-harmony img {
	width: 100%;
	height: auto !important;
}