/* 
    Document   : search_results
    Created on : May 27, 2009, 4:11:42 PM
    Author     : Matthew Wells <mattheww@sixfootstudios.com>
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

span.highlight{
    background-color:#ffff00;
}

div.searchresult {
    display:block;
    padding:5px;
}
div.searchresult h3 {
    font-weight:bold;
    color:#cc0000;
    display:block;
}

div.searchresult h3 a {
    font-weight:bold;
    color:#cc0000;
}

div.searchresult a {
    color:#666666;
}

div.searchresult p {
    color:#333333;
}

.row_gray { background-color:#fafafa; }
.row_white { background-color:#ffffff; }
.bt { border-top:1px solid #dadada; }
.bb { border-bottom:1px solid #dadada; }

/* ---------- Pagination ---------- */
form.sr_form {
    display:block;
    margin:10px 0 0 0;
    padding:0;
}

div.sr_results {
    float:left;
    color:#999999;
}

div.sr_pagination {
    float:right;
    color:#999999;
}

div.sr_pagination a {
    color:#999999;
    text-decoration:none;
}

div.sr_pagination a:hover {
    color:#cc0000;
}

div.sr_pagination a.active {
    color:#cc0000;
}

div.sr_pagination a.prev {
    position:relative;
    background:url(../images/gray_arrow_left.gif) left no-repeat;
    padding:0 10px 0 10px;
}

div.sr_pagination a.prev:hover { background:url(../images/red_arrow_left.gif) left no-repeat; }

div.sr_pagination a.next {
    background:url(../images/gray_arrow_right.gif) right no-repeat;
    padding:0 10px 0 10px;
}

div.sr_pagination a.next:hover { background:url(../images/red_arrow_right.gif) right no-repeat; }


