

#header {
    width:100%;
}

body{
    margin:0px;
}



a:link {
    color: #800000;
    text-decoration: underline;
}
a:visited {
    color: #800000;
}
a:hover {
    color: #B30000;
    text-decoration: underline;

}

.alert {
    background-color: red;
    width:100%;
    left:0;
    top:0;
}

.navigation {
    overflow: hidden;
    background-color: #800000;
    font-family: Arial, Helvetica, sans-serif;
}

.navigation a {

    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}


.navigation a:hover {
    background-color: #B30000;
}

.navigation input[type=text]{
    font-size:16px;
    padding:1px;
    width:25%;
}


form {
display: inline;
}


/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
 
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}

input[type=text] {
    font-size: 16px;
    height: 30px;
    padding: 0;
    outline: none;
    border: 1px solid #cdcdcd;
    border-color: rgba(0,0,0,.15);
    background-color: white;
}

input[type=password] {
    font-size: 16px;
    height: 30px;
    padding: 0;
    outline: none;
    border: 1px solid #cdcdcd;
    border-color: rgba(0,0,0,.15);
    background-color: white;
}

input[type=number] {
    font-size: 16px;
    height: 30px;
    padding: 0;
    outline: none;
    border: 1px solid #cdcdcd;
    border-color: rgba(0,0,0,.15);
    background-color: white;
}

#deleteMessageIcon:hover{
    content: url('http://ecommerce.cardboardcache.com/assets/trashCanHover.png');
}

#readMessageIcon:hover{
    content: url('http://ecommerce.cardboardcache.com/assets/readHover.png');
}

#unreadMessageIcon:hover{
    content: url('http://ecommerce.cardboardcache.com/assets/unreadHover.png');
}

#reportUser:hover{
    content: url('http://ecommerce.cardboardcache.com/assets/reportHover.png');
}



#content {
    background-color: #D3D3D3;
    width:100%;
    min-height:100%;
    font-size: 16px;
}


#footer {
    background-color: #800000;
    text-align: center;
    color: white;
    left:0;
    bottom:0;
    width:100%;
}


}