/*
    the infoboxes panels
*/

.infobox 
{
    height: 256px;
    -webkit-box-shadow: 1px 1px 4px #888;
    -moz-box-shadow: 1px 1px 4px #888;
    width: auto;
    height: auto;
    display:inline-block;
    border-radius: 10px;
    -moz-border-radius: 10px;
    margin-bottom: 20px;
    background-color: white;
}

.infobox div 
{
    display: inline;
    float: left;
    height: 100%;
    border-right: 1px solid #f5f5f5;
    width: 255px;
}

.infobox div span
{
    display: block;
    margin: 20px;
    width: auto;
}
.infobox div .header2
{
    text-align: left;
    margin-left: 0px;
}

.infobox .right
{
    float: left;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-topright: 10px;
    border-right: none;
}

.infobox .left
{
    float: left;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    -moz-border-radius-topleft: 10px;
    border-left: none;
}

.infobox .single
{
    border-radius: 10px;
    -moz-border-radius: 10px;
    border: none;
    border-right: none;
    border-left: none;
    border-bottom: none;
    border-top: none;
    text-align: left;
}

.infobox .clickable div a {
    font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, Verdana, sans-serif;;
    font-size: 12px;
    font-weight: normal;
    color: black;
}

.infobox .clickable:hover {
    cursor: pointer;
    background: -moz-linear-gradient(-90deg, #fff, #e7f3fc);
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e7f3fc));
}

.infobox .bottomicon
{
    height: 95px;
    margin-top: 20px;
    margin: auto;
    display: block;
}

.infobox .illus
{
    height: 95px;
    display: block;
    margin: auto;
    margin-top: 20px;
    text-align: center;
    bottom: 0px;
}

.infobox ul
{
    border-top: 1px solid #f5f5f5;
}

.infobox li
{
    display: inline-block;
    list-style-type: none;
    border-bottom: 1px solid #f5f5f5;
    margin: none;
    margin: 0px;
}

.infobox .top
{
    border-top: none;
}

.infobox .bottom
{
    border-bottom: none;
}


