<!-- 
/*
	| 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 +
*/
.Htop-left, .Htop-right, .Hbottom-left, .Hbottom-right { 
	background-image:  url(images/headerframe.gif); /* CHANGE: path and name of your image */
	height: 18px;       /* 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 */

	}
.Htop-left, .Hbottom-left { 
	margin-right: 18px; /* CHANGE: replace by the width of one of your corners */
	}
.Htop-right, .Hbottom-right { 
	margin-left: 18px;  /* CHANGE: replace by the width of one of your corners */
	margin-top: -18px;  /* CHANGE: replace by the height of one of your corners */
	}
.Htop-right {
	background-position: 100% 0;    /* DNC: position right corner at right side, no vertical changes */
	}
.Hbottom-left  { 
	background-position: 0px -18px;    /* CHANGE: replace second number by negative height of one of your corners */
	}
.Hbottom-right { 
	background-position: 100% -18px; /* CHANGE: replace second number by negative height of one of your corners */
	}
.Hinside {
	border-left: 2px solid #36B91E;
	border-right: 2px solid #36B91E;
	background: #3089c2;
	color: #FB6F28;
	margin: 0px;
	padding: 0px;
	z-index: 98;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	}
.Hnotopgap    { 
margin-top: 0;  /* DNC: to avoid splitting of the box */
}   
.Hnobottomgap { 
margin-bottom: 0;  /* DNC: to avoid splitting of the box */
}
/*
implementation in the page:
	...
	<head>
	<link rel="stylesheet" type="text/css" href="liquidcorners.css">
	...
	</head>
	
	<body>
	...
	<div class="Htop-left"></div><div class="Htop-right"></div>
		<div class="Hinside">
		<p class="Hnotopgap">Your text & other things inside</p>
		...
		<p class="Hnobottomgap">...</p>
		</div>
	<div class="Hbottom-left"></div><div class="Hbottom-right"></div>
	...
	</body>
*/
-->






















