/* Core Styles */
/* These styles are core to the functionality of the oc-expander.  Change at your own risk */
.js .oc-expander-panel { display: none; }
.oc-expander-link { position: relative; }

/* Customizable styles */
a.oc-expander-link {
    display: block;
    padding: 5px 10px 4px 30px;
    margin: 0px;
    border: 1px solid #ccc;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    text-decoration: none;
    color: #666;
    background-color: #eee;
    font-size: 1.1em;
    text-transform: uppercase;
}

    
a.oc-expander-closed {
    background-image: url(../images/oc-expander-closed.png);
    background-position: 7px center;
    background-repeat: no-repeat;
}
a.oc-expander-open {
    background-image: url(../images/oc-expander-open.png);
    background-position: 7px center;
    background-repeat: no-repeat;
}
.oc-expander-content {
    padding: 5px;
}