html {
	background-color : white;
}
body {
	min-width : 800;
}

div {
	display : block;
}
div.wrapper {
	display: table;
	width : 100%;
	min-width : 100%;
}
div.north {
	display : table-row;
	width : 100%;
	height:175px;
}
div.north div {
	display : table-cell;
}
div.north div div {
	display : block;
}
.north .west {
	width:398px;
	background : url('/layout/north-west.png') top left no-repeat;
}
.north .mid {
	width:auto;
	background : url('/layout/north-north.png') top left repeat-x;
}
.north .east {
	width:208px;
	min-width : 398px;
	background : url('/layout/north-east.png') top left no-repeat;
}

div.south {
	display : table-row;
	width : 100%;
	height : 77px;
}
div.south div {
	display : table-cell;
}
.south .west {
	width:398px;
	min-width:398px;
	background-image : url('/layout/south-west.png');
}
.south .mid {
	min-width:4px;
	width : auto;
	background-image : url('/layout/south-south.png');
}
.south .east {
	width:398px;
	min-width : 398px;
	background-image : url('/layout/south-east.png');
}

div.middle {
	display : table-row;
	width : 100%;
	min-height : 32px;
}
div.middle div.west, div.middle div.east, div.middle div.center {
	display : table-cell;
}
.middle .west {
	width:32px;
	min-width:32px;
	background-image : url('/layout/west.png');
}
.middle .mid {
	background : white;
}
.middle .east {
	width:32px;
	min-width:32px;
	background-image : url('/layout/east.png');
}

.north .west .content {
	margin : 48px 0 0 48px;
}
.north .east .content {
	margin : 48px 48px 0 0;
}

.content {
}

div.menu ul {
	display : block;
	list-style-type : none;
	padding : 0 0 4px 10px;
}
div.menu ul li {
	list-style-type : none;
	padding : 0 0 0 10px;
}