/*
	 CSS-Tricks Example
	 by Chris Coyier
	 http://css-tricks.com
*/

* { 
    margin: 0; 
    padding: 0; 
}

html, body, #bg, #bg table, #bg td, #cont {
    height:100%;
    width:100%;
    overflow:hidden;
}

a{color:#3aefff; text-decoration:none;}
	a:hover{text-decoration:underline;}

#bg { 
    position: fixed; 
}

#bg div {
    height:200%;
    left:-50%;
    position:absolute;
    top:-60%;
    width:200%;
}

#bg td {
    text-align:center;
    vertical-align:middle;
}

#bg img {
    margin:0 auto;
    min-height:50%;
    min-width:50%;
}

#cont {
    position:absolute;
    top:0;left:0;
    z-index:70;
    overflow:auto;
}

.box { 
    margin: 0 auto; 
    width: 960px;
    height:500px;
	padding:0;
    background:url(bg_content.png) top left repeat; 
	position:absolute;
	bottom:0;
	left:0;
	color:#fff;
	font:13px/18px Tahoma, Geneva, sans-serif;
}

.box div#left, .box div#center, .box div#right{margin:220px 10px 0; display:inline; float:left;}
.box div#left{width:160px;}
.box div#center{width:410px; padding:0}
.box div#right{width:200px; padding:0}


ul#todolist{list-style:none; margin:7px 0 0; padding:0;}
ul#todolist li{background:url(bg_bullet.png) 0 5px no-repeat; padding-left:17px; padding-bottom:7px;}





