/**
 * ----------------------------------------------------------------------------
 * toggleElements.css - Stylesheet for jQuery-Plugin toggleElements
 * ----------------------------------------------------------------------------
 */

/* Screen ------------------------------------------------------------------- */

@media projection, screen {

/* Toggler - default style */
.toggler {
    width:123px;
   margin:5px 0 24px 0;
    cursor:pointer;
    text-decoration: none;
    font-size: 1.2em;
    font-weight:bold;
    display: block;
}
.toggler-closed {
    margin-bottom:0px;
    color:#333;
    padding-left:10px;
    padding-top:5px;
    height:20px;
    background: #f6f7f6 url('/assets/js/toggleElements/togglerc.gif') right 8px no-repeat;
    border: solid 1px #e4e5e4;
}
.toggler-closed:hover {
    margin-bottom:0px;
    color: #000;
    padding-left:10px;
    padding-top:5px;
    height:20px;
    background: #fff url('/assets/js/toggleElements/togglerch.gif') right 8px no-repeat;
    border: solid 1px #e4e5e4;
}
.toggler-opened {
    margin-bottom:0px;
    color:#333;
    padding-left:10px;
    padding-top:5px;
    height:20px;
    background: #f6f7f6 url('/assets/js/toggleElements/togglero.gif') right 8px no-repeat;
    border: solid 1px #e4e5e4;
}
.toggler-opened:hover {
    margin-bottom:0px;
    color: #000;
    padding-left:10px;
    padding-top:5px;
    height:20px;
    background: #fff url('/assets/js/toggleElements/toggleroh.gif') right 8px no-repeat;
    border: solid 1px #e4e5e4;
}

/* Container - default style */
.toggler-c {
    width:123px;
   margin:-25px 0px 15px 0px;
   padding-left:10px;
   padding:5px;
}
.toggler-c-closed {
    width:123px;
   margin:-1px 0px 15px 0px;
   padding-left:10px;
   padding:5px;
   background:#fbfcfb;
   border:solid 1px #e4e5e4;

}
.toggler-c-opened {
    width:123px;
   margin:-1px 0px 15px 0px;
   padding-left:10px;
   padding:5px;
   background:#fbfcfb;
   border:solid 1px #e4e5e4;
}

.toggler-c-closed p {
   margin:0;
   padding:0;
   text-align:center;
}

.toggler-c-opened p {
   margin:0;
   padding:0;
   text-align:center;
}

.col1 .toggler {
color:#1f4db0;
}

.col1 .toggler-c-opened a {
color:#4e4f4e;
}

.col1 .toggler-c-closed a {
color:#4e4f4e;
}

.col1 .toggler-c-opened a:hover {
text-decoration:underline;
}

.toggler span {
font-size:.8em;
}

.toggler-c-opened p.current,
.toggler-c-closed p.current {
color:#868685;
font-style: italic;
}

}

/* Print -------------------------------------------------------------------- */
@media print {

.toggler-c { margin-bottom:25px; }
.toggler { display: block; height:100%; margin-top: 10px; }
a.toggler { display: block; }

}













