/*========================*/
/*                        */
/*    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%;
}

body,
div,
td,
th,
option,
select,
input,
textarea {
	font-size: 10pt;
}

/* Change background page */
body {
	background: #cccccc url(background.png);
}

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

/* Hyperlink */
a {
	color: blue;
}

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

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

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

/* Title */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: georgia;
	border-bottom: solid 2px #777777;
	width: 640px;
	padding-bottom: 1px;
}

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

/* Table header */
th {
	border: solid 1px #CCCCCC;
	background-color: #e4e4e4;
}

/* 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-image: linear-gradient(to right bottom, #e6ebd8, #c9e3ce, #a6dbce, #84d0d8, #71c2e4, #6cc1eb, #6ac0f1, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1);
}

/* 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: 2% 2% 2% 2%;
	margin: 50 auto 0;
	width: 300px;
	background: #FFFFFF;
	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-form td {
	font-size: 1rem;
}

#login-form input[type="text"],
#login-form input[type="password"] {
	padding: 5px 10px;
}

#login-form input[type="submit"] {
	padding: 10px 20px;
	background-color: rgb(47, 116, 113);
	border: none;
	color: #FFF;
	font-size: 1rem;
	cursor: pointer;
}

#login-form input[type="submit"]:hover {
	background-color: rgba(47, 116, 113, .6);
}

/* Login page: Box */
#register-form {
	border: 1px solid #999999;
	padding: 1% 1% 1% 1%;
	margin: 50 auto 0;
	width: 500px;
	background: #FFFFFF;
	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: #404041 url(images/menu.png) repeat-x;
	height: 50px;
}

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

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

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

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

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

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

/* SubMenu */
#subMenu {
	background-color: #e4e4e4;
	border: 1px solid #CCCCCC;
	padding: 3px 0px;
	margin-left: -10px;
}

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

/* SubMenu link hovered */
#subMenu a:hover {
	background-color: #333333;
	color: #cccccc;
}

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

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

/*---------------*/
/* 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: #404041 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;
}

/*-------------*/
/* 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;
}

*/
#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
}