#windowsX{
position: absolute;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.5);
width: 100%;
height: 100%;
-webkit-transition: opacity 1s ease;
z-index: 998;
}

#windows{

z-index: 998;
}

.window{
position: absolute;

top: 0px;
left: 0px;
width: 500px;
height: 400px;
background: #fcfbf9;
overflow: hidden;
z-index: 999;
border: 1px solid #515151;
box-shadow: 0 0 25px #555;
}

.window .position{
width: 100%;
height: 100%;
position: relative;
}


.window *{
background: none;
border: none;
}

.window .topBar{
background: whiteSmoke;
color: #555452;
height: 60px;
cursor: pointer;
cursor: all-scroll;
}

.window .topBar .name{
float: left;
font-size: 14px;
padding-top: 25px;
padding-left: 25px;
margin-left: 55px;
height: 35px;
border-left: 1px solid #E3E2E0;
font-weight: bold;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}

.window .topBar .name .active{
color: #3C8FA7;
}

.window .topBar .actionButtons{
padding-top: 25px;
height: 35px;
float: right;
text-align: center;
width: 80px;
border-left: 1px solid #E3E2E0;
}

.window .topBar .actionButtons .close{
cursor: pointer;
}

.window .body{
color: #6a6967 !important;
margin: 0;
}

.window .body *{
color: #6a6967 !important;
}

.window .resize{
position: absolute;
bottom: -5px;
right: -5px;
width: 20px;
height: 20px;
background: yellow;
cursor: se-resize;
}

.window .body input, .window .body button, .window .body textarea, .window .body select {
border: 1px solid #B5B5B3;
border-radius: 2px;
-o-border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
padding: 8px 15px;
padding-right: 20px;
outline: none;
margin: 3px;
box-sizing: content-box;
color: #686866;
}

.window .body input[type="text"], .window .body input[type="password"], .window .body input[type="email"]{
width: 200px;
}

.window .body input:focus{
border-color: #979692;
box-shadow: none;
}

.window .body input[type="submit"], .window .body button{
border: 1px solid #0e4e60;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #a6d6e4), color-stop(1, #3c8fa7));
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #76b8cb), color-stop(1, #24677a));
padding: 8px 20px !important;
font-weight: bold;
color: white !important
}

.window ::-webkit-scrollbar-thumb:vertical{
height: 50px !important;
background-color: #3C8FA7;
border-radius: 0;
}

.window ::-webkit-scrollbar-thumb:horizontal{
width:50px !important;
background-color: #3C8FA7;
border-radius: 0;
}

.window .body .infoBox{
font-style: italic;
}