/* 
    Document   : accordion
    Created on : Apr 9, 2010, 10:51:28 AM
    Author     : jaya.neti
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/


.AccordionTitle, .AccordionContent, .AccordionContainer, .AccordionContent_bkground
{
position:relative;
width:100%;
}

.AccordionTitle
{
height:60px;
overflow:hidden;
cursor:pointer;
font-family:Verdana;
font-size:9pt;
font-weight:bold;
vertical-align:left;
text-align:left;
background-repeat:repeat-x;
-moz-user-select:none;
}

.AccordionContent
{
height:auto;
overflow:hidden;
display:none;
}

.AccordionContent_bkground
{
    display: block;
    height: auto;
    background-color: #FFC;
}