h2 {padding: 10px;}

.results
{
    margin: 5px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 6px;
}

.results a {color: #E32;}
.results span 
{
    color: #808080;
    font-weight:bold;
}

.results p
{
    padding-top: 10px;
    color:#EEE;
    font-size:14px;
}
.searchpreview 
{
    max-width: 80px;
    padding-right: 20px;
}

/*  ----------------------- SEARCHBOX ----------------------- */

#searchbox
{
    background: #3C3C3C;
    border-width: 1px;
    border-style: solid;
    border-color: #BEBEBE;
    width: 500px;
    height: 35px;
    padding: 7px;
    margin: 30px auto 42px;
    overflow: hidden;

}

#search, 
#submit {float: left;}

#search {
    padding: 5px 9px;
    height: 23px;
    width: 379px;
    border: 1px solid #a4c3ca;
    font: 14px "Trebuchet MS",Arial,Helvetica;
    background: #f1f1f1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 0px 0 #FFF;          
}


#submit
{       
    background-color: #FFD700;
    background: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, #FFD700), to(#EBB61B));
    background: -webkit-linear-gradient(center top, #FFD700 50%, #EBB61B 100%);
    background: -moz-linear-gradient(center top, #FFD700 50%, #EBB61B 100%);
    background: -o-linear-gradient(center top, #FFD700 50%, #EBB61B 100%);
    background: linear-gradient(center top, #FFD700 50%, #EBB61B 100%) repeat scroll 0 0 transparent;
    background-image: -o-linear-gradient(top,#FFD700,#EBB61B);
    border-radius: 0;
    border-width: 1px;
    border-style: solid;
    border-color: #B9B9B9 #A3A3A3 #858585;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
    height: 35px;
    margin: 0 0 0 10px;
    padding: 0;
    width: 90px;
    cursor: pointer;
    color: #747474;
    text-transform: uppercase;
    font-size: 14px;
}

#submit:hover {  

    background-color: #FFAD00;
    background: -webkit-gradient(linear,0 0,0 100%,color-stop(0.5,#FFAD00),to(#FFAD00));
    background: -webkit-linear-gradient(center top,#FFAD00 50%,#E49B03 100%);
    background: -moz-linear-gradient(center top,#FFAD00 50%,#E49B03 100%);
    background: -o-linear-gradient(center top,#FFAD00 50%,#E49B03 100%);
    background: linear-gradient(center top,#FFAD00 50%,#E49B03 100%) repeat scroll 0 0 transparent;
    background-image: -o-linear-gradient(top,#FFAD00,#E49B03);
}   

#submit:active {       
    background: #FFAD00;
    outline: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;        
}

#submit::-moz-focus-inner {
       border: 0;  /* Small centering fix for Firefox */
}
.snippet{

    padding: 20px 0px 10px 0px;
    margin: auto;
    width: 71%;
    color: rgba(0, 128, 0, 0.6);
    font-size: 15px;
    font-style:italic;
}

.snippetInactive{
    padding: 20px 0px 18px 10px;
    font-style: italic;
}

.noResults{
    padding: 30px 0px 40px 0px;
    color: #717270;
    font-size: 22px;
    line-height: 36px;
    text-align: center;
    width: 77%;
    margin: auto;
}

/*  ----------------------- TOP SEARCHES ----------------------- */

.topContainer
{
    width: 650px;
    margin: auto;
    background-color: #000;
    border-radius: 6px;
    padding: 15px 0px 25px 0px;
}

#headline
{
    text-align: center;
    padding: 20px 0px 25px 0px;
    font-size: 1.5em;
}

.tops a
{
    color:#E32;
    font-weight: bold;
}

.tops a:hover{color:#FFF;}

ol.toplist
{
    counter-reset: li;
    margin-left: 0;
    padding-left: 0;
    border-radius: 6px;
    width: 518px;
    margin: auto;
}

ol.toplist > li {
    position:relative; /* Create a positioning context */
    padding:4px 8px; /* Add some spacing around the content */
    list-style:none; /* Disable the normal item numbering */
}

ol.toplist > li:before {
    content:counter(li) "."; /* Use the counter as content */
    counter-increment:li; /* Increment the counter by 1 */
    position:absolute;
    top: 0px;
    left: -1.5em;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    width:2em;
    /* Some space between the number and the content in browsers that support
       generated content but not positioning it (Camino 2 is one example) */
    margin-right:8px;
    padding:4px;
    color:#fff;
    font-weight:bold;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-align:center;
}







