/*  CSS stylesheet by RM copyright, for JADE site  */
/* Font Squirrel (http://www.fontsquirrel.com) on June 27, 2014 */
/*
@font-face {
    font-family: 'oswaldbold';
    src: url('oswald-bold-webfont.eot');
    src: url('oswald-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('oswald-bold-webfont.woff') format('woff'),
         url('oswald-bold-webfont.ttf') format('truetype'),
         url('oswald-bold-webfont.svg#oswaldbold') format('svg');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'oswaldlight';
    src: url('oswald-light-webfont.eot');
    src: url('oswald-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('oswald-light-webfont.woff') format('woff'),
         url('oswald-light-webfont.ttf') format('truetype'),
         url('oswald-light-webfont.svg#oswaldlight') format('svg');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'oswaldbook';
    src: url('oswald-regular-webfont.eot');
    src: url('oswald-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('oswald-regular-webfont.woff') format('woff'),
         url('oswald-regular-webfont.ttf') format('truetype'),
         url('oswald-regular-webfont.svg#oswaldbook') format('svg');
    font-weight: normal;
    font-style: normal;

}*/


@charset "utf-8";
* {
	padding: 0;
}
html {overflow-y: scroll;
	height: 100%;
}
* {
	margin: 0;
	padding: 0;
}

body {
	font: 14px/1.4 "Trebuchet MS", Arial, Helvetica, sans-serif;
	background: #FFF;
	margin: 5 0 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #171717;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #171717;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
position: relative;
width: 1090px;
max-width: 1300px;
margin: 0 auto;
background: #ffffff;
min-height: 100%;
padding: 0px;
margin-bottom: -85px;

}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
/*	background: #EEE;*/
	color: #999;
	padding: 10px;
	margin-bottom: 10px;
	text-shadow: #888888 0px 0px 3px;
}
.container {
font-family: 'Oswald' !important;
font-size:15px;
	color:black;
	background: #FFF;
}
.menutop {
margin-top: 30px;
 text-align: center;
}

.sidebar1 {
	float: left;
	width: 220px;
	padding-bottom: 2px;
	margin-bottom: 10px;
	margin-right: 10px;
}
.content {
    width: 76%;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-evenly;
    justify-content: space-evenly;
    align-items: center;
}
.content img{
	-ms-interpolation-mode:bicubic;
	}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
/*	padding: 0 15px 15px 40px; */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	/*border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px;
	font: bold 16px "Trebuchet MS", Arial, Helvetica, sans-serif;
}
ul.nav li {
	border-bottom: 1px dotted #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited, .nav .isub a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
/*text-shadow: 1px 1px 1px #BBB;*/
padding: 5px 5px 5px 15px;
display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
width: 200px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
text-decoration: none;
	background: rgb(255,255,255); /* Old browsers */

}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus,.nav .isub a:hover,.nav .isub a:active { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #FFF;
background: #666; /* old browsers */
background: -moz-linear-gradient(top, #666 0%, #e5e5e5 100%); /* firefox */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#666), color-stop(100%,#e5e5e5)); /* webkit */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#666666', endColorstr='#e5e5e5',GradientType=0 ); /* ie */
}
ul.nav div {
    padding-left: 27px;
    font-size: 12px;
}

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.clearfix:after {
    clear: both;
}
/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}
/* ~~ The footer ~~ */
footer {
	padding: 10px 0;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	text-align: center;
font-family: arial;
font-size:10px;
color: #6d6d6d;
text-decoration: none;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}


.menu_head_a {
	color: #00b178;
	padding-left: 10px;
	font: bold 16px Arial, Helvetica, sans-serif;
	text-shadow: 1px 1px 1px #666666;
	padding-bottom: 10px;
	padding-top: 15px;
}
.menu_head_b {
	color: #e9a203;
	padding-left: 10px;
	font: bold 16px Arial, Helvetica, sans-serif;
	text-shadow: 1px 1px 1px #666666;
	padding-bottom: 10px;
	padding-top: 15px;
}
.menutop a {
	color: black;
	text-decoration: none;
}

.nav_item{
padding-right:20px;
text-transform: uppercase;
}
#side_text {
font-size: 11px;
color: #AAA;
line-height: 120%;
}
#main {
max-width: 960px;
	float: left;
	padding: 5px;
	padding-bottom: 20px;
}
.list_item_h{
	display: block;
	font-size: 16px;
	font-weight: bold;
	color: #00283E;
	border-bottom: thin dotted #CCC;
	text-align: left;
	padding-left: 10px;

}
.cat_header {
width: 100%;
	margin-left: 25px;
	display: block;
	position: relative;
text-shadow: 1px 1px 2px grey;
}

.cat_header .ctitle_a,.ctitle_b {
font-family: 'Oswald' !important;
	color: #289375;
	font-size: 24px;
	font-weight: bold;
}
.ctitle_b {
color: #b1812b;
}
.cat_nav{
	color: #333;
	font-size: 14px;
	top: 0px;
	position: absolute;
	left: 400px;
	width: 150px;
	text-align: center;
}
.avcat {
    display: inline;
    font-weight: normal;
    color: gray;
    float: right;
    font-size: 12px;
    padding: 2px;
}
.list_clip {
	float: left;
	width: 200px;
	height: 210px;
	/*	padding: 5px;*/
	border: thin dotted #999;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin: 20px 20px 10px;
	text-align: center;
	position: relative;
}
#list_desc {
	font-size: 13px;
	background: #EEEEEE;
	display: block;
	position:absolute;
	right:0px;
	text-align: center;
	padding-right: 3px;
	padding-left: 3px;
	height: 35px;
	width: 194px;
	overflow:hidden;
	background: #ffffff; /* old browsers */
	background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* webkit */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 );
	bottom: 0px;
}
.list_tbl {
	margin: 10px;
	padding: 3px;
}
.item_cat {
	color: #666;
	margin-top: 10px;
	margin-left: 10px;
}
.item_title {
	font-size: 30px;
	font-weight: bold;
	margin-left: 20px;
	padding-left: 5px;
	color: #004972;
}
.item_subt {
	font-size: 16px;
	font-weight: bold;
	margin-left: 20px;
	padding-left: 5px;
	color: #004972;
}
#item_image {
	margin-top: 20px;
	margin-left: 30px;
	display: block;/*	border: thin dotted #CCC;
	padding: 20px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;*/
	-ms-interpolation-mode:bicubic;
}
#item_desc{
	margin-top: 10px;
	margin-left: 20px;
	display: block;
	/*border: thin dotted #CCC;*/
	padding: 5px;
	font: 14px Arial, Helvetica, sans-serif;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	width: 720px;
	vertical-align: top;
}
#item_desc ul{
margin-left:15px;
}
#main .item_cat a {
	text-decoration: none;
}

.item_title img {
	margin-left: 600px;
}

#printit {
	margin-left: 640px;
	margin-top: 10px;
	font-size: 12px;
	color: #666;
	font-style: italic;
	text-decoration: none;
}
.list_img {
vertical-align:middle;
margin: 10px auto 5px;
}
.list_img img{
max-width: 90%;
height: auto;
image-rendering:optimizeQuality;
-ms-interpolation-mode:bicubic;
}

.sector_clip{
/*float: left;*/
text-align:center;
position: relative;
margin: 0.5%;
display: inline-block;
vertical-align: top;
width: 25%;

height:180px;
margin: 0px 10px 20px 15px;
overflow:hidden;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
border-radius: 15px;
padding-top: 15px;

-webkit-box-shadow: 5px 10px 10px -8px rgba(141, 123, 141, 0.64);
-moz-box-shadow: 5px 10px 10px -8px rgba(141, 123, 141, 0.64);
box-shadow: 5px 10px 10px -8px rgba(141, 123, 141, 0.64);
}
.sec_title{
vertical-align: top;
padding:3px;
font-family: 'Oswald' !important;
font-size:15px;
font-style: normal;
font-weight: 300;
font-size:15px;
color: #666666;
text-transform: uppercase;
}
.sec_img img {
width: 210px;
height: auto;
border: 0;
-ms-interpolation-mode: bicubic;
}



@media only screen and (max-width: 767px) {
.content {
 width: 100%;
}

.sidebar1 {
    position: absolute;
    top: 49px;
    left: 50px;
    z-index: 100;
    float: none;
    width: initial;
}

.sector_clip {
width: 100%;
height: fit-content;
}
.sec_img img {
    width: 100%;
    height: auto;
}










footer {
font-size: 8px;
}

}