
/*
	| liquidcorners.css; feel free to adapt the style!
	| ================================================
	| use: 4 corners with borderline outside a contentbox with class="inside"; 
	|      image  = upper half: top left corner, long borderline, top right corner
	|               under half: bottom left corner, long borderline, bottom right corner
	|      CHANGE = you have to change this for fitting to your image
	|      YCC    = You Can Change (or omit), if wanted
	|      DNC    = Do Not Change
	| credits: original by francky kleyneman, see article/tutorial in Francky's Developers Corner:
	|          http://home.tiscali.nl/developerscorner/liquidcorners/liquidcorners.htm
	| adapted
	| by.....: ... (your name and site?!)
	|
	| + please let this text & links intact for a next user +
*/
.top-left, .top-right, .bottom-left, .bottom-right { 
	background-image: url('../mm/corners.png'); /* CHANGE: path and name of your image */
	height: 10px;       /* CHANGE: replace by the height of one of your corners (= 1/2 height of the image) */
	font-size: 2px;    /* DNC: correction IE for height of the <div>'s */
	}
.top-left, .bottom-left { 
	margin-right: 10px; /* CHANGE: replace by the width of one of your corners */
	}
.top-right, .bottom-right { 
	margin-left: 10px;  /* CHANGE: replace by the width of one of your corners */
	margin-top: -10px;  /* CHANGE: replace by the height of one of your corners */
	}
.top-right {
	background-position: 100% 0;    /* DNC: position right corner at right side, no vertical changes */
	}
.bottom-left  { 
	background-position: 0 -10px;    /* CHANGE: replace second number by negative height of one of your corners */
	}
.bottom-right { 
	background-position: 100% -10px; /* CHANGE: replace second number by negative height of one of your corners */
	}
.inside {
	/* border-left: 1px solid #e0deca; */
	/* border-right: 1px solid #e0deca; */
	background-color: #f5f2dc;            /* YCC: background-color of the inside */
	color: #222222;                 /* YCC: default text-color of the inside */
	}
	
.top-left-accent, .top-right-accent, .bottom-left-accent, .bottom-right-accent { 
	background-image: url('../mm/corners-acc.png'); /* CHANGE: path and name of your image */
	height: 6px;       /* CHANGE: replace by the height of one of your corners (= 1/2 height of the image) */
	font-size: 2px;    /* DNC: correction IE for height of the <div>'s */
	}
	
.top-left-accent, .bottom-left-accent { 
	margin-right: 6px; /* CHANGE: replace by the width of one of your corners */
	}
.top-right-accent, .bottom-right-accent { 
	margin-left: 6px;  /* CHANGE: replace by the width of one of your corners */
	margin-top: -6px;  /* CHANGE: replace by the height of one of your corners */
	}
.top-right-accent {
	background-position: 100% 0;    /* DNC: position right corner at right side, no vertical changes */
	}
.bottom-left-accent  { 
	background-position: 0 -6px;    /* CHANGE: replace second number by negative height of one of your corners */
	}
.bottom-right-accent { 
	background-position: 100% -6px; /* CHANGE: replace second number by negative height of one of your corners */
	}
.inside-accent {
	/* border-left: 1px solid #e0deca; */
	/* border-right: 1px solid #e0deca; */
	background-color: #dddac6;            /* YCC: background-color of the inside */
	color: #111111;                 /* YCC: default text-color of the inside */
	}
	
.notopgap    { margin-top: 0; }    /* DNC: to avoid splitting of the box */
.nobottomgap { margin-bottom: -1px; padding-bottom: 1px; } /* DNC: to avoid splitting of the box */

.xgap { height: 1px; margin: 0 0 -1px 0; padding: 0; font-size: 1px; /* to correct IE */}



