/***** General HTML Tags *****/
html, body {
	width: 100%;
	height: 100%;
}

body {
	margin: 0px;
	padding: 0px;
	min-height: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

a:link, a:visited {
	color: #00f;
	text-decoration: none;
}
a:hover, a:active {
	color: #f00;
	text-decoration: none;
}

form {
	margin: 0px;
	padding: 0px;
}

h1 {
	font-size: 16px;
	font-weight: bold;
	margin: 0;
}

h2 {
	font-size: 14px;
	font-weight: bold;
	margin: 0;
}

input[type=text], input[type=password] {
	font-size: 12px;
	border: 1px solid #ccc;
}

select {
	font-size: 12px;
	border: 1px solid #ccc;
}

/***** Page Header *****/
#FTHeaderContainer {
	width: 100%;
	height: 75px;
	border-bottom: 1px solid #00c;
}

#FTHeaderLogo {
	border: 0;
}

#FTHeaderMenuContainer {
	float: right;
	width: 400px;
	height: 30px;
	background: #215ba5;
	border-bottom-left-radius: 30px;
	-moz-border-radius-bottomleft: 30px;
	-webkit-border-bottom-left-radius: 30px;
/*
	background: #215ba5 url('/images/headercorner.png') bottom left no-repeat;
	box-shadow: -4px 4px 4px #ccc;
	-moz-box-shadow: -4px 4px 4px #ccc;
	-webkit-box-shadow: -4px 4px 4px #ccc;
*/
}

#FTTitleContainer {
	margin: 0;
}

#FTContentContainer {
	margin: 0;
}

/***** Apps Menu *****/
#FTAppsMenuContainer {
	position: absolute;
	top: 76px;
	left: 0;
	width: 150px;
	border-right: 1px solid #00c;
	border-bottom: 1px solid #00c;
	border-bottom-right-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-webkit-border-bottom-right-radius: 10px;
}

#FTAppsMenu {
	position: relative;
	padding: 0;
	margin: 0;
	list-style: none;
}

#FTAppsMenu li {
	border-bottom: 1px solid #999;
}

#FTAppsMenu li a {
	display: block;
	width: 146px;
	padding: 4px 0 4px 4px;
	margin: 0;
	color: #999;
}

#FTAppsMenu li a img {
	vertical-align: middle;
	border: 0;
}

#FTAppsMenu li a:active, #FTAppsMenu li a:hover {
	background: #eee;
	color: #00c;
}

#FTAppsMenu li a.current {
	background: #ffc;
	color: #000;
	font-weight: bold;
}

#FTAppsMenu ul {
	position: relative;
	padding: 0;
	margin: 0;
	list-style: none;
}

#FTAppsMenu ul li {
	border-top: 1px solid #eee;
	border-bottom: 0;
}

#FTAppsMenu ul li a {
	display: block;
	width: 142px;
	padding: 2px 0 2px 8px;
	margin: 0;
	color: #999;
}

#FTAppsMenu ul li a img {
	margin-top: -3px;
}

/***** Page Title *****/
#FTTitleContainer {
	position: relative;
	margin-left: 160px;
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 150%;
	font-weight: bold;
}

/***** Content *****/
#FTContentContainer {
	position: relative;
	margin-left: 160px;
}

/***** Login/Logout Box *****/
#FTLoginContainer {
	float: right;
	height: 30px;
	line-height: 30px;
	background-color: #215ba5;
	color: #fff;
}

#FTLoginID, #FTLoginPassword {
	width: 80px;
}

#FTLoginOptions {
	text-align: center;
	line-height: 1em;
	background: #215ba5;
	border-bottom-left-radius: 30px;
	-moz-border-radius-bottomleft: 30px;
	-webkit-border-bottom-left-radius: 30px;
/*
	background: #215ba5 url('/images/headercorner.png') bottom left no-repeat;
	box-shadow: -4px 4px 4px #ccc;
	-moz-box-shadow: -4px 4px 4px #ccc;
	-webkit-box-shadow: -4px 4px 4px #ccc;
*/
}

#FTLoginError {
	color: #cff;
	text-align: center;
	line-height: 1.5em;
}

#FTLogoutContainer {
	float: right;
	font-size: 12px;
	color: #fff;
}

/***** Page Footer *****/
#FTFooterContainer {
	clear: both;
	text-align: center;
}

/***** Classes *****/
.FTDataTable {
	width: 100%;
	border: 1px solid #ccc;
}

.FTDataTable th {
	background: #eee;
}

@media print {
	.FTNoPrint {
		display: none;
	}
}