/*-----------------------------------------------*/
/* Application Errors - Begin                    */
/*-----------------------------------------------*/
	.rounded {
		-webkit-border-radius: 8px;
		border-radius:8px; 
		position: relative;
	 }

/*--------Errors Dialog Target is Button --------*/
.applicationErrors, 
.applicationErrorsInProgress {
    position: fixed;
    border: 1px solid #C0C0C0;
    background-color: #F1F1F1;
    list-style-type: disc;       
	padding: 1em .5em 1em 1.5em;
    margin: 0;
    z-index: 52;
}

.applicationErrors {
    width: 12.5em;
}

.applicationErrorsInProgress {  
    width: 11.5em;
}

.applicationErrorsInProgress img {
    margin:auto;
}
.applicationErrorsNotifier, 
.fieldErrorsNotifier {
    position: absolute;
    width: 18px;
    height: 18px;
    padding: 0px;
    border: 0px solid transparent;
	background-image: url( "/-/img/exclaimation_ico.png" );
	background-repeat: no-repeat;
	background-color: transparent;
	z-index: 50;
}

.applicationErrorsNotifier:hover, 
.fieldErrorsNotifier:hover {
    border: 0px solid transparent;
}

/*--------Errors Dialog Target is Form Field --------*/
.fieldErrors, 
.fieldErrorsInProgress {
    position: absolute;
    background-color: #F1F1F1;
    padding: 1em .5em 1em 1.5em;
    padding-left: 30px;
	z-index: 52;
	list-style: none
}

.fieldErrors {
    width: 12.5em;
}

.fieldErrorsInProgress {
    width: 10em;
    display: none;
}

.fieldErrorsNotifier {
}

.fieldErrors .fieldErrorsCloseButton,
.applicationErrors .applicationErrorsCloseButton,
.applicationErrorsInProgress .applicationErrorsCloseButton,
.applicationDialog .applicationErrorsCloseButton,
.applicationDialogInProgress .applicationErrorsCloseButton,
.applicationDialog .applicationDialogCloseButton,
.hint .hintCloseButton
{
    position: relative;
    width: 16px;
    height: 16px;
    top: -8px;
    left: 2px;
    background-image: url( "/-/img/exit.png" );
    background-position: center;
    background-repeat: no-repeat;
    float: right;
}


/*-----------------------------------------------*/
/* Application Errors - End                      */
/*-----------------------------------------------*/

/*-----------------------------------------------*/
/* Hints - Begin                                 */
/*-----------------------------------------------*/

.hint, 
.hintInProgress {
    height: auto;
    position: absolute;
    border: 1px solid #C0C0C0;    
    background-color: #F1F1F1;
	padding: 1em .5em 1em 1.5em;
	z-index: 51;
}

.hint {
    width: 12.5em;
}

.hintInProgress {
    width: 10em;
    display: none;
}

.hintNotifier {
    position: absolute;
    width: 15px;
    height: auto;
    border: 0px solid transparent;    
	background-image: url( "/-/img/question_ico.png" );
	background-repeat: no-repeat;
	background-color: transparent;
	z-index: 49;
}

/*-----------------------------------------------*/
/* Hints - End                                   */
/*-----------------------------------------------*/

/*-----------------------------------------------*/
/* General Dialog - Begin                        */
/*-----------------------------------------------*/

.applicationDialog ,
.applicationDialogInProgress
{
    border:none;
    color: #545454;
    height: auto;
    padding: 1em .5em 1em 1.5em;
    position: absolute;
    width: 35em;
    height:22em;
	z-index: 51;
    display: block;
}

.applicationDialogInProgress {
    height: 300px;
    width: 30px;
}

.applicationDialog .applicationDialogButtonCommandContainer {
    border: none;
    list-style-type: none;
}

.applicationDialog .applicationDialogButtonCommand {
    background-color: transparent;
}

.applicationDialog .applicationDialogButtonCommand div {
    color:#545454;
}

.applicationDialog .applicationDialogMessage,
.applicationDialogInProgress .applicationDialogMessage {
    font-weight: bold;
    line-height: 1.25;
}

.applicationDialogTitle {
    font-size: 18pt;
}

.applicationDialogButtonCommandContainer {
    border: solid 1px #c5c5c5; 
    display: block;
    overflow: auto;
    padding:10px;
    position: relative;
    z-index: 0;
}
.applicationDialogContentCommandContainer  {
    float: none;
    display: block;
}

.applicationDialogContentCommand {
    display: inline-block;
    margin: 5px 10px;
    cursor: pointer;
    cursor: hand;
}


/*-----------------------------------------------*/
/* Login                                         */
/*-----------------------------------------------*/
.login
{
    border: 1px solid lightgrey;
    margin: 4px;
    padding: 2px;
    font-size: small;
}

.login ul
{
    margin: 0;
    padding: 0;
}

.login ul li
{
    position: relative;
    list-style: none;
    left: -2em;
}

.login ul li input,
{
    margin: 2px;
}

.login ul li input[type=text],
.login ul li input[type=password]
{
    width: 12em;
    height: 1em;
}

.login ul li input[type=submit]
{
    height: 1.5em;
    font-size: small;    
    font-weight: bold;     
}

.login ul li span
{
    font-size: small;
}

.login ul li a
{
    font-weight: bold;
    font-size: small;
}

.watermark
{
    color: LightGrey;
    font-size: small;
}


.applicationErrorsInProgress:before
{
    content:""; 
    position: absolute; 
    right: 40%; 
    top: -20%; 
    width: 0; 
    height: 0; 
    border-top: 10px solid transparent; 
    border-right: 26px solid #F1F1F1; 
    border-bottom: 10px solid transparent; 
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg); 
    -o-transform: rotate(90deg);
}


@media only screen and (max-width: 767px)
{
    .applicationErrorsInProgress:before
    {
        right: 10%; 
    }
}

@media only screen and (max-width: 1023px)
{
    .applicationErrorsInProgress:before
    {
        right: 20%; 
    }
}