html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    /*font: inherit;*/
    vertical-align: baseline;
}

*:focus {
    outline: none;
}

html{
    height: 100%;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
}        
body {
    width: 100%;
    height: 100%;
    padding: 0;
    padding-top: 0px;
    top: 0px;
    left: 0px;
    background-color: rgba(255,255,255,0.95);
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
    font-family: 'Ubuntu', Verdana, Helvetica, Arial;
}

.hideDiv{
    display: none;
}
.form{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.form .box{
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    top: 0px;
    box-shadow: 3px 3px 20px #000000;
}

.form .box .action{
    position: relative;
    width: auto;
    height: 36px;
    z-index: 100;
    overflow: hidden;
    background-color: rgba(192,192,192,0.7);
}

.form .box .action .action_title{
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
    word-break: break-all;
    margin-left: 5px;
    line-height: 36px;
    font-size: 16px;
}

.form .box .action .btn_box{
    position: absolute;
    top: 0px;
    right: 0px;
}
    .form .imgBtn{
        position: relative;
        margin-right: 5px;
        width: 40px;
        height: 47px;
        float: left;
        text-align: center;
        cursor: pointer;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
    }
    .form .imgBtn:hover{
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
    }
    /*.form .imgBtn:hover{
        opacity:0.4;	
    }*/
    .form .imgBtn img{
	width: 28px;
	height: 28px;
    }
    
    .form .imgBtnLabel{
        position: relative;
        font-size: 10px;
        top: -7px;
    }
    
    .form .barraV{
        float: left;
        position: relative;
        margin-right: 5px;
        height: 36px;
        width: 1px;
        background: white;
    }

.form .box .data{
    position: relative;
    width: 100%;
    height: auto;
    min-height: 30px;
    background-color: rgba(255,255,255,0.95);
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 50;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 5px;
}

.form .box .data .my_form{
    margin-bottom: 5px;
}
    .form .subMenu{
            position: relative;
            width: 100%;
            text-align: left;
            padding-left: 0px;
            margin-top: 7px;
            font-weight: bold;
            border-bottom: 1.5px solid #c94663;
            color: #c94663;
            letter-spacing: 2px;
            word-break: break-all;
    }    
    .form .labelForm{
            width: 100%;
            font-size: 15px;
            text-align: left;
            padding-left: 0px;
            margin-top: 2px;
    }
    .form .elemForm{
            width: 100%;
            text-align: left;
            margin-left: 10px;
    }
    
    .form input[type=number]::-webkit-outer-spin-button,
    .form input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
    }
    
    .form input[type=number] {
	-moz-appearance:textfield;
    }
    
    .form .elemForm input[type=text], .form .elemForm input[type=password], .form .elemForm textarea{
            font-size: 1.4em;
            border-radius: 5px 5px / 5px 5px;
            border: 1px solid #c0c0c0;
            padding-left: 5px;
            padding-right: 5px;
	    max-width: 100%;
	    box-sizing: border-box;
	    -moz-box-sizing: border-box;
	    -webkit-box-sizing: border-box;
    }
    
    .form .elemForm select{
            font-size: 1.4em;
            border-radius: 5px 5px / 5px 5px;
            border: 1px solid #c0c0c0;
            padding-left: 5px;
	    max-width: 100%;
	    box-sizing: border-box;
	    -moz-box-sizing: border-box;
	    -webkit-box-sizing: border-box;
    }
    
    .form .elemForm select[disabled], .form .elemForm input[type=text][disabled], .form .elemForm input[type=password][disabled], .form .elemForm textarea[disabled] {
            background-color: rgba(211,211,211,0.3);
            color: #D3D3D3;
    }
    
    .form .elemForm ::-webkit-input-placeholder {
            color: #D3D3D3;
            font-style: italic;
            font-size: 16px;
            letter-spacing: 1px;
	    text-transform: lowercase;
	    line-height: 26px;
    }     
    .form .elemForm :-moz-placeholder { 
            color: #D3D3D3;
            font-style: italic;
            font-size: 16px;
            letter-spacing: 1px;
	    text-transform: lowercase;
	    line-height: 26px;
    }     
    .form .elemForm ::-moz-placeholder {  
            color: #D3D3D3;
            font-style: italic;
            font-size: 16px;
            letter-spacing: 1px;
	    text-transform: lowercase;
	    line-height: 26px;
    }
    
    .form .READ_ONLY.BIG {
            height: 20px;
            font-size: 22px;
            text-align: left;
            margin-top: 3px;
            line-height: 26px;
            height: auto;
            overflow: hidden;
    }
    .form .READ_ONLY.SMALL {
            height: 16px;
            font-size: 16px;
            text-align: left;
            margin-top: 3px;
            line-height: 20px;
            height: auto;
            overflow: hidden;
    }
    
    .form .box_hash_code{
        position: relative;
        width: 165px;
        height: 25px;
        padding-left: 8px;
        padding-top: 5px;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QoRCTM0Gm8nAAAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAABt0lEQVRIx72WMWsVQRRGz/cEQYg8FDGPCP4FCwtFUrgpRMFKUKsUERsbOxthBrn3dyiClsFOE0TcgIpCSPF4xqdYWGghiIiS/tqsMGwhCO7cbneLwzlzGRYze29mx6g8I+Ay8NnMlqqCc84z4AQwdffjNY3p4FeBHTOb1ACrfDCzk8A2sJRz/jq48Z/JOe9IOgXMhj7zUf9FSmlb0iowNbOjVVL3sp+W9AqYpJS+DW5cZH8DLEfE2yHMR3/7mFJ6DVyXNHP3I1VS97IvAy0wyTl/H9y4yP4SWJG0a2aHq4E7+IuIuCFp190PVUldjrufjYinwGLO+cfgxsXCbUk6B7xz93E1cAG/CczNbFwldW/bVyQ9iYjFnPPPwY2LhXseERe77AvVwB38maRbwId/ya7/dROZ2XlJj7q7/dfgxoX5JnApIubufqAauNv2TUm3I+KjmR2skrqX/QKw3l0ye4MbF9k3JF2RNHf3/dXAXfbHwB3gi5ktVEndy74K3AfGZfbR0OCc8wNJa5I+ldn31fiHbtt22jTNCFhvmuZh27Z7ouK4+7WIuCvpzMjdq8FTSveAtYjY+A1lSq+0QXH4PAAAAABJRU5ErkJggg==);
        border-radius: 5px 5px / 5px 5px;
        border: 1px solid #c0c0c0;
        background-color: white;
    }
    .form .box_hash_code img{
        position: absolute;
        top: 3px;
        left: 180px;
        width: 20px;
        height: 20px;
    }
    
    .form .my_form label.error{
	position: relative;
	top: -2px;
	color: red;	
	padding-left: 15px;
    }
    
    .form .elemForm input[type=text].error, .form .elemForm input[type=password].error, .form .elemForm textarea.error, .form .elemForm select.error{
        border: 1px solid red !important;
    }
    
    select>:first-child{
	color: #c0c0c0;
    }
    
/**/
.SEARCHCOMBO .searchComboTxt{
	float: left;
	width: 100px;
	font-size: 1.4em;
	border-radius: 5px 5px / 5px 5px;
	border: 1px solid #c0c0c0;
	padding-left: 5px;
	padding-right: 5px;
	max-width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.SEARCHCOMBO select{
	float: left;
	width: 83%;
	position: relative;
	top: 0px;
	left: 0px;
}

.SEARCHCOMBO select{
	width: 81%;
	font-size: 1.4em;
        border-radius: 5px 5px / 5px 5px;
        border: 1px solid #c0c0c0;
        padding-left: 5px;
	max-width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.SEARCHCOMBO .searchComboBtn{
	float: left;
	position: relative;
	top: 0px;
	left: 2px;
	cursor: pointer;
	color: #61c2da;
	font-size: 20px;
}

.SEARCHCOMBO .searchComboBtn img{
	position: relative;
	left: 0px;
}

.SEARCHCOMBO .searchComboBtn:hover{
    opacity:0.4;
}

.SEARCHCOMBO ::-webkit-input-placeholder {
   color: #dff2f7;
   font-style: italic;
}

.SEARCHCOMBO :-moz-placeholder { /* Firefox 18- */
   color: #dff2f7;
   font-style: italic;
}

.SEARCHCOMBO ::-moz-placeholder {  /* Firefox 19+ */
   color: #dff2f7;
   font-style: italic;
}

.SEARCHCOMBO :-ms-input-placeholder {  
   color: #dff2f7;
   font-style: italic;
}

.SEARCHCOMBO.NO_MODIFY .searchComboTxt, .elemForm .SEARCHCOMBO.NO_MODIFY .searchComboBtn{
	display: none;
}

.SEARCHCOMBO.NO_MODIFY select[disabled]  {
	background-color: rgba(255,255,255,0.2);
	color: black;
	width: 99%;
}