/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 2014-07-25, 11:46:19
    Author     : Michał Drobnik
*/


.layer-wrapper{
	position: fixed;	
	width: auto;
	/*width: 380px;*/
	height: auto;	
	min-height: 200px;
	min-width: 380px;
	display: none;
	z-index: 9999;
	padding: 5px;
	color: #000;
}
.modalLayer{
	position: relative;
	width: 100%;
	border: 2px groove black;
	background: #fff;		
	padding: 5px;
}

.modalLayerCloseX{
	position: absolute;
	right: 10px;
	top: 0;	
	cursor: pointer;
}

.modalLayerTitle,
.modalLayerBody,
.modalLayerButtons{
	display: inline;
}

.modalLayerTitle{
	position: relative;
	display: block;
}
.modalLayerTitle h1{			
	text-align: center;
	font-weight: bold;
	height: 30px;
	font-size: 1.4em;
	line-height: 30px;
}

.modalLayerBody{
	margin: 0 10px;
	text-align: center;
	display : block;
	overflow-y: auto;
	max-height: 600px;
    cursor: default;
}

.modalLayerButtons{
	text-align: right;
	margin: 10px 0;
	display: block;
	height: 25px;
}
.modalLayerButtons button {
	margin-left: 10px;
	
}
.modalLayerButtons div {
	clear: both;
}

.modalLayer fieldset{
	margin:0;
	padding:0;
	border: none;
}
.modalLayer form ul, .modalLayer form ul li{
	margin:0;
	padding:0;
	list-style: none;
}
.modalLayer form ul li{
	padding: 10px;
	text-align: left;
}
.modalLayer form label{
	text-transform: capitalize;
	display: inline-block;
	width: 100px;
	overflow: hidden;
	text-align: right;
	padding-right: 10px;
}
.modalLayer form label span{
	color: rgba(200, 0, 0, 1);
}
.modalLayer form input,
.modalLayer form select{
	padding: 3px 5px;
	width: 300px;	
}
.modalLayer form .local_nb,
.modalLayer form .post-code{
	width: 70px;
}

.modalLayer form input:required {
  box-shadow: none;
}
.modalLayer form .error{
  background-color: #FFB5C1;
	
}


.mask_poput {
	position:fixed;
	left:0;
	top:0;
	z-index:9000;
	background-color: #C0C0C0;
	display:none;	
	width: 100%;
	height: 100%;
	opacity: 0.8;
	filter:alpha(opacity=80)!important;	
}

.mask_element {
	position:absolute;
	left:0;
	top:0;
	z-index:9000;
	background-color: #C0C0C0;	
	width: 100%;
	height: 100%;
	opacity: 0.8;
	filter:alpha(opacity=80)!important;	
}