/*------------------------------------------------------------------------

        Name: Full Width Slider 2.0
        Design and Develpment: eightyclouds
        Author URI: http://www.eightyclouds.com
        Version: 1.0

--------------------------------------------------------------------------

   01. CSS Reset
   02. Head Styles
   03. Top Slider Styles
   04. Media Query Max Width 1300, Min Width 720
   05. Media Query Max Width 719
   
*/

/* ------------------------------- 1. Resets ------------------------------- */


article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
nav ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input, select {
	vertical-align: middle;
}
/* ------------------------------- 2. Head Styles - Not Important for the Slider. Demo Purpose Only! ------------------------------- */


.head {
	width:100%;
	height:201px;
	text-align:center;
	background:url("topbar.jpg") no-repeat center top;
}
.head h1 {
	font-family:Arial, Helvetica, sans-serif;
	color:#000;
	line-height:100px;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size:30px;
}
/* ------------------------------- 3. Slider Styles ------------------------------- */

#fwslider {
	position: relative;
	background:#fff;
	width:1100px;
}
#fwslider .slider_container {
}
#fwslider .slide {
	display: none;
	position: absolute;
	top:0;
	left:0;
	z-index: 0;
	width:100%;
}
#fwslider .slide img {
	width:100%;
}
#fwslider .slidePrev {
	background:#000;
	width:32px;
	height:32px;
	position: absolute;
	top:50%;
	left:-50px;
	opacity:0.5;
	z-index: 10;
}
#fwslider .slidePrev span {
	background-image:url("left_arrow.png");
	width:32px;
	height:32px;
	float:left;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
}
#fwslider .slideNext {
	background:#000;
	width:32px;
	height:32px;
	position: absolute;
	top:50%;
	right:-50px;
	opacity:0.5;
	z-index: 10;
}
#fwslider .slideNext span {
	background-image:url("right_arrow.png");
	width:32px;
	height:32px;
	float:left;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
}
#fwslider .timers {
	height:4px;
	position: absolute;
	bottom:20px;
	right:0;
	z-index: 3;
	right:-100px;
}
#fwslider .timer {
	height:14px;
	width:14px;
	background-color: #CCCCCC;
	float:left;
	margin-right: 10px;
	border-radius:20px;
}
#fwslider .progress {
	height:14px;
	width:0%;
	background-color: #dd7b32;
	float:left;
	border-radius:20px;
}
#fwslider .slide_content {
	top:0px;
	left:10px;
	position: absolute;
	width:100%;
	height:100%;
}
#fwslider .slide_content_wrap { /* Slider Text Content Container Style */
	max-width:1280px;
	margin:15% auto;
}
#fwslider .title1 {  /* Slider Title Style */
	opacity: 0;
	color:#fff;
	font-size:22px;
	background:#000;
	padding:8px;
	float:left;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	opacity:0.8;
	margin-top:100px;
}
#fwslider .description1 { /* Slider Description Style */
	opacity: 0;
	color:#000;
	font-size:16px;
	background:#fff;
	padding:8px;
	clear:both;
	float:left;
	margin-top:2px;
	line-height:24px;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
}
#fwslider .readmore { /* Slider Read More button Style */
	opacity: 0;
	clear:both;
	float:left;
	text-transform:uppercase;
	font-size:10px;
	color:#919191;
	background:#000;
	padding:10px;
	text-decoration: none;
	margin-top:2px;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
}
#fwslider .readmore:hover {
	color:#fff;
}
.footer {
	width:100%;
	height:1429px;
	text-align:center;
	background:url("footer.jpg") no-repeat center top;
}
.footer p {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size:12px;
	color:#585858;
	margin-top:20px;
}

/* ------------------------------- 4. Media Query Max Width 1300, Min Width 720 ------------------------------- */



@media only screen and (min-width:720px) and (max-width: 1300px) {
 #fwslider .slide_content_wrap {
margin-left:50px;
margin-top:15%;
}
 #fwslider .title {
font-size:26px;
}
 #fwslider .description {
font-size:12px;
}
}

/* ------------------------------- 5. Media Query Max Width 719 ------------------------------- */

@media only screen and (max-width:719px) {
 #fwslider .slide_content_wrap {
display:none;
}
 #fwslider .timers {
display:none;
}
 #fwslider .slide_content {
cursor: pointer;
}
}
