﻿/* North-West corner */
.dialog_nw {
  background: transparent url(default/top_left.gif) no-repeat 0 0;         
  width:10px;
  height:25px;
}

/* North border */
.dialog_n {
  background: transparent url(default/top_mid.gif) repeat-x 0 0;           
  height:25px;
}

/* North-East corner */
.dialog_ne {
  background: transparent url(default/top_right.gif) no-repeat 0 0;            
  width:10px;     
  height:25px;
}

/* West border */
.dialog_w {
	background: transparent url(default/center_left.gif) repeat-y 0 0;		
  width:7px;
}

/* East border */
.dialog_e {
	background: transparent url(default/center_right.gif) repeat-y 0 0;	
  width:7px;      
}

/* South-West corner */
.dialog_sw {
	background: transparent url(default/bottom_left.gif) no-repeat 0 0;			
  width:7px;
  height:7px;
}

/* South border */
.dialog_s {
	background: transparent url(default/bottom_mid.gif) repeat-x 0 0;		
  height:7px;
}

/* South-East corner */
.dialog_se {
	background: transparent url(default/bottom_right.gif) no-repeat 0 0;			
  width:7px;
  height:7px;
  vertical-align:top;
}

/* Resize button */
.dialog_sizer {
  width:7px;
  height:7px;
	background: transparent url(default/sizer.gif) no-repeat 0 0;	
    cursor:se-resize;   
}

/* Close button */
.dialog_close
{
	width: 23px;
	height: 23px;
	background: transparent url(default/close.gif) no-repeat 0 0;
	position: absolute;
	top: 5px;
	right: 11px;
	cursor: pointer;
	z-index: 1000;
}

/* Minimize button */
.dialog_minimize {
    width: 23px;
    height: 23px;
	background: transparent url(default/minimize.gif) no-repeat 0 0;			
    position:absolute;
    top:5px;
    right:55px;
    cursor:pointer;
    z-index:1000;
}

/* Maximize button */
.dialog_maximize {
    width: 23px;
    height: 23px;
	background: transparent url(default/maximize.gif) no-repeat 0 0;			
    position:absolute;
    top:5px;
    right:33px;
    cursor:pointer;
    z-index:1000;
}

/* Title bar */
.dialog_title {
    float:left;
    height:14px;
    font-size:14px;
    text-align:center;
    margin-top:2px;
    width:100%;
    color:#123456;
}

/* Content div (not used for url) */
.dialog_content {
    overflow:auto;
    color: #000;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 10px;
    background:#FDFDFD;
}
.top_draggable, .bottom_draggable {
  cursor:move;
}

.status_bar {
  font-size:12px;
}
.status_bar input{
  font-size:12px;
}

.wired_frame {
	display: block;
  position: absolute;
  border: 1px #000 dashed;
}

/* DO NOT CHANGE THESE VALUES*/
.dialog {
	display: block;
	position: absolute;
}

.dialog table.table_window
{
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

.dialog table.table_window td , .dialog table.table_window th { 
  padding: 0; 
}

.dialog .title_window {
  -moz-user-select:none;
}          
/* Overlay for modal window, spécify color and opacity (three times to work on all browsers */
.overlay_dialog {
  background-color: #85BBEF;
  filter:alpha(opacity=60);
  -moz-opacity: 0.6;
  opacity: 0.6;
}
.overlay___invisible__ {
  background-color: #666666;
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}
