/*! jQuery Custom UI - v0.1.0 - 2016-11-25
Create by Miazon.com
/* Layout helpers
----------------------------------*/
.ui-dialog {
       position: relative;
	    max-width: 950px;
	    background: #fff;
	    border: 1px solid #373737;
	    z-index: 51;
}
.ui-dialog .ui-dialog-titlebar {
    font-family: "NanumGothic","Malgun Gothic", "맑은 고딕", "돋움",dotum,Helvetica,sans-serif;
    background: #444;
    color: #fff;
    font-size: 21px;
    height: 50px;
    line-height: 50px;
    text-indent: 15px;
}
.ui-dialog .ui-dialog-title {
    font-family: "NanumGothic","Malgun Gothic", "맑은 고딕", "돋움",dotum,Helvetica,sans-serif;
    background: #444;
    color: #fff;
    font-size: 21px;
    height: 50px;
    line-height: 50px;
    text-indent: 15px;
}
.ui-dialog .ui-dialog-titlebar-close {
   position: absolute;
    border: none;
    top: 0;
    right: 0;
    width: 60px;
    height: 50px;
    line-height: 45px;
    background: #444 url(../../images/content/btn-close-modal.png) no-repeat center center;
    text-indent: -9999px;
    text-align: center;
}
.ui-dialog .ui-dialog-content {
	margin: 15px;
    height: 500px;
    overflow-y: auto;
}
.ui-dialog .ui-dialog-buttonpane {
    text-align: left;
    border-width: 1px 0 0 0;
    background-image: none;
    margin-top: .5em;
    padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
    margin: .5em .4em .5em 0;
    cursor: pointer;
}
.ui-dialog .ui-resizable-se {
    width: 12px;
    height: 12px;
    right: -5px;
    bottom: -5px;
    background-position: 16px 16px;
}
/* Overlays */
.ui-widget-overlay { 
	  position: fixed;
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
}
.ui-widget-overlay
{
  opacity: .50 !important; /* Make sure to change both of these, as IE only sees the second one */
  filter: Alpha(Opacity=50) !important;

  background-color: rgb(50, 50, 50) !important; /* This will make it darker */
}

