/**
 * LAYOUT: fixed width, fixed height, centered
 *
 * This CSS/CSS layout is part of Credox Framework [www.credox.org] 
 *
 *
 * @author Hristo Drumev
 * @package framework
 * @copyright Hristo Drumev [www.hdrumev.com]
 * @version 1.00 / 28.07.2009
 *
 * Suported browsers: IE6+/win, Op7+, Moz1+, FF0.1+
 * This file is freely distributable and usable under the terms of www.credox.org
 *
 */

 
html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
}

#sysframe {
	position: absolute;
	left: 50%;
	top: 50%;
	/* width: 960px; /* width of frame */
	/* height: 580px; /* height of frame */
	/* margin-left: -480px; /* 1/2 of frame full width (width + padding) */
	/* margin-top: -290px; /* 1/2 of frame full height (height + padding) */
}


/** Example: use this tags in your (x)html page

<body>
<div id="sysframe">

<div id="sysfooter">

</div> <!-- #sysfooter -->

</div> <!-- #sysframe -->
</body>

--- In your CSS file add this -----------------------
    or remove comments of commented styles above

body, html {
	background: #fff;
}
		
#sysframe {
	width: 00px; 
	height: 00px; 
	margin-left: -00px;
	margin-top: -00px;
}

*/