/* 
    Document   : style_article
    Created on : 2011-08-14, 17:53:00
    Author     : Pawel
    Description:
        Purpose of the stylesheet follows.
*/

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

root { 
    display: block;
}

.box {
    background-image: url("./images/box_bg.png");
    background-repeat: repeat-y;
    width: 722px;
    margin: 40px 0px 30px 30px;
    padding: 15px;
    min-height: 500px;
/* IE6 FIX ech...*/    
    height:auto !important;
    height:500px;
/* ------------- */    
    position: relative;
    color: #bfbfbf;
    font-size: 16px;
}

.box img {
    border: 1px #4A0308 solid;
}

.box-glow {
    position: absolute;
    bottom: 0px;
    left: 0px;
    
}


.edit_button {
    display: block;
    background-color: #4A0308;
    width: 150px;
    height: 20px;
    padding: 2px;
    text-align: center;
    font-size: 16px;
    position: absolute;
    top: 9px;
    left: 585px;
}