/*========================*/
/*                        */
/*    V-Elektrik Style    */
/*                        */
/*========================*/

/*----------*/
/* All page */
/*----------*/

/* Override all margin to zero */
* {
	margin: 0;
}

/* Change font */
body{
	font-family: GillSans, Calibri, Trebuchet, sans-serif;
	font-size: 95%;
}

/* Change background page */
body {
}

/*--------------------*/
/* Element: Hyperlink */
/*--------------------*/

/* Hyperlink */
a {
	color: #9E2C21;
}

/* Hyperlink hovered */
a:hover {
	text-decoration: none;
}

/* Hyperlinked image */
a img {
	border: none;
}

/*----------------*/
/* Element: Title */
/*----------------*/

/* Title */
h1, h2, h3, h4{
	font-weight: normal;
}

h2, h3, h4{	
	color: #404041;
}

h1{
	font-size: 180%;
}

h2{
	font-size:150%;
}

h3{
	font-size:120%;
}

/*----------------*/
/* Element: Table */
/*----------------*/

/* Table header */
th {
	border: 1px solid #9E2C21;
	background-color: #d2574c;
	color: #ffcc33;
}

/* Table cell */
td {
	background-color: #ffffff;
}

/* Transparent table (Preferrably for form) */
.transparent th, .transparent td {
	background-color: transparent;
	border: none;
}

/* Custom class for table header */
.tableTitle td {
	font-weight: bold;
	height: 50px;
	color: #fcfcfc;
	background-color: #324c73;
}

/* Custom class for table cell */
.tableSubTitle td {
	color: #fcfcfc;
	background-color: #324c73;
}

/*----------------------*/
/* Element: Div spacing */
/*----------------------*/

/* Div spacing 5 pixel */
.spacer5 {
	height: 5px;
}

/* Div spacing 10 pixel */
.spacer10 {
	height: 10px;
}

/* Div spacing 20 pixel */
.spacer20 {
	height: 20px;
}

/* Div spacing 30 pixel */
.spacer30 {
	height: 30px;
}

/* Div spacing 50 pixel */
.spacer50 {
	height: 50px;
}

/*------------*/
/* Login page */
/*------------*/

/* Login page: Body */
.login-page {
 	text-align: center;
	background: #ffffff url(images/back.png) bottom left repeat-x;
}

/* Login page: Header */
.login-page #header {
	padding-top: 30px;
}

/* login page: Content */
.login-page td {
	background-color:transparent;
}

/* Login page: Box */
#login-form {
	border								: 1px solid #999999;
	padding								: 1% 2% 2% 1%;
	margin								: 50 auto 0;
	width								: 350px;
	background							: #EEEEEE;
	color								: #666666;
	-moz-border-radius					: 5px 5px 5px 5px;
	-webkit-border-radius				: 5px 5px 5px 5px;
	-moz-box-shadow						: 0 1px #EEEEEE, 0 1px #FFFFFF inset;
	-webkit-box-shadow					: 0 1px #EEEEEE, 0 1px #FFFFFF inset;
	box-shadow							: 0 1px #EEEEEE, 0 1px #FFFFFF inset;
}

/* Login page: Captcha image */
#captcha-image {
	border								: solid #cccccc 2px;
}

/*-----------*/
/* Main page */
/*-----------*/

/*
Style navigation:

body
|
+---+> #container
|   |
|   +---+> #main .clearFix
|       |
|       +----+> #header
|       |    |
|       |    +----+> #user-menu
|       |    |
|       |    +----+> #logo
|       |
|       +----+> #menu
|       |    |
|       |    +----+> #app
|       |    |
|       |    +----+> #module
|       |    |
|       |    +----+> #app-change
|       |    |    |
|       |    |    +----+> #app-link
|       |    |
|       |    +----+> #module-change
|       |         |
|       |         +----+> #module-link
|       |
|       +----+> #content
|       |
|       +----+> #management (FOR ADMIN)
|
+---+> #footer

*/

/*-----------------*/
/* Main: Container */
/*-----------------*/

/* Height to 100% (For compatibility to sticky footer) */
html, body, #container {
	height								: 100%;
}

/* Height to 100% (For compatibility to sticky footer) */
body > #container {
	height								: auto;
	min-height							: 100%;
}

/*------------*/
/* Main: Main */
/*------------*/

/* Main style */
#main {
	padding-bottom						: 50px;
}

/*-------------------------------------------------*/
/* Main: Clear Fix (Compatibility to sticky footer */
/*-------------------------------------------------*/

/* After clear fix rendering */
.clearfix:after {
	content								: ".";
	display								: block;
	height								: 0;
	clear								: both;
	visibility							: hidden;
}

/* Display clear fix */
.clearfix  {
	display								: inline-block;
}

/* Hides from IE-mac */
* html .clearfix {
	height								: 1%;
}

/* Hides from IE-mac */
.clearfix {
	display								: block;
}

/*--------------*/
/* Main: Header */
/*--------------*/

/* Header */
#header {
}

/* User menu */
#header #user-menu {
	padding-top							: 27px;
	float								: right;
	padding-right						: 20px;
}

/* Small logo */
#header #logo {
	padding: 5px;
}

/*------------*/
/* Main: Menu */
/*------------*/

/* Menu */
#menu {
	background: #9E2C21 url(images/menu.png) repeat-x;
	height: 50px;
}

/* Application, and application change */
#app, #app-change {
	float								: left;
	width								: 40%;
	color								: #ffcc33;
}

#app, #module{
	padding: 5px 0 0 10px;
}

#app-change{
	padding: 0 0 0 10px;
}

/* Module, and module change */
#module, #module-change {
	color								: #ffcc33;
}

/* Application link, and module link */
#app-link, #module-link {
	color								: #ffffff;
}

/*---------------*/
/* Main: SubMenu */
/*---------------*/

/* SubMenu */
#subMenu {
	background-color: #D55A4F;
	border: 1px solid #9E2C21;
	padding: 3px 0px;
}

/* SubMenu link */
#subMenu a {
	color: #FFFFFF;
	text-align: center;
	padding: 3px 10px;
	text-decoration: none;
}

/* SubMenu link hovered */
#subMenu a:hover {
	background-color: #9E2C21;
	color: #FFFFFF;
}

/*---------------*/
/* Main: Content */
/*---------------*/

/* Style content */
#container #content {
}

/*---------------*/
/* Main: Management */
/*---------------*/

/* Style management */
#container #management {
	padding-left						: 10px;
}

/*--------------------*/
/* Main: User profile */
/*--------------------*/

/* Style content */
#container #user-profile {
	padding-left						: 10px;
}

/*--------------*/
/* Main: Footer */
/*--------------*/

/* Style for footer */
#footer {
	position							: fixed;
	left								: 0px;
	bottom								: 10px;
	margin-top							: -50px; /* negative value of footer height */
	padding								: 7px 0px;
	height								: 30px;
	clear								: both;
	text-align							: center;
	background							: #9E2C21; /*url(images/menu.png) repeat-x;*/
	margin-bottom						: -10px;
	width								: 100%;
}

/*---------------------*/
/* Others: Div message */
/*---------------------*/

/* Showing error message (Preferrably div element) */
.error {
	padding								: 3px;
	color								: red;
	font-weight							: bolder;
}

/* Showing confirmation message (Preferrably div element) */
.confirmation {
	padding								: 3px;
	color								: blue;
	font-weight							: bolder;
}

/*---------------*/
/* Others: Image */
/*---------------*/

/* Image in administration menu */
.imageHrefIcon {
	padding								: 5px;
}

/* Image in administration menu (hovered) */
.imageHrefIcon:hover {
	background-color					: #cccccc;
}

/* Image option menu */
.imageHref {
}

/* Image option menu (hovered) */
.imageHref:hover {
}

/*---------------*/
/* Others: Title */
/*---------------*/

/* Title */
.title {
	float								: left;
	clear								: left;
	font-size							: 14pt;
	width								: 500px;
}

/* Subtitle */
.subTitle {
	font-size							: 12pt;
	border-bottom						: solid 2px #000000;
	width								: 640px;
}

/* Sub subtitle */
.subSubTitle {
	font-size							: 12pt;
	font-weight							: bold;
}

/*---------------*/
/* Others: Display */
/*---------------*/

/* Display hide */
.hide {
	visibility							: hidden;
	display								: none;
}

/* Display filter */
.filter {
	border								: RGB(75,172,198) solid 1px; 
	padding								: 10px; 
	background-color					: RGB(218, 238, 243); 
	margin-top							: 2px;
	margin-bottom						: 2px;
}

.resumetab{
	border: 1px solid #a6ff64;
	background-color: #cbffa4;
	padding: 5px;
}

.home-page #header{
	background: #ffffff url(images/header.png) repeat-x bottom;
}

/* .home-page #footer{
	background: #404041 url(images/menu.png) repeat-x;
	bottom:0;
	height:40px;
	left:0;
	position:fixed;
	width:100%;
	z-index:3;	
} */

.home-page{
	background-color: #f7f7f7;
}

/*-------------*/
/* Recycle Bin */
/* --Backup--- */
/*-------------*/

/*
.submodule {
	background							: #993333;
	padding								: 10px;
}

#tabs {
	width								: 400px;
}

.popup {
	border								: solid RGB(172, 75, 198) 2px;
	background-color					: #f3f3f3;
	visibility							: hidden;
	position							: absolute;
	top									: 0;
	left								: 0;
	padding								: 4px;
}

*/

/**
 * POPUP CONTAINER STYLES
 */

#dialog {position:absolute; width:425px; padding:10px; z-index:200; background:#fff}
#dialog-header {display:block; position:relative; width:411px; padding:3px 6px 7px; height:14px; font-size:14px; font-weight:bold}
#dialog-title {float:left}
#dialog-close {float:right; cursor:pointer; margin:3px 3px 0 0; height:11px; width:11px; background:url(images/dialog_close.gif) no-repeat}
#dialog-content {display:block; height:160px; padding:6px; color:#666666; font-size:13px}
#dialog-mask {position:absolute; top:0; left:0; min-height:100%; width:100%; background:#FFF; opacity:.75; filter:alpha(opacity=75); z-index:100}
#dialog .error {background:#fff url(images/error_bg.jpg) bottom right no-repeat; border:1px solid #924949; border-top:none}
#dialog .errorheader {background:url(images/error_header.gif) repeat-x; color:#6f2c2c; border:1px solid #924949; border-bottom:none}
#dialog .warning {background:#fff url(images/warning_bg.jpg) bottom right no-repeat; border:1px solid #c5a524; border-top:none}
#dialog .warningheader {background:url(images/warning_header.gif) repeat-x; color:#957c17; border:1px solid #c5a524; border-bottom:none}
#dialog .success {background:#fff url(images/success_bg.jpg) bottom right no-repeat; border:1px solid #60a174; border-top:none}
#dialog .successheader {background:url(images/success_header.gif) repeat-x; color:#3c7f51; border:1px solid #60a174; border-bottom:none}
#dialog .prompt {background:#fff url(images/prompt_bg.jpg) bottom right no-repeat; border:1px solid #4f6d81; border-top:none}
#dialog .promptheader {background:url(images/prompt_header.gif) repeat-x; color:#355468; border:1px solid #4f6d81; border-bottom:none}