/*-----------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
/*------------------------------------- Easy rounded corners ------------------------------------*/
/*---------------------------- by Ignacio Ricci (www.ignacioricci.com) --------------------------*/
/*-----------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/

#RoundedBottom {
    color: #555;
    background: #F3F3F3;
    -moz-border-radius-bottomleft: 3px;
    -khtml-border-bottom-left-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    border-bottom-left-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    -khtml-border-bottom-right-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    border-bottom-right-radius: 3px;
}	

#RoundedTop {
    color: #555;
    background: #F3F3F3;
    -moz-border-radius-bottomleft: 3px;
    -khtml-border-bottom-left-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    border-bottom-left-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    -khtml-border-bottom-right-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

#Rounded {
    color: #555;
    background: #F3F3F3;
    -moz-border-radius-bottomleft: 3px;
    -khtml-border-bottom-left-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    border-bottom-left-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    -khtml-border-bottom-right-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    border-bottom-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -khtml-border-top-left-radius: 3px;
    -webkit-border-top-left-radius: 3px;
    border-top-left-radius: 3px;
    -moz-border-radius-topright: 3px;
    -khtml-border-top-right-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    border-top-right-radius: 3px;
}

/* Rounded-cornered divs -*/
.roundedBox
{
    position: relative;
    padding: 10px;
    background-color: #F3F3F3;
}

#FullyRounded .corner
{
    background-image: url(/Images/corners-type1.gif);
}

#BottomRounded .corner
{
    background-image: url(/Images/corners-type2.gif);
}

#TopRounded .corner
{
    background-image: url(/Images/corners-type3.gif);
}
			
/*- All the corners -*/
.corner
{
    position: absolute;
    width: 9px;
    height: 9px;
}
			
/*- Each corner -*/
.topLeft
{
    top: 0;
    left: 0;
    background-position: -1px -1px;
}

.topRight
{
    top: 0;
    right: 0;
    background-position: -12px -1px;
}

.bottomLeft
{
    bottom: 0;
    left: 0;
    background-position: -1px -12px;
}

.bottomRight
{
    bottom: 0;
    right: 0;
    background-position: -12px -12px;
}


				
			
				
				
/*-----------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
/*--------------------------------- End of Easy rounded corners ---------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
				
			
			
