/*Styles for frontend -> muliple ad listings veiw.php*/

/*******************************************************************************
    Below are styles for the main list(s) of ads
********************************************************************************/
/*style for main ad div*/
.ads {
    margin: 5px auto;
    border: 1px solid #CCCCCC;
    overflow: hidden;
    min-height: 150px !important;
}

/*style for ad thumbnail*/
.thumb {
    float: left;
    width: 150px;
    padding: 5px;
}
    .thumb img {
        border: 0;
    }
/*style for short description*/
.desc-short {
    margin: 0 0 0 155px;
    padding: 5px 0 5px 0;
    text-align: left;
}
/*style for ad title*/
.title {
font-weight: bold;
}
/*style for ad price*/
.price {
}
/*style for ad date*/
.datespan {
    float: right;
}
/*******************************************************************************
    Below are styles for the full veiw of the ads
********************************************************************************/
    .full_ad {
        margin: 0 auto;
        border: 1px solid #CCCCCC;
        min-height: 150px !important;
    }
    .ad_info {
        float: right;
        margin: 5px;
        border: 1px solid #CCCCCC;
        text-align: left;
    }
        .rows {
            padding: 0;
            margin: 0;
            border: 1px solid #CCCCCC;
        }
    .full_title {
        font-weight: bold;
        text-decoration: none;
        padding: 10px 0 10px 0;
        text-align: center;
    }
    .full_thumb {
        float: left;
        margin: 5px;
    }
        .full_thumb img {
           border: none;
        }
    .full_desc {
        clear: right;
        padding: 10px;
    }
/*stlye for ad user info*/
.userInfo {
    text-align: left;
}
.ad_info {
    text-align: center;
    float: right;
    width: 250px;
    border: 1px solid #CCCCCC;
}
    .ad_info tr {
        border: 1px solid #CCCCCC;
    }
/*******************************************************************************
style for image buttons -> images used in anchor tags (ie edit and delete links
********************************************************************************/
.img-button {
    border: none;
}
/*remove under line from all links*/
a {
    text-decoration: none;
}
/*******************************************************************************
    User menu styles
********************************************************************************/
#userMenu {
    text-align: left;
    border-bottom: 1px solid #666666;
    margin-bottom: 10px;
    height: 25px;
}
    #userMenu a {
        text-decoration: none;
        display: block;
        float: left;
        width: 150px;
        height: inherit;
        line-height: 25px;
    }
    #userMenu a:hover {
        text-decoration: underline;
    }
/*******************************************************************************
    Styles for the list of ad categories
********************************************************************************/
#catTable {
width: 100%;
text-align: center;
}
    #catTable .cat {
        text-align: center;
    }
    #catTable td {
        text-align: left;
        vertical-align: top !important;
        padding: 20px 0 20px 0;
    }
    #catTable th {
        text-align: center;
    }
        #catTable td a {
            text-decoration: none;
            margin: 0 auto;
        }
    #catTable ul {
        padding: 0;
        margin: 0;
    }
/*******************************************************************************
    styles for forms
********************************************************************************/
/*large form container div*/
.largeForm {
    margin: 0 auto;
}
    .largeForm table {
        width: 100%;
        margin: 0 auto;
    }
    .largeForm td {
        vertical-align: top;
        border: none;
    }
.input {
    margin-left: 10px;
}
/*changes colour of current input*/
.inputs:focus {
    background: #A3EAED;

}
.error {
    margin-left: 10px;
    background: red;
    color: #FFFFFF;
}
/*style for form error messages*/
.errorMsg {
    color: red;
    text-transform: uppercase;
}
/*styles for list of users ads and ads in the backend*/
#adTable {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    border: 1px solid black;
}
    #adTable td {
        border-top: 1px solid black;
    }
    #adTable th {
        background: white;
    }
/*Stylesfor alternating color rows*/
.List1, .List2 {
    width: 100%;
    height: auto;
}
.List1 {
    background: #B7FFAF;
}
.List2 {
    background: #FFFFFF;
}
/*******************************************************************************
    Styles to indicate status of ads, categories etc
********************************************************************************/
/*New ad*/
.new {

}
/*expired ad*/
.expired {
    background: orange;
}
/*suspended item*/
.suspended {
    background: magenta;
}
/*deactivated ad*/
.deactivated {
    background: #E6B646;
}																
