/*!
 * jQuery UI Dialog 1.10.4
 * http://jqueryui.com
 *
 * Copyright 2014 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/dialog/#theming
 */
.ui-dialog {
    background: #72739e;
    background: -moz-linear-gradient(top,#72739e 40%,#44406b 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(40%,#72739e),color-stop(100%,#44406b));
    background: -webkit-linear-gradient(top,#72739e 40%,#44406b 100%);
    background: -o-linear-gradient(top,#72739e 40%,#44406b 100%);
    background: -ms-linear-gradient(top,#72739e 40%,#44406b 100%);
    background: linear-gradient(to bottom,#72739e 40%,#44406b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#72739e',endColorstr='#44406b',GradientType=0);
    box-shadow: 0 0 30px #000; 
    padding: 25px 0 20px 35px;
    height: auto;
    width: 1000px;
    margin: -7% auto; 
    position: relative;
}

    .ui-dialog .ui-dialog-title {
        color: #fff;
        font-family: Arimo;
        font-size: 20px;
        font-weight: 700;
    }

    .ui-dialog .ui-dialog-titlebar-close {
        position: absolute;
        right:-.05%;
        top: 0%;
        width: 42px;
        height: 42px;
        background: transparent url("../../../images/close.png");
	border: none;
cursor: pointer;
        /*margin: -10px -15px 0 0;*/
    }

    .ui-dialog .ui-dialog-content {
        border: 0;
        background: none;
    }

    .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;
    }

.ui-draggable .ui-dialog-titlebar {
    cursor: move;
}
