/*
Document   : roundpixelbox.css
Created on : 18.12.2008, 11:32:26
Author     : sv
Description: Styles used to generate rounded pixel corners for boxes.
*/

#pixelBox {
    background-color        : #FFFFFF;
}

#pixelBoxContent {
    padding-top             : 0px;
    padding-right           : 10px;
    padding-bottom          : 20px;
    padding-left            : 5px;
}

#pixelBoxContent h1 {
    color                   : #463A3A;
    font-weight             : bold;
    font-size               : 14px;
    margin                  : 0;
    padding                 : 0;
}

#pixelBoxContent p {
    color                   : #463A3A;
    font-size               : 12px;
}

/* ---=== border code follows ===--- */
/*
pixelTLC = top left corner
pixelTRC = top right corner
pixelBLC = bottom left corner
pixelBRC = bottom right corner
pixelLB = left border
pixelRB = right border
pixelTB = top border
pixelBB = bottom border 
*/

#pixelTLC, #pixelTRC, #pixelBLC, #pixelBRC {
    background-color: transparent;
    background-repeat: no-repeat;
}

#pixelTLC {
    background-image:url(/converis/images/internet/borders/pixel/pixelTLC.gif);
    background-position: 0% 0%;
}

#pixelTRC {
    background-image:url(/converis/images/internet/borders/pixel/pixelTRC.gif);
    background-position: 100% 0%;
}

#pixelBLC {
    background-image:url(/converis/images/internet/borders/pixel/pixelBLC.gif);
    background-position: 0% 100%;
}

#pixelBRC {
    background-image:url(/converis/images/internet/borders/pixel/pixelBRC.gif);
    background-position: 100% 100%;
}

#pixelTB, #pixelBB {
    background-color: transparent;
    background-repeat: repeat-x;
}

#pixelTB {
    background-image:url(/converis/images/internet/borders/pixel/pixelTB.gif);
    background-position: 0% 0%;
}

#pixelBB {
    background-image:url(/converis/images/internet/borders/pixel/pixelBB.gif);
    background-position: 50% 100%;
}

#pixelRB {
    background-image:url(/converis/images/internet/borders/pixel/pixelR.gif);
    background-position: 100% 0%;
    background-repeat: repeat-y;
}

#pixelLB {
    background-image:url(/converis/images/internet/borders/pixel/pixelL.gif);
    background-position: 0% 100%;
    background-repeat: repeat-y;
}

.clear {
    /* font-size: 1px;
    height: 1px; 
    clear: both; */
    height: 0;
    overflow: hidden;
}

