/*
    Document   : general
    Created on : 02/02/2012, 09:08:53 ص
    Author     : Amr Mekkawy | un4web.com
    Description: This stylesheet holds general css rules that can be applied on any website
*/

* { margin: 0; padding: 0; }
a {
    text-decoration: none;
}
a img {
    border: none;
}

a.normal_link {
    border-bottom: 1px solid transparent;
    color:#411707;
    text-decoration: none;
}
a.normal_link:hover {
    border-bottom: 1px solid #411707;
}
a.white_link {
    border-bottom: 1px solid transparent;
    color: #fff;
    text-decoration: none;
}
a.white_link:hover {
    border-bottom: 1px solid #fff;
}
ul {
    list-style: none;
}
.clear {
    clear: both;
    height: 0;
}
.hint {
    color: #777;
    font-size: 12px;
}
input[type=text], input[type=password], select, textarea {
    border: 1px solid #bbb;
    color: #555;
    font-family: tahoma, arial, sans-serif;
    margin: 0 0 7px 0;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
input[type=text], input[type=password] {
    height: 27px;
    width: 200px;
}
input[type=submit], input[type=button] {
    width: 80px;
    height: 33px;
    font-family: tahoma, arial, sans-serif;
}
select {
    height: 27px;
    width: 253px;
}
textarea {
    height: 100px;
    width: 500px;
}
table {
    width: 100%;
}
.required {
    color: red;
    font-size: 12px;
}
.info_message {
    background: #FAE4E5;
    border: 1px solid #FF92A7;
    margin-bottom: 30px;
    color: #FF0033;
    padding: 15px 10px;
    text-align: center;
    margin: 0 20px 0 20px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.success_message {
    background-color: #DBFFDB;
    border: 1px solid #3FD43F;
    color: #276B00;
    margin: 0 0 30px 0;
    padding: 20px 10px;
    text-align: center;
    margin: 0 20px 0 20px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
td.caption {
    color: #333;
    min-width: 10px;
    padding-left: 5px;
    text-align: left;
}
.something_wrong {
    padding: 0;
    visibility: hidden;
    color: #D60000;
}
hr { /* more: http://css-tricks.com/examples/hrs/ */
     border: 0;
     height: 0;
     border-top: 1px solid #aaa;
}