﻿.divDialogContainer {
    left: auto;
    right: auto;
    height: 120px;
    width: 400px;
    background: #404040;
    box-shadow: 1px 2px 4px rgba(0,0,0,.4);
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 11111;
    outline: none;
    padding: 0px 20px;
}

.divDialogText
{
    font-family: 'Century Gothic'; 
    font-size:16px;
    text-align:center;
    height:40px;
    margin-top: 30px;
    color:#fff;
}

.divDialogMenu
{
    height:40px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
}

.divDialogNo
{
	background-image: url(../img/ico_cancel_40x40_transparent.png);
	background-position:center;
	background-repeat:no-repeat;

    float:left;
    width:40px;
    height:40px;
	margin-right:5px;
	margin-left:5px;
    cursor:pointer;
}
.divDialogYes
{
	background-image: url(../img/ico_ok_40x40_transparent.png);
	background-position:center;
	background-repeat:no-repeat;

    float:left;
    width:40px;
    height:40px;
	margin-right:5px;
	margin-left:5px;
    cursor:pointer;
}

.divDialogOK
{
	background-image: url(../img/ico_ok_40x40_transparent.png);
	background-position:center;
	background-repeat:no-repeat;

    width:40px;
    height:40px;
	margin-right:auto;
	margin-left:auto;
    cursor:pointer;
}

.divCreateChildDialogContainer
{
    left:auto;
    right:auto;
    height:300px;
    width: 500px;
    background: #404040;
	box-shadow: 1px 2px 4px rgba(0,0,0,.4);
    overflow:auto;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.divCreateChildDialogNoItem
{
    font-family: 'Century Gothic'; 
    font-size:14px;
    color:#666;
    text-align: center;
    position: absolute;
    margin: auto;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
}

.divCreateChildDialogItem
{
    font-family: 'Century Gothic'; 
    font-size:14px;
    line-height:40px;
    margin-top: 0px;
    padding-left:15px;
    padding-right:15px;
    color:#fff;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    cursor:pointer;
    border-bottom: 1px solid gray;
    white-space: nowrap;
}

.notouch .divCreateChildDialogItem:hover
{
    color:#fff;
    background: rgba(0,0,0, .3);
}

.divCreateChildDialogItem:active
{
    color:#fff;
    background: rgba(0,0,0, .3);
}

.divClipboardDialog
{
    left:auto;
    right:auto;
    height:300px;
    width: 600px;
    background: #404040;
	box-shadow: 1px 2px 4px rgba(0,0,0,.4);
    overflow:hidden;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.divClipboardDialogContainer
{
    left: auto;
    right: auto;
    top: 0px;
    width: 600px;
    bottom: 50px;
    overflow: auto;
    position: absolute;
}

.divClipboardDialogMenu
{
    left: auto;
    right: auto;
    bottom: 0px;
    height: 50px;
    width: 600px;
    position: absolute;
    display: table;
}

.divClipboardDialogMenuCopy
{
	background-image: url(../img/ico_copy_40x40.png);
	background-position:center;
	background-repeat:no-repeat;

    width:40px;
    height:40px;
	margin-top:5px;
    margin-bottom:5px;
    cursor:pointer;
    display:table-cell;
}

.divClipboardDialogMenuMove
{
	background-image: url(../img/ico_move_40x40.png);
	background-position:center;
	background-repeat:no-repeat;

    width:40px;
    height:40px;
	margin-top:5px;
    margin-bottom:5px;
    cursor:pointer;
    display:table-cell;
}

.divClipboardDialogMenuClear
{
	background-image: url(../img/ico_delete_document_40x40.png);
	background-position:center;
	background-repeat:no-repeat;

    width:40px;
    height:40px;
	margin-top:5px;
    margin-bottom:5px;
    cursor:pointer;
    display:table-cell;
}

.divClipboardDialogItem
{
    color:#fff;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor:pointer;
    border-bottom: 1px solid gray;
    height:45px;
}

.notouch .divClipboardDialogItem:hover
{
    color:#fff;
    background: rgba(0,0,0, .3);
}

.divClipboardDialogItem:active
{
    color:#fff;
    background: rgba(0,0,0, .3);
}

.divClipboardDialogItemSelected
{
    color:#fff;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor:pointer;
    border-bottom: 1px solid gray;
    background: rgba(0,255,0, .3);
    height:45px;
}

.notouch .divClipboardDialogItemSelected:hover
{
    color:#fff;
    background: rgba(0,255,0, .5);
}

.divClipboardDialogItemSelected:active
{
    color:#fff;
    background: rgba(0,255,0, .5);
}

.divClipboardDialogItemNotValid
{
    color:gray;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor:pointer;
    border-bottom: 1px solid gray;
    height:45px;
}

.divClipboardDialogItemNotValidSelected
{
    color:gray;
    overflow: hidden;
    text-overflow: ellipsis;    
    cursor:pointer;
    border-bottom: 1px solid gray;
    background: rgba(255,0,0, .3);
    height:45px;
}


.notouch .divClipboardDialogItemNotValidSelected:hover
{
    color:gray;
    background: rgba(255,0,0, .5);
}

.divClipboardDialogItemNotValidSelected:active
{
    color:gray;
    background: rgba(255,0,0, .5);
}

.divClipboardDialogItemTitle
{
    float:left;
    font-family: 'Century Gothic'; 
    font-size:14px;
    margin-left:15px;
    margin-top:5px;
    color:#fff;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor:pointer;
    white-space:nowrap;
}

.divClipboardDialogItemTitleNotValid
{
    float:left;
    font-family: 'Century Gothic'; 
    font-size:14px;
    margin-left:15px;
    margin-top:5px;
    color:gray;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor:pointer;
    white-space:nowrap;
}

.divClipboardDialogItemObjectTypeTitle
{
    font-family: 'Century Gothic'; 
    font-style:italic;
    font-size:10px;
    margin-left:15px;
    margin-right:15px;
    margin-top:7px;
    color:lightgray;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor:pointer;
    white-space: nowrap;
}

.divClipboardDialogItemObjectTypeTitleNotValid
{
    font-family: 'Century Gothic'; 
    font-style:italic;
    font-size:10px;
    margin-left:15px;
    margin-right:15px;
    margin-top:7px;
    color:gray;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor:pointer;
    white-space: nowrap;
}


#divPasswordDialog
{
    left:auto;
    right:auto;
    width:400px;
    background: #404040;
	box-shadow: 1px 2px 4px rgba(0,0,0,.4);
    overflow:hidden;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#divPasswordDlgContainer
{
	width: 100%;
    padding-top: 10px;
}
.divPasswordDlgContainerRowOld
{
	display: table;
    width:100%;
	margin-top: 5px;
    padding-bottom:10px;
    border-bottom: 1px solid gray;
}	
.divPasswordDlgContainerRowNew
{
	display: table;
    width:100%;
	margin-top: 5px;
}		
.divPasswordDlgContainerRowName
{
	width: 160px;
	display: table-cell;
	text-align: right;
	vertical-align: top;
	color: white;
	font-size: 14px;
	font-family: sans-serif;
	line-height: 180%;
}		
.divPasswordDlgContainerRowValue
{
	width: calc(100% - 10px);
	display: table-cell;
}
#divPasswordDlgMenuOK
{
	background-image: url(../img/ico_ok_40x40_transparent.png);
	background-repeat: no-repeat;
    background-size: cover;
    width: 35px;
    height: 35px;
    cursor: pointer;
    float: right;
    display:none;
}
#divPasswordDlgMenuCancel
{
	background-image: url(../img/ico_cancel_40x40_transparent.png);
	background-repeat: no-repeat;
    background-size: cover;
    width: 35px;
    height: 35px;
    cursor: pointer;
    float: right;
}

#oldPassword, #newPassword1, #newPassword2
{
    width: calc(100% - 20px);
    margin-left: 10px;
    box-sizing: border-box;
    padding: 2px;
			
	font-family: Century Gothic;
	font-size: 13px;
    outline: 0;
    border: 0px;
}