﻿.general-messages-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 860px;
    height: 600px;
    margin-left: -430px; /* half of width */
    margin-top: -300px; /* half of height */
    z-index: 20;
    background-color: white;   
    
    /*padding: 10px;*/
}

.ipaInputBox{
    position: fixed;
    left: 50%;
    top: 50%;
    width: 400px;
    height: 150px;
    margin-left: -200px; /* half of width */
    margin-top: -75px; /* half of height */
    z-index: 20;
    background-color: white;    
}

#ipaalert_container{
    font-family: Arial, sans-serif;
	font-size: 12px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
    margin-left: -150px; /* half of width */
    margin-top: -100px; /* half of height */
    left: 50%;
    top: 50%;
	background: #FFF;
	border: solid 2px #37568c;
	color: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#ipaalert_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #FFF;
	background: #999 url(~/../../Images/Img/belka_caption.png) top repeat-x;
	border-bottom: solid 1px #999;
	cursor: default;
	padding: 0em;
	margin: 0em;
}

#ipaalert_content {
	background: 16px 16px no-repeat url(~/../../Images/Img/info.png);
	padding: 1em 1.75em;
	margin: 0em;
}

#ipaalert_content.alert {
	background-image: url(~/../../Images/Img/info.png);
    background-size: 25px 25px;
}

/*#ipaalert_content.confirm {
	background-image: url(images/important.gif);
}

#ipaalert_content.prompt {
	background-image: url(images/help.gif);
}*/

#ipaalert_message {
    font-family: Arial, sans-serif;
	font-size: 12px;
    color: #000;
    margin-left: 30px;
}

#ipaalert_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
    margin-left: 50px;
}

/*#ipaalert_prompt {
	margin: .5em 0em;
}*/

#disablingDiv
{
    /* Do not display it on entry */
    display: none;
 
    /* Display it on the layer with index 1001.
       Make sure this is the highest z-index value
       used by layers on that page */
    z-index:99998;
     
    /* make it cover the whole screen */
    position: absolute; 
    top: 0%; 
    left: 0%; 
    width: 100%; 
    height: 100%; 
    min-height: 100%;
 
    /* make it white but fully transparent */
    /*background-color: gray; */
    opacity:.00; 
    filter: alpha(opacity=00);
}