/* 
    Document   : custom.css
    Created on : 18-Aug-2011, 14:54:59
    Author     : Anil Lakhman
    Description:
        Provides custom CSS Styling to iFrames and elsewhere as required.
        This CSS file must be called manually.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

/* Style the Notice Error*/
.success, .error{
    border: 1px solid;
    margin: 10px 0px;
    padding:15px 10px 15px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
    font-family:Arial, Helvetica, sans-serif;
    font-size:16px;
}

.success {
    color: #4F8A10;
    background-color: #DFF2BF;
    background-image:url('../images/icons/success.png');
}

.error {
    color: #D8000C;
    background-color: #FFBABA;
    background-image: url('../images/icons/error.png');
}

h1{
    line-height: 24px;
    margin: 0px;
    font-size: 22px;
}

hr{
    border: none;
    border-bottom: 1px dotted #800000;
}

.frame
{
    background-color: #fafafa;
    border: 1px solid #eee;
    padding: 10px;
    width: 600px;
    height: auto;
    margin: 0 auto;
    text-align: center;
}

.error h1{
	color: red;
}