/* Use this file to override the original style rules. 
This file will never be touched by any product upgrade process. */


/* The main area */
#container {
    
    /* change the general background color */
    background: #cddded; */
    
}

/* The header area */
#container #head {
    
    /* change the background color */
    background: #cddded; */
    
    /* change the color of the bottom line */
    border-bottom-color: #948c75; */
    
    /* this is needed to adjust the header height to the logo height
       in this case the header height (91px) equals the sum of the logo height 
       and its top offset (74px + 17px), resulting in the logo being bottom aligned 
       within the header area */
    height: 91px;  */
    
}

/* general appearance of links */
a, a:hover {
    
    color: #333; */
    
}

/* appearance of links on the footer area */
#container #footer a {
    
    
    color: #333;
    font-family: sans-serif;
    font-size: 16px;   
    font-weight: normal;
    
    
}

/* style rules for regular buttons */
.btn, .btn.btn-action, .btn.btn-primary, .input-append .add-on {
    
        
    border-color: #7a6a53;
    background: #7a6a53;
    color: #fff;
    text-shadow: none;
    
    

}

.btn:hover, .btn.btn-action:hover, .btn.btn-primary:hover, 
.input-append .add-on:hover {
    
    
    background-position: inherit;
    background-color: #7a6a53;
    background-image: linear-gradient(center top , #7a6a53, #d9ceb2);
    background-image: -moz-linear-gradient(center top , #7a6a53, #d9ceb2);
    background-image: -o-linear-gradient(center top , #7a6a53, #d9ceb2);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#7a6a53), to(#d9ceb2));
    background-image: -webkit-linear-gradient(center top , #7a6a53, #d9ceb2);
    color: #fff;
    
    
}

/* apperance of the upload progress bar */
.progress .bar {
    
    
    background-color: #948c75;
    background-image: linear-gradient(center top , #948c75, #d9ceb2);
    background-image: -moz-linear-gradient(center top , #948c75, #d9ceb2);
    background-image: -o-linear-gradient(center top , #948c75, #d9ceb2);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#948c75), to(#d9ceb2));
    background-image: -webkit-linear-gradient(center top , #948c75, #d9ceb2);
    
    
}

/* style rules for buttons with an icon on the left side */
.btn.btn-action .btn-left {
    
        
    border-color: #948c75;
    background: #948c75;
        
    /*    
    border-color: #585045;
    background: #585045;
    */
    
}

.btn .btn-left .sprite {
    
    /* use another set of images as icons */
    /* background-image: url(../img/sprites-black.png); */
    
}


