<!--- Copyright 1996-2004 BiznizWeb, Inc. All Rights Reserved  For Licensed Use Only --->
	body{font-family : arial;}
	.ez{font-size: 11pt; font-family : arial;}
	.sz{font-size: 10pt; font-family : arial;}
	.lz{font-size: 12pt; font-family : arial;}
	.xsz{font-size: 8pt; font-family : arial;}
	.xszheading{font-size: 8pt; font-family : arial;}
	.tnrf{font-family: times new roman;}
	.sznbtc{font-size: 10pt; color: #getpageset.HighTextColor#; font-family : Arial, Helvetica;}
	.sz{font-size: 10pt; font-family : arial;}
	.szheading{font-size: 10pt; font-family : arial;}
	.lzrc{font-size: 14pt; color: red; font-family : Arial, Helvetica;}
	.lznc{font-size: 14pt; color: navy; font-family : Arial, Helvetica;}
	.szbc{font-size: 10pt; color: blue; font-family : Arial, Helvetica;}
	.xszrc{font-size: 8pt; color: red; font-family : Arial, Helvetica;}
	.tnrfsz{font-family: times new roman; font-size: 10pt;}
	.szwc{font-size: 10pt; color: white; font-family : Arial, Helvetica;}
	.szrc{font-size: 10pt; color: red; font-family : Arial, Helvetica;}
	.lzpc{font-size: 14pt; color: purple; font-family : Arial, Helvetica;}
	.szpc{font-size: 10pt; color: purple; font-family : Arial, Helvetica;}
	.xlztc{font-size: 16pt; color: teal; font-family : Arial, Helvetica;}
	.lzmc{font-size: 14pt; color: maroon; font-family : Arial, Helvetica;}
	.xlzbc{font-size: 16pt; color: blue; font-family : Arial, Helvetica;}
	.xlzmc{font-size: 16pt; color: maroon; font-family : Arial, Helvetica;}
	.xszbc{font-size: 8pt; color: blue; font-family : Arial, Helvetica;}
	.sznc{font-size: 10pt; color: navy; font-family : Arial, Helvetica;}
	header {
    background-color: #3b5998;
    padding: 10px;
    text-decoration: none;
    position: fixed;
    width: 100%;
    z-index: 1;
    -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.4);
}

/*
using background color is important to cover the menu
position absolute isset to cover the whole viewport
*/
#content {
    background-color: #064b75;
    padding: 52px 10px 10px 10px;
    position: relative;
    width: auto;
    height: 100%;
    -webkit-box-shadow: -10px 0px 9px 0px rgba(0, 0, 0, 0.4);
    box-shadow: -10px 0px 9px 0px rgba(0, 0, 0, 0.4);
}

/*
the hamburger button with a little gradient effect
*/
#hamburger {
    border: 1px solid #374C77;
    border-radius: 3px 3px 3px 3px;
    cursor: pointer;
    display: block;
    height: 24px;
    padding: 3px 4px 3px;
    position: relative;
    width: 25px;
    background: #064b75;
    background: -moz-linear-gradient(top, #4569b2 0%, #4062a5 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4569b2), color-stop(100%, #4062a5));
    background: -webkit-linear-gradient(top, #4569b2 0%, #4062a5 100%);
    background: -o-linear-gradient(top, #4569b2 0%, #4062a5 100%);
    background: -ms-linear-gradient(top, #4569b2 0%, #4062a5 100%);
    background: linear-gradient(to bottom, #4569b2 0%, #4062a5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4569b2', endColorstr='#4062a5', GradientType=0);
}

/*
The white stripes in the hamburger button
*/
#hamburger div {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 2px 2px 2px 2px;
    height: 2px;
    margin-top: 3px;
    width: 90%;
}

/*
The navigation container in the background
*/
nav {
    opacity: 0;
    left: 0px;
    top: 0px;
    position: fixed;
    z-index: 0;
    width: 70%;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    background: #3e3c3d;
    background: -moz-linear-gradient(top, #3e3c3d 0%, #2d2c2d 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3e3c3d), color-stop(100%, #2d2c2d));
    background: -webkit-linear-gradient(top, #3e3c3d 0%, #2d2c2d 100%);
    background: -o-linear-gradient(top, #3e3c3d 0%, #2d2c2d 100%);
    background: -ms-linear-gradient(top, #3e3c3d 0%, #2d2c2d 100%);
    background: linear-gradient(to bottom, #3e3c3d 0%, #2d2c2d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3e3c3d', endColorstr='#2d2c2d', GradientType=0);
}

/*
Style the navigation menu
*/
nav ul {
    list-style: none;
    margin: 0;
    width: 100%;
    padding: 0;
}

nav li {
    position: relative;
    font-size: 1em;
    font-weight: bold;
    border-bottom: 1px solid #222222;
    border-top: 1px solid #444444;
    padding: 15px;
}

nav li a {
    color: #fff;
    text-decoration: none;
}

/*
The Layer that will be layed over the content
so that the content is unclickable while menu is shown
*/
#contentLayer {
    display: none;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    z-index: 5;
}