@charset "utf-8";
/* CSS Document */


#accordion-container {
    width:965px; 
    height:400px; 
    overflow:hidden; 
    background-color:#000; 
    position:relative;
    border:none; 
    margin-left:0px; 
    margin-top:0px;
}

#accordion-container .slide 
{
    width:860px;  
    height:420px; 
    position: absolute;  
    border-left:1px solid #222;  
    left:0px; 
    top:0px;
    background-color:black; 
    cursor:pointer;
    
}

#accordion-container .slide .strip-desc-full
{
  position: absolute;
  left: 0px;
  bottom:20px;
  text-transform:none;
  color: #FFF; 
  background-color:#000000;
  padding:10px;
  margin:0px; 
  height:50px;
  width:100px; 
  opacity:0.95;
  filter:alpha(opacity=95); /* IE */      
}

#accordion-container .slide .shadow
{
    width:30px;
    height:420px;
    background-image:url('../img/accordion/img/shadow.png');
    background-repeat:no-repeat;
    background-color:transparent;
    background-position:0px 0px;
    position:absolute;
    left:-30px;
    top:0px;
}

#accordion-container .slide .image 
{
    border-left: 0px solid #AAA; 
    width:860px; 
    height:420px;
	display:block;
    
   background-image: url('../img/ajax/10.gif');
   background-repeat: no-repeat;
   background-position: 50% 50%; 
}    

#accordion-container .slide .image img
{
    border:none;
}

#accordion-container .slide .text-back 
{
    bottom:-90px;
    margin-left:0px;
    margin-top:0px;
    position:absolute;
    left:0px;
    width:900px;
    height:90px;
    opacity:0.0;
    filter:alpha(opacity=0); /* IE */ 
    background-color:#000;
    border-top:1px solid #111;
}

#accordion-container .slide .text 
{
    padding-top:0px;
    padding-left:0px;
    text-align:left;
    color:#DDD;
    bottom:-90px;
    margin-left:0px;
    margin-top:0px;
    position:absolute;
    left:0px;
    width:580px;
    height:90px;
    opacity:0.0;
    filter:alpha(opacity=0); /* IE */ 
    background:none;
    border:0px solid red;
}

#accordion-container .slide h5 
{
    color:#FFF;
    font-weight:bold;
    margin-top:8px;
    margin-bottom:8px;
}

    





