html {
	height: 100%;
	overflow: hidden;
}

/*
RUST COLORS:
red: rgb(206,66,43);
blackish: rgb(40,28,28);
whiteish: rgb(246,234,224) - F6EAE0;
*/

body {
	font-family: 'Armata', 'Open Sans', sans-serif;
	background-color: #1E2020;
	font-size: 14px;
	height: 100%;
	overflow: hidden;
        color: #A1ACAC;
}

/* ************************ */

.strike-through {
	text-decoration: line-through;
}

.underline {
	text-decoration: underline;
}

.no-wrap {
	white-space: nowrap;
}

blockquote {
	padding: 5px;
	margin: 10px 0px;
	border-left: 4px solid #E5E2E3;
	font-size: inherit;
}

h1 {
	font-family: 'Rust', sans-serif;
	font-size: 30px;
	margin: 10px 0px 5px 0px;
        color: #F6EAE0;
}

h2 {
	font-family: 'Rust', sans-serif;
	font-size: 24px;
	margin: 10px 0px 10px 0px;
	border-bottom: 1px solid #CCC;
        color: #F6EAE0;
}

h3 {
	font-family: 'Rust', sans-serif;
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0px 5px 0px;
        color: #F6EAE0;
}

p {
	margin: 0px 0px 15px 0px;
}

a {
        color: #CE422B;
	text-decoration: none;
	cursor: pointer;
}

a:hover,
a:focus {
  color: #FFFFFF;
  text-decoration: none;
}

.inline {
	display: inline;
}

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

ul, ol {
	padding: 0px 0px 0px 25px;
	margin: 10px 0px;
}

ul li, ol li {
	line-height: 30px;
}

.highlight {
	font-weight: bold;
	font-style: italic;
}

/* ************************ */
/* *** BOOTSTRAP EXTRAS *** */
/* ************************ */

.col-equal {
	margin-bottom: -99999px !important;
    padding-bottom: 99999px !important;
}

.col-equal-cutoff {
	overflow: hidden;
}

/* ************** */
/* *** HEADER *** */
/* ************** */
header {
	padding-bottom: 30px;
}

#index-nav {
	padding-bottom: 75px;
}

header .navbar,
#index-nav .navbar {
	border-radius: 0px;
	border: 1px solid #ABABAB;


	margin-top: 15px;
	margin-bottom: 0px;

	background-color: rgb(153,203,157);
}

header .navbar.center .navbar-wrap,
#index-nav .navbar.center .navbar-wrap {
    text-align: center;
	height: 50px;
}

header .navbar.center .nav,
#index-nav .navbar.center .nav {
    display:inline-block;
    float: none;
}

header .navbar li a,
#index-nav .navbar li a {
	font-size: 20px;
	font-family: 'Armata', sans-serif;
}

header .navbar li.active a,
#index-nav .navbar li.active a {
	background-color: transparent !important;
	color: #000000;
}

/* *************** */
/* *** CONTENT *** */
/* *************** */

.content {

}

/* ************** */
/* *** FOOTER *** */
/* ************** */

footer {
    height: 30px;
    text-align: center;
    font-size: 10px;
}

/* *** *** *** *** *** *** *** *** *** *** *** *** *** */
/* *** *** *** *** *** *** *** *** *** *** *** *** *** */
/* *** RESPONSIVE STYLES ***************************** */
/* *** *** *** *** *** *** *** *** *** *** *** *** *** */
/* *** *** *** *** *** *** *** *** *** *** *** *** *** */

/* ****************************************** */
/* Large devices lg (desktops, 1200px+) */
@media (min-width: 1200px ) {

}


/* ****************************************** */
/* Medium devices md (desktops, 992px to 1199px) */
@media (min-width: 992px ) and (max-width: 1199px) {

}

/* **************************************** */
/* Small devices sm and larger (tablets, 768px+ ) */
@media (min-width: 768px) {

}

/* **************************************** */
/* Small devices sm (tablets, 768px to 991px ) */
@media (min-width: 768px ) and (max-width: 991px ) {

}


/* *************************************************** */
/* Medium small ms and smaller ( mobiles, 480px to 767px */
@media (max-width: 767px ) {

}


/* *************************************************** */
/* Extra small devices xs and larger ( mobiles, 479px and below) */
@media ( max-width: 479px ) {

}
/* *************************************************** */
/* DO NOT USE FOR TESTING PURPOSE ONLY !! */
/*
	IPhone 1,2,3 -  320 x  480
	IPhone 4	 -  640 x  960
	IPhone 5	 -  640 x 1136
	Ipad Mini	 -  768 x 1024
	Ipad		 -	768 x 1024
	Ipad 2+		 - 1536 x 2048
*/
@media ( max-width: 320px ) {}