/* container for slides */
.images {
    position:relative;
    margin-top:10px;
    width:980px;
    float:left;
    cursor:pointer;


}

/* single slide */
.images div {
    background-color:#494949;
    display:none;
    position:absolute;
    top:0;
    left:0;
	height:445px;
;
}

/* title */
.images h1 {
    font-size:24px;
    color:#ff463c;
    float: left;
    text-align:right;
    width:250px;
    margin:20px 15px 15px 50px;    
    
}
/* text */
.images p {
    font-size:14px;
    line-height:16px;
    color:#fff;
    float: right;
    width:580px;
    margin:25px 80px 15px 5px;
    
}




/* tabs (those little circles below slides) */
.slidetabs {
   float:left;
    margin-left:425px;
    margin-top:310px;
    position: absolute;
}

/* single tab */
.slidetabs a {
    width:8px;
    height:8px;
    float:left;
    margin:3px;
    background:url(../img/navigator.png) 0 0 no-repeat;
    display:block;
    font-size:1px;
}

/* mouseover state */
.slidetabs a:hover {
    background-position:0 -8px;
}

/* active state (current page state) */
.slidetabs a.current {
    background-position:0 -16px;
}


/* prev and next buttons */
.forward, .backward {
    background: url(../img/hori_large.png) no-repeat;
    display:block;
    width:30px;
    height:100px;
    cursor:pointer;
    font-size:1px;
    text-indent:-9999em;
    position:absolute;
    margin-top:336px;
    
}

.forward {  margin-left:930px; float: right;}
.backward { margin-left:20px; float:left;}





/* next */
.forward { background-position: 0 -100px; clear:right; }
.forward:hover { background-position:-30px -100px; }
.forward:active	{ background-position:-60px -100px; }


/* prev */
.backward { background-position: 0 0px; clear:right; }
.backward:hover	{ background-position:-30px 0; }
.backward:active { background-position:-60px 0; }

/* disabled navigational button. is not needed when tabs are
   configured with rotate: true */
.disabled {
    visibility:hidden !important;
}