/*------------------------------------------------------------------------

        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 ------------------------------- */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,small, strong, sub, sup, var,
b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { margin: 0;  padding: 0; border: 0;  outline: 0;  font-size: 100%;  vertical-align: baseline;  background: transparent; }

body { line-height: 1; }

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; }
.head { width:100%; height:100px; background-color:#fff; text-align:center; }
.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 ------------------------------- */

* {margin: 0;
padding:0;
}

#fwslider {
	position: relative;
	width:1000px;
	overflow: hidden;
	height: 400px;
	margin:auto;
}

#fwslider .slider_container {

#fwslider .slide {
    display: none;
    position: absolute;
    top:0;
    left:0;
    z-index: 0;
    width:100%;
}

#fwslider .slide img {
	width:1000px;
	float:left;
}

#fwslider .slidePrev {
    background:#000;
    width:50px;
    height:50px;
    position: absolute;
    top:50%;
    left:-50px;
    opacity:0.5;
    z-index: 10;
}

#fwslider .slidePrev span {
    background-image:url("../img/left_arrow.png");
    width:50px;
    height:50px;
    float:left;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
}

#fwslider .slideNext {
    background:#000;
    width:50px;
    height:50px;
    position: absolute;
    top:50%;
    right:-50px;
    opacity:0.5;
    z-index: 10;
}

#fwslider .slideNext span {
    background-image:url("../img/right_arrow.png");
    width:50px;
    height:50px;
    float:left;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
}

#fwslider .timers {
	height:2px;
	position: absolute;
	bottom:40px;
	right:432px;
	z-index: 3;
}

#fwslider .timer {
	background-color: #fff;
    float: left;
    height: 3px;
    margin-right: 7px;
    width: 40px;
}

#fwslider .progress {
    height:3px;
    width:0%;
    background-color: #006;
    float:left;
}


/* ------------------------------- 3. Media Query Max Width 1400, Min Width 720 ------------------------------- */



@media only screen and (min-width:720px) and (max-width: 1400px) {

    #fwslider .slide_content_wrap { margin-left:75px; margin-top:15%;}
    #fwslider .title { font-size:26px; }
    #fwslider .description {  font-size:12px;}

}

/* ------------------------------- 4. Media Query Max Width 719 ------------------------------- */

@media only screen and (max-width:719px) {

    #fwslider .slide_content_wrap {
        margin:0 auto;
        height:100%;
    }
    
    #fwslider .slide_content_wrap h4, 
    #fwslider .slide_content_wrap p { display:none; }
    #fwslider .slide_content_wrap a {
        background: none;
        font-size: 0;
        width:100%;
        height: 100%;
        margin:0;
        padding:0;
        float:left;
    }
    
    
    #fwslider .timers { display:none; }
    #fwslider .slide_content {cursor: pointer;}

}
