
/*********************************************************/
/** @desc : 배경 마스크 **********************************/
/** @use  : /_inc/head.inc *******************************/
/*********************************************************/
div.m-mask {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    background-color: #000;

    /* -ms-filter, filter, opacity 순서 바꾸지 말것.(가상클래스 적용안될 수 있음) */
    /* IE8에서 opacity 는 적용 되는데,  li:hover, a:hover 적용안되서 주석 처리함 */
    /* -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";    /* IE8 대응 */
	/* filter: alpha(opacity=50);    /* IE7 이하 */
    /* opacity: 0.5; */

    opacity: 0.5;
    -ms-filter: "alpha(opacity=50)";    /* IE8 이하 */
    z-index: 20; /* dialog:9900, popup:9800, mask: 9700 */
}


/*********************************************************/
/** @desc : 퉅팁 CSS *************************************/
/** @use  :  *********************************************/
/*********************************************************/
.ui-tooltip {
    border: 1px solid #339040;
}


/*********************************************************/
/** @desc : 각 모듈의 y-scroll ***************************/
/*********************************************************/
div.y-scroll {
    overflow: scroll;
    overflow-x: hidden;
}


/*********************************************************/
/** @desc : 팝업 *****************************************/
/** @use  : /_inc/head.inc *******************************/
/*********************************************************/
#m-popup {
    display: none;  /*test 시 display: block;*/
    position: absolute;
    top: 200px;
    left: 400px;
    width: 500px;
    height: 500px;
    background-color: #fff;
    border-top: 5px ridge #A5A5A5;
    border-right: 7px ridge #757575;
    border-bottom: 7px ridge #757575;
    border-left: 5px ridge #A5A5A5;
    z-index: 25; /* dialog:9900, popup:9800, mask: 9700 */
}

#m-popup > div.popup_header {
    height: 25px;
    background: #757575;
    background: -moz-linear-gradient(left, #D6D6D6 0%, #757575 100%);
    background: -webkit-gradient(linear, right, left, color-stop(0%,#D6D6D6), color-stop(100%,#757575));
    background: -webkit-linear-gradient(left, #D6D6D6 0%,#757575 100%);
    background: -o-linear-gradient(left, #D6D6D6 0%,#757575 100%);
    background: -ms-linear-gradient(left, #D6D6D6 0%,#757575 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#757575', endColorstr='#D6D6D6',GradientType=1 );    /* ie8적용, GradientType=0 위에서 아래로, GradientType=1 왼쪽에서 오른쪽으로 */
    background: linear-gradient(to left, #D6D6D6 0%,#757575 100%);
}

#m-popup > div.popup_header > div.popup_title {
    float: left;
    width: 90%;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    line-height: 25px;
    text-align: center;
    text-indent: 50px;  /* 들여쓰기 */
    cursor: default;
}

#m-popup > div.popup_header > div.popup_title_btn {
    float: left;
    width: 10%;
}

#m-popup > div.popup_header > div.popup_title_btn > a {
    float: right;
    margin-top: 2px;
    margin-right: 5px;
    padding: 0px 7px;
    background-color: #fff;
    border: 1px solid #757575;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

#m-popup > div.popup_content {
    clear: both;
    padding: 10px;
    height: 455px;
    overflow: scroll;
    overflow-x: hidden;
}


/* ******************************* */
/* *** img popup ***************** */
/* ******************************* */
div.popup_img {
    display: block;  /*test 시 display: block;*/
    position: absolute;
    top: 10px;
    left: 0;
    min-width: 100px;
    min-height: 100px;
    background-color: #fff;
    border: 1px solid #757575;
/*     border-top: 5px ridge #A5A5A5;
    border-right: 7px ridge #757575;
    border-bottom: 7px ridge #757575;
    border-left: 5px ridge #A5A5A5; */
    z-index: 25; /* dialog:9900, popup:9800, mask: 9700 */
}

div.popup_img > div.popup_img_content {
    clear: both;
    min-width: 100px;
    min-height: 100px;
}

div.popup_img > div.popup_img_content > img {
    margin: auto;
}

div.popup_img > div.popup_img_footer {
    height: 25px;
    background: #757575;
    background: -moz-linear-gradient(left, #D6D6D6 0%, #757575 100%);
    background: -webkit-gradient(linear, right, left, color-stop(0%,#D6D6D6), color-stop(100%,#757575));
    background: -webkit-linear-gradient(left, #D6D6D6 0%,#757575 100%);
    background: -o-linear-gradient(left, #D6D6D6 0%,#757575 100%);
    background: -ms-linear-gradient(left, #D6D6D6 0%,#757575 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#757575', endColorstr='#D6D6D6',GradientType=1 );    /* ie8적용, GradientType=0 위에서 아래로, GradientType=1 왼쪽에서 오른쪽으로 */
    background: linear-gradient(to left, #D6D6D6 0%,#757575 100%);
    text-align: right;
    cursor: default;
}

div.popup_img > div.popup_img_footer > a.popup_title {
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    line-height: 25px;
    text-decoration: underline;
}

div.popup_img > div.popup_img_footer > a.popup_title_btn {
    margin-right: 5px;
    padding: 0px 7px;
    background-color: #fff;
    border: 1px solid #757575;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    line-height: 25px;
    white-space: nowrap;
}





div.popup_img_basket {
    display: block;  /*test 시 display: block;*/
    position: absolute;
    top: 295px;
    right: 0px !important;
    min-width: 100px;
    min-height: 100px;
    background-color: #fff;
    border: 1px solid #757575;
/*     border-top: 5px ridge #A5A5A5;
    border-right: 7px ridge #757575;
    border-bottom: 7px ridge #757575;
    border-left: 5px ridge #A5A5A5; */
    z-index: 25; /* dialog:9900, popup:9800, mask: 9700 */
}

div.popup_img_basket > div.popup_img_content {
    clear: both;
    min-width: 100px;
    min-height: 100px;
}

div.popup_img_basket > div.popup_img_content > img {
    margin: auto;
}

div.popup_img_basket > div.popup_img_footer {
    height: 25px;
    background: #757575;
    background: -moz-linear-gradient(left, #D6D6D6 0%, #757575 100%);
    background: -webkit-gradient(linear, right, left, color-stop(0%,#D6D6D6), color-stop(100%,#757575));
    background: -webkit-linear-gradient(left, #D6D6D6 0%,#757575 100%);
    background: -o-linear-gradient(left, #D6D6D6 0%,#757575 100%);
    background: -ms-linear-gradient(left, #D6D6D6 0%,#757575 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#757575', endColorstr='#D6D6D6',GradientType=1 );    /* ie8적용, GradientType=0 위에서 아래로, GradientType=1 왼쪽에서 오른쪽으로 */
    background: linear-gradient(to left, #D6D6D6 0%,#757575 100%);
    text-align: right;
    cursor: default;
}

div.popup_img_basket > div.popup_img_footer > a.popup_title {
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    line-height: 25px;
    text-decoration: underline;
}

div.popup_img_basket > div.popup_img_footer > a.popup_title_btn {
    margin-right: 5px;
    padding: 0px 7px;
    background-color: #fff;
    border: 1px solid #757575;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    line-height: 25px;
    white-space: nowrap;
}












/*********************************************************/
/** @desc : 페이징 CSS ***********************************/
/** @use  :  *********************************************/
/*********************************************************/
div.pager {
    margin-top: 15px;
    text-align: center;
}

div.pager > a.pager {
    padding: 5px;
    border: 1px solid #757575;
}

div.pager > a.pager:hover {
    background-color: #757575;
    color: #fff;
}

div.pager > a.selected {
    background-color: #757575;
    color: #fff;
    font-weight: bold;
}

div.pager > a.pager > span {
    font-size: 11px;
    letter-spacing: -2px;
}

div.pager > a.pager:hover > span,
div.pager > a.pager > span:hover {
    background-color: #757575;
    color: #fff;
}

