@charset "utf-8";

body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background-color: rgb(255, 255, 255);
	margin: 0;
	padding: 0;
	color: #333;
}

/* ~~ 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;
}

p {
    padding: 3px 15px;
    margin: 3px 0;
	text-align:justify;
}

h1 {
    padding-bottom: 3px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 12px;
    margin-bottom: 0px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 0px;
}

h2, h3 {
    padding-bottom: 3px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 12px;
    margin-bottom: 20px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 0px;
}

h4, h5, h6 {
    padding-bottom: 3px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 12px;
    margin-bottom: 0px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 0px;
    border-bottom: solid 2px black;
}
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;
	outline: 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:#414958;
	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: #993300;
	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 container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 80%;
	max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 1024px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	background-color: #FFF;
	margin: 10px auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}

/* ~~ 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-color: #FFFFFF;
	height: 187px;
}


.sidebar1 {
	float: left;
	width: 20%;
	padding-bottom: 10px;
	margin-top: 10px;
}
.content {
	padding: 10px 0;
	width: 60%;
	float: left;
}
.sidebar2 {
	float: right;
	width: 20%;
	padding-bottom: 10px;
	margin-top: 10px;
}

.gradient {
    background: -moz-linear-gradient(top,  rgba(255,183,183,0.31) 0%, rgba(214,139,139,0.54) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,183,183,0.31)), color-stop(100%,rgba(214,139,139,0.54))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(255,183,183,0.31) 0%,rgba(214,139,139,0.54) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(255,183,183,0.31) 0%,rgba(214,139,139,0.54) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(255,183,183,0.31) 0%,rgba(214,139,139,0.54) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(255,183,183,0.31) 0%,rgba(214,139,139,0.54) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4fffb7b7', endColorstr='#8ad68b8b',GradientType=0 ); /* IE6-9 */
    border-radius:3px;
    margin-bottom: 15px;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ol  {
	padding: 5px 15px 15px 40px;
}
.content ul{ 
	padding: 5px 15px 15px 30px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

.content ul {

	list-style: none;
}

.content ul li {
    background: url('../img/bullet.png') no-repeat 0 0;
    padding: 0px 0px 5px 22px;
    min-height: 30px;
}
/* ~~ 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 */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	width:100%;
}
ul.nav li {
	margin-bottom: 3px; /* this creates the button separation */
	border-radius:5px;
	display:table;
	width:100%;
	position:relative;
	border: solid 2px #d84545;
	
	background: #db2323; /* Old browsers */
	background: -moz-linear-gradient(top,  #db2323 0%, #dd5454 50%, #dd0808 51%, #dd1616 63%, #e02626 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#db2323), color-stop(50%,#dd5454), color-stop(51%,#dd0808), color-stop(63%,#dd1616), color-stop(100%,#e02626)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #db2323 0%,#dd5454 50%,#dd0808 51%,#dd1616 63%,#e02626 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #db2323 0%,#dd5454 50%,#dd0808 51%,#dd1616 63%,#e02626 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #db2323 0%,#dd5454 50%,#dd0808 51%,#dd1616 63%,#e02626 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #db2323 0%,#dd5454 50%,#dd0808 51%,#dd1616 63%,#e02626 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#db2323', endColorstr='#e02626',GradientType=0 ); /* IE6-9 */
}
ul.nav li:hover,ul.nav li:visited {
        border: solid 2px #db2323;
        transition: all 300ms ease-in;
        	background: #d84545; /* Old browsers */
			background: -moz-linear-gradient(top,  #d84545 0%, #db7d7d 50%, #db2e2e 51%, #db4141 63%, #dd5454 100%); /* FF3.6+ */
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d84545), color-stop(50%,#db7d7d), color-stop(51%,#db2e2e), color-stop(63%,#db4141), color-stop(100%,#dd5454)); /* Chrome,Safari4+ */
			background: -webkit-linear-gradient(top,  #d84545 0%,#db7d7d 50%,#db2e2e 51%,#db4141 63%,#dd5454 100%); /* Chrome10+,Safari5.1+ */
			background: -o-linear-gradient(top,  #d84545 0%,#db7d7d 50%,#db2e2e 51%,#db4141 63%,#dd5454 100%); /* Opera 11.10+ */
			background: -ms-linear-gradient(top,  #d84545 0%,#db7d7d 50%,#db2e2e 51%,#db4141 63%,#dd5454 100%); /* IE10+ */
			background: linear-gradient(to bottom,  #d84545 0%,#db7d7d 50%,#db2e2e 51%,#db4141 63%,#dd5454 100%); /* W3C */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d84545', endColorstr='#dd5454',GradientType=0 ); /* IE6-9 */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	text-decoration: none;
	color: #FFF;
	transition: all 300ms ease-in;
	height: 40px;
	text-align: center;
	vertical-align: middle;
	font-size: 18px;
	display: table-cell;
	position:relative;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #000;
        display: table-cell;
        transition: all 300ms ease-in;
}

.nav2 {
	position: absolute;
	padding-left: 6px;
	width: 160px;
}

.nav2 li {
	margin-bottom: 3px; /* this creates the button separation */
	border-radius:5px;
	display:table;
	width:100%;
	padding-left: 6px;
}

.nav li:hover, .nav2 li:hover, .nav li:focus, .nav2 li:focus, .nav li:active, .nav2 li:active {
		-webkit-transform: scale(1.03);
		-moz-transform: scale(1.03);
		-ms-transform: scale(1.03);
		transform: scale(1.03);
}

.nav2 li a, .nav2 li a:visited {
	/* [disabled]padding: 5px 5px 5px 15px; */
	text-decoration: none;
	background: #db2323; /* Old browsers */
	background: -moz-linear-gradient(top,  #db2323 0%, #dd5454 50%, #dd0808 51%, #dd1616 63%, #e02626 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#db2323), color-stop(50%,#dd5454), color-stop(51%,#dd0808), color-stop(63%,#dd1616), color-stop(100%,#e02626)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #db2323 0%,#dd5454 50%,#dd0808 51%,#dd1616 63%,#e02626 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #db2323 0%,#dd5454 50%,#dd0808 51%,#dd1616 63%,#e02626 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #db2323 0%,#dd5454 50%,#dd0808 51%,#dd1616 63%,#e02626 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #db2323 0%,#dd5454 50%,#dd0808 51%,#dd1616 63%,#e02626 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#db2323', endColorstr='#e02626',GradientType=0 ); /* IE6-9 */
	color: #FFF;
	transition: all 300ms ease-in;
	height: 25px;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
	display: table-cell;
}

.nav2 li a:hover, .nav2 li a:focus, .nav2 li a:active {
		background: #d84545; /* Old browsers */
		background: -moz-linear-gradient(top,  #d84545 0%, #db7d7d 50%, #db2e2e 51%, #db4141 63%, #dd5454 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d84545), color-stop(50%,#db7d7d), 		color-stop(51%,#db2e2e), color-stop(63%,#db4141), color-stop(100%,#dd5454)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  #d84545 0%,#db7d7d 50%,#db2e2e 51%,#db4141 63%,#dd5454 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  #d84545 0%,#db7d7d 50%,#db2e2e 51%,#db4141 63%,#dd5454 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  #d84545 0%,#db7d7d 50%,#db2e2e 51%,#db4141 63%,#dd5454 100%); /* IE10+ */
		background: linear-gradient(to bottom,  #d84545 0%,#db7d7d 50%,#db2e2e 51%,#db4141 63%,#dd5454 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d84545', endColorstr='#dd5454',GradientType=0 ); /* IE6-9 */
		color: #000;
		font-weight:bold;
}

ul.nav2 li:hover, ul.nav2 li:focus, ul.nav2 li:active,ul.nav li:hover, ul.nav li:focus, ul.nav li:active {
-webkit-box-shadow: 0px 0px 19px 2px rgba(212,23,23,0.85);
-moz-box-shadow: 0px 0px 19px 2px rgba(212,23,23,0.85);
box-shadow: 0px 0px 19px 2px rgba(212,23,23,0.85);
}



/* ~~The footer ~~ */
.footer {
	padding: 6px 0;
	background-color: #FFFFFF;
	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 */
	border-top: solid 2px #000;
        padding-bottom: 10px;
}


#title {
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top,  #ffffff 0%, #ffffff 56%, #ff0000 78%, #ffffff 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(56%,#ffffff), color-stop(78%,#ff0000), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #ffffff 0%,#ffffff 56%,#ff0000 78%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #ffffff 0%,#ffffff 56%,#ff0000 78%,#ffffff 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #ffffff 0%,#ffffff 56%,#ff0000 78%,#ffffff 100%); /* IE10+ */
background: linear-gradient(to bottom,  #ffffff 0%,#ffffff 56%,#ff0000 78%,#ffffff 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	width: 58%;
	height: 100%;
	float: left;
}


.gall_div {
	display: inline-block;
	border: solid thin #000;
	border-radius:3px;
	-webkit-box-shadow: 3px 3px 12px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    3px 3px 12px rgba(50, 50, 50, 0.75);
	box-shadow:         3px 3px 12px rgba(50, 50, 50, 0.75);
	width: 120px;
	height: 100px;
	padding: 6px;
	margin: 6px;
	float: left;
	transition:all ease-in 200ms;
}

.gall_div:hover {
	border-color:#999;
	-webkit-box-shadow: 3px 3px 12px rgba(50, 50, 50, 1);
	-moz-box-shadow:    3px 3px 12px rgba(50, 50, 50, 1);
	box-shadow:         3px 3px 12px rgba(50, 50, 50, 1);
	transition:all ease-in 200ms;
}

.gall_div a div {
	display:block;
	width: 100%;
	height: 80%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	padding: 0;
	margin: 0;
}
.gall_div a span {
	display:block;
	text-align:center;
	margin-top:4px;
}

.nav_sep {
	height:90%; 
	width:1px; 
	margin-top:5px; 
	border-left:#000 solid 1px; 
	position:relative; 
	left:55px;
	transition:all ease-in 200ms;
	display:none;
}

.nav_sep:hover {
	height:90%; 
	width:1px; 
	margin-top:5px; 
	border-left:#000 solid 1px; 
	position:relative; 
	left:25px;
	transition:all ease-in 200ms;
	display:none;
}

.gauge {
	margin:10px 0;
	width: 210px;
	height: 170px;
	display:block;
	border:double 1px black;
	border-radius:4px;
	
}

form {
	margin-left: 10px;
}
form input, form textarea, form select {
	border-radius: 3px;
	border:solid blue 1px;
}
form input:focus, form textarea:focus, form select:focus {
	border-radius: 3px;
	border:solid blue 1px;
	-webkit-box-shadow: 0px 0px 20px rgba(50, 50, 50, 0.87);
	-moz-box-shadow:    0px 0px 20px rgba(50, 50, 50, 0.87);
	box-shadow:         0px 0px 20px rgba(50, 50, 50, 0.87);
}

.arrow {
	position: relative;
	/* [disabled]left: 150px; */
	top: 0.16em;
	background: url('../img/arrow_right.png') no-repeat;
	background-size: contain;
	background-position: center;
	width: 20px;
	height: 20px;
	z-index: 500;
	float: right;
}

table tr td {
	padding:2px 5px;
}


/*My slider styles*/
.my_slider {
    width:200px;
    height:150px;
    overflow: hidden;
    position:relative;
    list-style: none outside none;
    padding:0;
    margin:5px;
}
.my_slider li {
    position: absolute;
    top: 0px;
    left: 0px;
	display:none;
}
.my_slider li:first-child {
    display:block;
}
.my_slider li img { 
    height: 150px;
    width: 100%;
	display:block;
}
.counter {
    text-align:right;
    font-size:16px;
    width:100%;
	margin-right:10px;
}
.places {
	width: 95%;
	min-height: 300px;
	overflow:auto;
	overflow-x:hidden;
	overflow-y:hidden;
	border: solid black 1px;
	border-radius: 2px;
	padding: 5px;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 20px;
}


.newsbox ul {width:91%;}
.newsbox ul li {
	width: 100%;
	border-bottom: solid grey 1px;
}
