
/*@import url('normalize.css');*/
@import url('Fonts/Play/Play.css');

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Play', Arial, Helvetica, sans-serif;
    font-size: 12px;
    letter-spacing: 0px;
}

body {
    font-family: 'Play', Arial, Helvetica, sans-serif;
    font-size: 12px;
    letter-spacing: 0px;
    color: #333;
}

/* Text and heading elements */

h1, h2, h3 {}

h1 {
    margin: 10px 0;
    padding: 10px 0;
    font-size: 16px;
    color: rgba(50,100,150,0.7);
    border: none;
    border-bottom: 1px solid rgba(50,100,150,0.3);
}

sup, sub {
    font-size: 6pt;
}

p {}

hr
{
    margin: 10px 0;
    border: none;
    border-bottom: 1px solid rgba(50,100,150,0.3);
}

pre {}

code {}

/* Links */

a, a:visited {
    cursor: pointer;
    color: rgba(50,100,150,0.9);
    text-decoration: none;
}

a:hover {
    color: rgba(50,100,150,1);
}

dialog {
    min-width: 30vw;
    max-width: 90vw;
    min-height: 30vh;
    max-height: 90vh;
    border: 1px solid rgba(50,100,150,1);
}


/* Form elements */

form {
    margin: 0;
    border: 0;
    padding: 0;
}

input, select, textarea
{
    width: 100%;
    height: 30px;
    margin: 3px 0;
    border: 1px solid rgba(50,100,150,0.3);
    padding: 5px 8px;
    vertical-align: middle;
    color: #333;
    background-color: rgba(255,255,255,0.8);
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
}

label {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 3px 0;
    padding: 3px 3px 2px 0;
    vertical-align: auto;
}
label[for] {
    display: inline-block;
    width: 25%;
    padding: 0 10px;
    text-align: right;
    font-weight: 600;
    color: rgb(64,64,64);
}

label > span.label {
    width: 30%;
    padding: 10px;
    font-weight: 600;
    text-align: right;
}
label > input, label > select, label > textarea
{
    flex-grow: 1;
}
label > input[type=checkbox],label > input[type=radio] { flex-grow: 0; }

label + input, label + select, label + textarea
{
    width: 70%;
}

input:focus, select:focus, textarea:focus
{
    border: 1px solid rgba(50,100,150,0.8);
    background-color: rgba(255,255,255,1);
}

input[disabled], select[disabled], textarea[disabled]
{
    color: #AAA;
    background-color: rgba(0,0,0,0.05) !important;
}

input[type=radio] {
    border-radius: 32px;
}

input[type=checkbox],
input[type=radio]
{
    width: 30px;
    height: 30px;
    padding: 10px;
    cursor: pointer;
}

input[type=checkbox]:checked,
input[type=radio]:checked
{
    background-image: url('Image/checkbox.png');
    background-position: center center;
    background-repeat: no-repeat;
}

input[type=checkbox]:checked:disabled,
input[type=radio]:checked:disabled
{
    opacity: 0.5;
    filter: alpha(opacity=50);
}

input[type=file] {
    height: auto;
    border: none;
    padding: 0;
    vertical-align: middle;
}
input[type=color] {
    border: none;
    padding: 0;
}

select:not([multiple])
{
    padding-right: 25px;
    background-image: url('Image/select.png');
    background-position: right center;
    background-repeat: no-repeat;
}

select[multiple] { height: auto; resize: vertical; }

select option {}

textarea { min-height: 150px; resize: vertical; }

button,
a.Button
{
    height: 30px; /* Firefox line-height bug */
    margin: 3px;
    border: 1px solid rgba(50,100,150,0.5);
    border-radius: 2px;
    padding: 6px 10px;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    color: rgba(33,67,100,0.6);
    font-weight: bold;
    background-color: rgb(255,255,255);
    background: -webkit-linear-gradient(315deg, rgba(50,100,150,0.02), rgba(50,100,150,0.15)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(315deg, rgba(50,100,150,0.02), rgba(50,100,150,0.15)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(135deg, rgba(50,100,150,0.02), rgba(50,100,150,0.15)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(135deg,rgba(255,255,255,1), rgba(224,232,240,1)); /* Standard syntax */
}

button:first-child,
label + button {
    margin-left: 0;
}
    /* button after display:block elements */
    table + button, hr + button, div + button, p + button, ol + button, ul + button, script + button {
        margin-left: 0;
    }

button:last-child {
    margin-right: 0;
}

button:hover,
a.Button:hover {
    border: 1px solid rgba(50,100,150,0.8);
    color: rgba(33,67,100,0.8);
    background-color: rgb(255,255,255);
    background: -webkit-linear-gradient(315deg, rgba(50,100,150,0.05), rgba(50,100,150,0.25)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(315deg, rgba(50,100,150,0.05), rgba(50,100,150,0.25)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(315deg, rgba(50,100,150,0.05), rgba(50,100,150,0.25)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(135deg, rgba(224,232,240,1),rgba(255,255,255,1)); /* Standard syntax */
}

button img,
a.Button img
{
    margin: auto 5px auto 0 ;
    vertical-align: middle;
    opacity: 0.8;
}
button i,
a.Button i
{
    font-size: 16px;
    opacity: 0.8;
}
button::-moz-focus-inner /*Remove button padding in FF*/
{ 
    border: 0;
    padding: 0;
}

button[disabled],
button[disabled]:hover
{
    border: 1px solid rgba(100,100,100,0.3);
    cursor: default;
    color: rgba(67,67,67,0.5);
    background-color: rgba(100,100,100,0.1);
    background: -webkit-linear-gradient(315deg, rgba(50,50,50,0), rgba(150,150,150,0.25)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(315deg, rgba(50,50,50,0), rgba(150,150,150,0.25)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(135deg, rgba(50,50,50,0), rgba(150,150,150,0.25)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(135deg,rgba(50,50,50,0), rgba(150,150,150,0.25)); /* Standard syntax */
}
button[disabled] img,
button[disabled]:hover img,
button[disabled] i,
button[disabled]:hover i
{
    opacity: 0.2;
}
button:hover img,
button:hover i
{
    opacity: 1;
}

button:focus { outline: none; }

fieldset {
    margin: 10px 0;
    border: 1px solid rgba(50,100,150,0.3);
    padding: 10px;
}

legend {
    width: calc(100%);
    /*margin: auto -11px auto -11px;*/
    border: 1px solid rgba(50,100,150,0.3);
    padding: 5px 10px 5px 10px;
    font-weight: bold;
    color: rgba(50,100,150,0.8);
    background-color: rgba(50,100,150,0.05);
    background: -webkit-linear-gradient(315deg, rgba(50,100,150,0.02), rgba(50,100,150,0.15)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(315deg, rgba(50,100,150,0.02), rgba(50,100,150,0.15)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(315deg, rgba(50,100,150,0.15), rgba(50,100,150,0.02)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(315deg, rgba(50,100,150,0.15), rgba(50,100,150,0.02)); /* Standard syntax */
}


/* Table elements */

table
{
    width: 100%;
    border-collapse: collapse;
    background-color: #FFF;
}

tr {}

@-moz-document url-prefix() {
    tr {
        height: 1px;
        overflow: visible;
    }
}

tr:hover, tr:hover td { background-color: rgba(50,100,150,0.03); }
tr.green, tr.green td, td.green { background-color: rgba(127,255,127,0.1); }
    tr.green:hover, tr.green:hover td { background-color: rgba(50,150,50,0.03); }
tr.red, tr.red td, td.red { background-color: rgba(255,127,127,0.1); }
    tr.red:hover, tr.red:hover td { background-color: rgba(150,50,50,0.03); }
tr.yellow, tr.yellow td, td.yellow { background-color: rgba(255,255,127,0.1); }
    tr.yellow:hover, tr.yellow:hover td { background-color: rgba(150,150,50,0.03); }

tr.Header, thead, tfoot {
    font-weight: bold;
    color: rgba(50,100,150,0.8);
    background-color: rgba(50,100,150,0.05);
    background: -webkit-linear-gradient(rgba(50,100,150,0.15), rgba(50,100,150,0.02),rgba(50,100,150,0.15)); /* Standard syntax */
    background: -moz-linear-gradient(rgba(50,100,150,0.15), rgba(50,100,150,0.02),rgba(50,100,150,0.15)); /* Standard syntax */
    background: -o-linear-gradient(rgba(50,100,150,0.15), rgba(50,100,150,0.02),rgba(50,100,150,0.15)); /* Standard syntax */
    background: linear-gradient(rgba(50,100,150,0.15), rgba(50,100,150,0.02),rgba(50,100,150,0.15)); /* Standard syntax */
}

tr.Disabled, td.Disabled
{
    background-color: rgba(0,0,0,0.05);
}

tr.Selected, td.Selected {
    background-color: rgba(50,100,150,0.05);
}

td,th {
    height: 1px;
    overflow: visible;
    border: 0.1px solid rgb(173,194,214);
    padding: 5px;
}

@-moz-document url-prefix() {
    td {
        height: 100%;
        overflow: visible;
    }
}

td input, td select { width: 100%; margin: 0; }
td input:only-child, td select:only-child { width: 100%; margin: 0; }

td button { margin: 0; }
td button:only-child { margin: 0; }

td.Button, td.Control, th.Control,
td.Embedded, th.Embedded
{
    height: 32px;
    padding: 0;
    white-space: nowrap;
    background-color: #FFF !important;
}

td.Button input, td.Button select,
th.Button input, th.Button select,
td.Control input, td.Control select,
th.Control input, th.Control select {
    width: 100%;
    min-width: 28px;
    height: 100%;
    margin: 0;
    border: none;
    padding: 3px 5px;
    background-color: rgba(50,100,150,0.1);
}

td.Button button, td.Control button,
th.Button button, th.Control button,
td.Button a.Button, td.Control a.Button,
th.Button a.Button, th.Control a.Button {
    display: block;
    width: 100%;
    min-width: 28px;
    height: 28px;
    height: 100%;
    margin: 0;
    border: 1px solid #fff;
    padding: 3px 5px;
    background-color: rgba(50,100,150,0.1);
    text-align: center;
}

td.Button button img,
td.Control button img,
th.Control button img { margin: 0 1px; }

button > i.material-icons
{
    font-size: 14px;
    vertical-align: text-bottom;
    color: #336699;
}

td.Control input:focus,
th.Control input:focus {
    background-color: rgba(255,255,255,1);
}

td.Control textarea {
    width: 100%;
    min-width: 28px;
    height: 100%;
    margin: 0;
    border: none;
    padding: 3px 5px;
    background-color: rgba(50,100,150,0.1);
}

td.Label
{
    width: 25%;
    font-weight: bold;
    text-align: right;
    color: rgba(50,100,150,0.8);
    background-color: rgba(50,100,150,0.03);
}

td.Sort
{
    background-image: url('Image/sort.png');
    background-position: center center;
    background-repeat: no-repeat;
}

td.Sort.Up
{
    background-image: url('Image/sort-up.png');
    background-position: center right;
    background-repeat: no-repeat;
}

td.Sort.Down
{
    background-image: url('Image/sort-down.png');
    background-position: center right;
    background-repeat: no-repeat;
}

td img:only-child { vertical-align: bottom }

/* Lists elements */

ul {
    margin: 0;
    padding: 5px;
    list-style-position: inside;
    list-style-type: disc;
}

ol {
    margin: 0;
    padding: 5px;
    list-style-position: inside;
}

li {
    margin: 3px 0;
    line-height: 120%;
}

.Error {
    border: 1px solid #FCC;
    background-color: #FDFCFC;
}

div.Error {
    margin: 10px 0 0 0;
    border: 1px solid #FCC;
    padding: 30px;
    color: #977;
    font-weight: bold;
    text-align: center;
    background-color: #FDFCFC;
}

.Tabs {
    margin: 10px 0 10px 0;
    border: none;
    border-bottom: 1px solid rgba(50,100,150,0.3);
    padding: 0 10px 0 10px;
}

.Tabs > *, .Tab {
    display: inline-block;
    height: auto;
    margin: 0 0 -1px 0;
    border: 1px solid rgba(50,100,150,0.3);
    border-bottom: 1px solid transparent;
    border-radius: 0;
    padding: 10px 15px;
    font-weight: normal;
    color: #666;
    background-color: rgba(50,100,150,0.05);
    background: -webkit-linear-gradient(315deg, rgba(50,100,150,0.02), rgba(50,100,150,0.15)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(315deg, rgba(50,100,150,0.02), rgba(50,100,150,0.15)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(135deg, rgba(50,100,150,0.02), rgba(50,100,150,0.15)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(135deg,rgba(50,100,150,0.02), rgba(50,100,150,0.15)); /* Standard syntax */
}

.Tabs > *:hover { border-bottom: 1px solid transparent; }

.Tabs > *.Active, .Tab.Active {
    border-bottom: 1px solid #FFF;
    background: none;
    background-color: #FFF;
    font-weight: bold;
    color: #888;
}

.Tab img {
    vertical-align: middle;
    margin: -2px 0;
}

a.Tab, .Tab > a {
    text-decoration: none;
    color: #666;
}
body {
    min-height: 100vh;
    margin: 0;
    border: 0;
    padding: 0;
    overflow: auto;
    background-color: #FDFDFD;
}

.ECMS_TPL_Body {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 1004px;
    min-height: 100vh;
    margin: 0 auto;
    border: 0;
    background-color: #fff;
}

.ECMS_TPL_Modal {
    display: block;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 10px;
}

.ECMS_TPL_Header {
    display: flex;
    flex-direction: column;
    margin: 0;
    border: 0;
    padding: 0;
    background-color: #fff;
}

.ECMS_TPL_Middle {
    /*flex-grow: 1;*/
    display: flex;
    width: 100%;
}

.ECMS_TPL_Left {
    vertical-align: top;
    flex-basis: 256px;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0;
    border: 0;
    padding: 0 10px 0 0;
}

.ECMS_TPL_Left:empty { display: none; }

.ECMS_TPL_Wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    vertical-align: top;
    /*width: 520px;*/
    width: auto;
    min-height: 100%;
    margin: 0;
    border: 0;
    padding: 0;
}

.ECMS_TPL_Top {
    margin: 0;
    border: 0;
    padding: 0;
}

.ECMS_TPL_Center {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin: 0;
    border: 0;
    padding: 0;
}

.ECMS_TPL_Bottom {
    margin: 0;
    border: 0;
    padding: 0;
}

.ECMS_TPL_Right {
    vertical-align: top;
    flex-basis: 176px;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0;
    border: 0;
    padding: 0 0 0 10px;
}
.ECMS_TPL_Right:empty { display: none; }

.ECMS_TPL_Footer {
    clear: both;
    margin: 0;
    border: 0;
    padding: 0;
}

/* Desktop */
/*@media screen and (min-width: 1024px)
{
    .ECMS_TPL_Body { width: 1004px; }
    
    .ECMS_TPL_Left { display: block; }
}*/

/* Tablet */
@media screen and (max-width: 1023px)
{
    .ECMS_TPL_Body { width: 100%; }

    .ECMS_TPL_Left { display: table-cell; width: 30%; margin: 0; padding: 0 10px 0 0; }

    .ECMS_TPL_Right { display: none; }
}

/* Mobile */
@media screen and (max-width: 767px)
{
    .ECMS_TPL_Body { width: 100%; }

    .ECMS_TPL_Middle { display: block; }

    .ECMS_TPL_Left { display: block; float: none; width: 100%; margin: 0; padding: 0; }

    .ECMS_TPL_Wrapper { display: block; width: 100%; }

    .ECMS_TPL_Right { display: none; }
}
.ECMS.Extension.Module
{
    display: flex;
    flex-direction: column;
    clear: both;
    margin: 0 0 10px 0;
    border: 0.1px solid rgba(50,100,150,0.5);
    padding: 0;
}

.ECMS.Extension.Module > .Administration
{
    padding: 10px;
    float: right;
    width: auto;
    text-align: right;
}

.ECMS.Extension.Module > .Title
{
    display: flex;
    flex-direction: row;
    min-height: 30px;
    margin: 0;
    border: none;
    border-bottom: 1px solid rgba(50,100,150,0.2);
    padding: 8px;
    font-weight: 500;
    align-items: center;
    color: rgb(0,0,0);
    background-color: #fff;
    background: linear-gradient(315deg, rgba(50,100,150,0.15), rgba(50,100,150,0.02)); /* Standard syntax */
}

.ECMS.Extension.Module > .Title > button,
.ECMS.Extension.Module > .Title > a {
    height: auto;
    margin: -8px 0;
    border: none;
    padding: 8px 8px 6px 8px;
    background: none;
}
.ECMS.Extension.Module > .Title > button:first-child,
.ECMS.Extension.Module > .Title > a:first-child { margin-left: -8px; }
.ECMS.Extension.Module > .Title > button:hover,
.ECMS.Extension.Module > .Title > a:hover { background-color: rgba(0,0,0,0.05); }

.ECMS.Extension.Module > .Title > span { flex-grow: 1;
    padding: 0 5px; }
.ECMS.Extension.Module > .Title  i { font-size: 16px; line-height: 16px; }
.ECMS.Extension.Module > .Title > i { margin: 0; padding: 0; }

.ECMS.Extension.Module > .Content
{
    flex-grow: 1;
    margin: 0;
    padding: 10px;
}

.ECMS.Extension.Module > .Status
{
    border: none;
    border-top: 1px solid rgba(100,100,100,0.2);
    padding: 2px 8px;
    background-color: rgba(0,0,0,0.01);
}
.ECMS.Extension.Module > .Status *
{
    font-size: 80%;
}
.ECMS_TPL_Header > .Module {
    background-color: rgba(100,100,100,0.05);
    background: -webkit-linear-gradient(315deg, rgba(100,100,100,0.02), rgba(100,100,100,0.15)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(315deg, rgba(100,100,100,0.02), rgba(100,100,100,0.15)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(315deg, rgba(100,100,100,0.15), rgba(100,100,100,0.02)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(315deg, rgba(100,100,100,0.15), rgba(100,100,100,0.02)); /* Standard syntax */
}

.ECMS_TPL_Header > .Module > .Title {}

.ECMS_TPL_Header > .Module > .Content {}

.ECMS_TPL_Header > .Module > .Status {}

.ECMS_TPL_Header > .Module:first-child {
    border-top: none;
}
.ECMS_TPL_Left > .Module {}

.ECMS_TPL_Left > .Module > .Title {}

.ECMS_TPL_Left > .Module > .Content {}

.ECMS_TPL_Left > .Module > .Status {}
.ECMS_TPL_Top > .Module {}

.ECMS_TPL_Top > .Module > .Title {}

.ECMS_TPL_Top > .Module > .Content {}

.ECMS_TPL_Top > .Module > .Status {}
.ECMS_TPL_Center > .Module { }

.ECMS_TPL_Center > .Module > .Title {}

.ECMS_TPL_Center > .Module > .Content {}

.ECMS_TPL_Center > .Module > .Status {}
.ECMS_TPL_Bottom > .Module {}

.ECMS_TPL_Bottom > .Module > .Title {}

.ECMS_TPL_Bottom > .Module > .Content {}

.ECMS_TPL_Bottom > .Module > .Status {}
.ECMS_TPL_Right > .Module {}

.ECMS_TPL_Right > .Module > .Title {}

.ECMS_TPL_Right > .Module > .Content {}

.ECMS_TPL_Right > .Module > .Status {}
.ECMS_TPL_Footer > .Module {}

.ECMS_TPL_Footer > .Module > .Title {}

.ECMS_TPL_Footer > .Module > .Content {}

.ECMS_TPL_Footer > .Module > .Status {}