first commit
@@ -0,0 +1,27 @@
|
||||
.accordion{
|
||||
background:#fff;
|
||||
overflow:hidden;
|
||||
}
|
||||
.accordion .accordion-header{
|
||||
background:#E0ECFF;
|
||||
border-top-width:0;
|
||||
cursor:pointer;
|
||||
}
|
||||
.accordion .accordion-header .panel-title{
|
||||
font-weight:normal;
|
||||
}
|
||||
.accordion .accordion-header-selected .panel-title{
|
||||
font-weight:bold;
|
||||
}
|
||||
.accordion-noborder .accordion-header{
|
||||
border-width:0 0 1px;
|
||||
}
|
||||
.accordion-noborder .accordion-body{
|
||||
border-width:0px;
|
||||
}
|
||||
.accordion-collapse{
|
||||
background:url('images/accordion_collapse.png') no-repeat;
|
||||
}
|
||||
.accordion-expand{
|
||||
background:url('images/accordion_expand.png') no-repeat;
|
||||
}
|
||||
@@ -0,0 +1,160 @@
|
||||
.calendar{
|
||||
background:#fff;
|
||||
border:1px solid #A4BED4;
|
||||
padding:1px;
|
||||
overflow:hidden;
|
||||
}
|
||||
.calendar-noborder{
|
||||
border:0px;
|
||||
}
|
||||
.calendar-header{
|
||||
position:relative;
|
||||
background:#E0ECFF;
|
||||
font-size:12px;
|
||||
height:22px;
|
||||
}
|
||||
.calendar-title{
|
||||
text-align:center;
|
||||
height:22px;
|
||||
}
|
||||
.calendar-title span{
|
||||
position:relative;
|
||||
top:2px;
|
||||
line-height:12px;
|
||||
display:inline-block;
|
||||
padding:3px;
|
||||
cursor:pointer;
|
||||
-moz-border-radius:4px;
|
||||
-webkit-border-radius:4px;
|
||||
}
|
||||
.calendar-prevmonth,.calendar-nextmonth,.calendar-prevyear,.calendar-nextyear{
|
||||
position:absolute;
|
||||
top:4px;
|
||||
width:14px;
|
||||
height:14px;
|
||||
line-height:12px;
|
||||
cursor:pointer;
|
||||
font-size:1px;
|
||||
-moz-border-radius:4px;
|
||||
-webkit-border-radius:4px;
|
||||
}
|
||||
.calendar-prevmonth{
|
||||
left:20px;
|
||||
background:url('images/calendar_prevmonth.gif') no-repeat 3px 2px;
|
||||
}
|
||||
.calendar-nextmonth{
|
||||
right:20px;
|
||||
background:url('images/calendar_nextmonth.gif') no-repeat 3px 2px;
|
||||
}
|
||||
.calendar-prevyear{
|
||||
left:3px;
|
||||
background:url('images/calendar_prevyear.gif') no-repeat 1px 2px;
|
||||
}
|
||||
.calendar-nextyear{
|
||||
right:3px;
|
||||
background:url('images/calendar_nextyear.gif') no-repeat 1px 2px;
|
||||
}
|
||||
.calendar-body{
|
||||
font-size:12px;
|
||||
position:relative;
|
||||
}
|
||||
.calendar-body table{
|
||||
width:100%;
|
||||
height:100%;
|
||||
border:1px solid #eee;
|
||||
font-size:12px;
|
||||
}
|
||||
.calendar-body th,.calendar-body td{
|
||||
text-align:center;
|
||||
}
|
||||
.calendar-body th{
|
||||
background:#fafafa;
|
||||
color:#888;
|
||||
}
|
||||
.calendar-day{
|
||||
color:#222;
|
||||
cursor:pointer;
|
||||
border:1px solid #fff;
|
||||
-moz-border-radius:4px;
|
||||
-webkit-border-radius:4px;
|
||||
}
|
||||
.calendar-sunday{
|
||||
color:#CC2222;
|
||||
}
|
||||
.calendar-saturday{
|
||||
color:#00ee00;
|
||||
}
|
||||
.calendar-today{
|
||||
color:#0000ff;
|
||||
}
|
||||
.calendar-other-month{
|
||||
opacity:0.3;
|
||||
filter:alpha(opacity=30);
|
||||
}
|
||||
.calendar-hover{
|
||||
border:1px solid red;
|
||||
}
|
||||
.calendar-selected{
|
||||
background:#FBEC88;
|
||||
border:1px solid red;
|
||||
}
|
||||
.calendar-nav-hover{
|
||||
background-color:#FBEC88;
|
||||
}
|
||||
|
||||
|
||||
.calendar-menu{
|
||||
position:absolute;
|
||||
top:0px;
|
||||
left:0px;
|
||||
width:180px;
|
||||
height:150px;
|
||||
padding:5px;
|
||||
font-size:12px;
|
||||
background:#fafafa;
|
||||
opacity:0.8;
|
||||
filter:alpha(opacity=80);
|
||||
display:none;
|
||||
}
|
||||
.calendar-menu-year-inner{
|
||||
text-align:center;
|
||||
padding-bottom:5px;
|
||||
}
|
||||
.calendar-menu-year{
|
||||
width:40px;
|
||||
text-align:center;
|
||||
border:1px solid #ccc;
|
||||
padding:2px;
|
||||
font-weight:bold;
|
||||
}
|
||||
.calendar-menu-prev,.calendar-menu-next{
|
||||
display:inline-block;
|
||||
width:21px;
|
||||
height:21px;
|
||||
vertical-align:top;
|
||||
cursor:pointer;
|
||||
}
|
||||
.calendar-menu-prev{
|
||||
margin-right:10px;
|
||||
background:url('images/calendar_prevyear.gif') no-repeat 5px 6px;
|
||||
}
|
||||
.calendar-menu-next{
|
||||
margin-left:10px;
|
||||
background:url('images/calendar_nextyear.gif') no-repeat 5px 6px;
|
||||
}
|
||||
.calendar-menu-hover{
|
||||
background-color:#FBEC88;
|
||||
}
|
||||
.calendar-menu-month-inner table{
|
||||
width:100%;
|
||||
height:100%;
|
||||
}
|
||||
.calendar-menu-month{
|
||||
text-align:center;
|
||||
cursor:pointer;
|
||||
border:1px solid #fafafa;
|
||||
font-weight:bold;
|
||||
color:#666;
|
||||
-moz-border-radius:4px;
|
||||
-webkit-border-radius:4px;
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
.combo{
|
||||
display:inline-block;
|
||||
white-space:nowrap;
|
||||
font-size:12px;
|
||||
margin:0;
|
||||
padding:0;
|
||||
border:1px solid #A4BED4;
|
||||
background:#fff;
|
||||
}
|
||||
.combo-text{
|
||||
font-size:12px;
|
||||
border:0px;
|
||||
line-height:20px;
|
||||
height:20px;
|
||||
padding:0px;
|
||||
*height:18px;
|
||||
*line-height:18px;
|
||||
_height:18px;
|
||||
_line-height:18px;
|
||||
}
|
||||
.combo-arrow{
|
||||
background:#E0ECF9 url('images/combo_arrow.gif') no-repeat 3px 4px;
|
||||
width:18px;
|
||||
height:20px;
|
||||
overflow:hidden;
|
||||
display:inline-block;
|
||||
vertical-align:top;
|
||||
cursor:pointer;
|
||||
opacity:0.6;
|
||||
filter:alpha(opacity=60);
|
||||
}
|
||||
.combo-arrow-hover{
|
||||
opacity:1.0;
|
||||
filter:alpha(opacity=100);
|
||||
}
|
||||
.combo-panel{
|
||||
background:#fff;
|
||||
overflow:auto;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
.combobox-item{
|
||||
padding:2px;
|
||||
font-size:12px;
|
||||
padding:3px;
|
||||
padding-right:0px;
|
||||
}
|
||||
.combobox-item-hover{
|
||||
background:#fafafa;
|
||||
}
|
||||
.combobox-item-selected{
|
||||
background:#FBEC88;
|
||||
}
|
||||
@@ -0,0 +1,243 @@
|
||||
.datagrid .panel-body{
|
||||
overflow:hidden;
|
||||
}
|
||||
.datagrid-wrap{
|
||||
position:relative;
|
||||
}
|
||||
.datagrid-view{
|
||||
position:relative;
|
||||
overflow:hidden;
|
||||
}
|
||||
.datagrid-view1{
|
||||
position:absolute;
|
||||
overflow:hidden;
|
||||
left:0px;
|
||||
top:0px;
|
||||
}
|
||||
.datagrid-view2{
|
||||
position:absolute;
|
||||
overflow:hidden;
|
||||
left:210px;
|
||||
top:0px;
|
||||
}
|
||||
.datagrid-mask{
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
background:#ccc;
|
||||
opacity:0.3;
|
||||
filter:alpha(opacity=30);
|
||||
display:none;
|
||||
}
|
||||
.datagrid-mask-msg{
|
||||
position:absolute;
|
||||
left:100px;
|
||||
top:50px;
|
||||
width:auto;
|
||||
height:16px;
|
||||
padding:12px 5px 10px 30px;
|
||||
background:#fff url('images/pagination_loading.gif') no-repeat scroll 5px 10px;
|
||||
border:2px solid #6593CF;
|
||||
color:#222;
|
||||
display:none;
|
||||
}
|
||||
.datagrid-title{
|
||||
background:url('images/datagrid_title_bg.png') repeat-x;
|
||||
border-bottom:1px solid #8DB2E3;
|
||||
border-top:1px solid #fff;
|
||||
position:relative;
|
||||
padding:5px 0px;
|
||||
}
|
||||
.datagrid-title-text{
|
||||
color:#15428b;
|
||||
font-weight:bold;
|
||||
padding-left:5px;
|
||||
}
|
||||
.datagrid-title-with-icon{
|
||||
padding-left:22px;
|
||||
}
|
||||
.datagrid-title-icon{
|
||||
position:absolute;
|
||||
width:16px;
|
||||
height:16px;
|
||||
left:3px;
|
||||
top:4px!important;
|
||||
top:6px;
|
||||
}
|
||||
.datagrid-sort-desc .datagrid-sort-icon{
|
||||
padding:2px 13px 3px 0px;
|
||||
background:url('images/datagrid_sort_desc.gif') no-repeat center center;
|
||||
}
|
||||
.datagrid-sort-asc .datagrid-sort-icon{
|
||||
padding:2px 13px 3px 0px;
|
||||
background:url('images/datagrid_sort_asc.gif') no-repeat center center;
|
||||
}
|
||||
.datagrid-toolbar{
|
||||
height:28px;
|
||||
background:#efefef;
|
||||
padding:1px 2px;
|
||||
border-bottom:1px solid #ccc;
|
||||
}
|
||||
.datagrid-btn-separator{
|
||||
float:left;
|
||||
height:24px;
|
||||
border-left:1px solid #ccc;
|
||||
border-right:1px solid #fff;
|
||||
margin:2px 1px;
|
||||
}
|
||||
.datagrid-pager{
|
||||
background:#efefef;
|
||||
border-top:1px solid #ccc;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.datagrid-header{
|
||||
overflow:hidden;
|
||||
background:#fafafa url('images/datagrid_header_bg.gif') repeat-x left bottom;
|
||||
border-bottom:1px solid #ccc;
|
||||
cursor:default;
|
||||
}
|
||||
.datagrid-header-inner{
|
||||
float:left;
|
||||
width:10000px;
|
||||
}
|
||||
.datagrid-header td{
|
||||
border-right:1px dotted #ccc;
|
||||
font-size:12px;
|
||||
font-weight:normal;
|
||||
background:#fafafa url('images/datagrid_header_bg.gif') repeat-x left bottom;
|
||||
border-bottom:1px dotted #ccc;
|
||||
border-top:1px dotted #fff;
|
||||
}
|
||||
.datagrid-header td.datagrid-header-over{
|
||||
background:#EBF3FD;
|
||||
}
|
||||
.datagrid-header .datagrid-cell{
|
||||
margin:0;
|
||||
padding:3px 4px;
|
||||
white-space:nowrap;
|
||||
word-wrap:normal;
|
||||
overflow:hidden;
|
||||
text-align:center;
|
||||
}
|
||||
.datagrid-header .datagrid-cell-group{
|
||||
margin:0;
|
||||
padding:4px 2px 4px 4px;
|
||||
white-space:nowrap;
|
||||
word-wrap:normal;
|
||||
overflow:hidden;
|
||||
text-align:center;
|
||||
}
|
||||
.datagrid-header-rownumber{
|
||||
width:25px;
|
||||
text-align:center;
|
||||
margin:0px;
|
||||
padding:3px 0px;
|
||||
}
|
||||
.datagrid-td-rownumber{
|
||||
background:#fafafa url('images/datagrid_header_bg.gif') repeat-x left bottom;
|
||||
}
|
||||
.datagrid-cell-rownumber{
|
||||
width:25px;
|
||||
text-align:center;
|
||||
margin:0px;
|
||||
padding:3px 0px;
|
||||
color:#000;
|
||||
}
|
||||
.datagrid-body{
|
||||
margin:0;
|
||||
padding:0;
|
||||
overflow:auto;
|
||||
zoom:1;
|
||||
}
|
||||
.datagrid-view1 .datagrid-body-inner{
|
||||
padding-bottom:20px;
|
||||
}
|
||||
.datagrid-view1 .datagrid-body{
|
||||
overflow:hidden;
|
||||
}
|
||||
.datagrid-footer{
|
||||
overflow:hidden;
|
||||
}
|
||||
.datagrid-footer-inner{
|
||||
border-top:1px solid #ccc;
|
||||
width:10000px;
|
||||
float:left;
|
||||
}
|
||||
.datagrid-body td,.datagrid-footer td{
|
||||
font-size:12px;
|
||||
border-right:1px dotted #ccc;
|
||||
border-bottom:1px dotted #ccc;
|
||||
overflow:hidden;
|
||||
padding:0;
|
||||
margin:0;
|
||||
}
|
||||
.datagrid-body .datagrid-cell,.datagrid-footer .datagrid-cell{
|
||||
overflow:hidden;
|
||||
margin:0;
|
||||
padding:3px 4px;
|
||||
white-space:nowrap;
|
||||
word-wrap:normal;
|
||||
}
|
||||
.datagrid-header-check{
|
||||
padding:3px 6px;
|
||||
}
|
||||
.datagrid-cell-check{
|
||||
padding:3px 6px;
|
||||
font-size:1px;
|
||||
overflow:hidden;
|
||||
}
|
||||
.datagrid-header-check input{
|
||||
margin:0;
|
||||
padding:0;
|
||||
width:15px;
|
||||
height:15px;
|
||||
}
|
||||
.datagrid-cell-check input{
|
||||
margin:0;
|
||||
padding:0;
|
||||
width:15px;
|
||||
height:15px;
|
||||
}
|
||||
.datagrid-row-collapse{
|
||||
background:url('images/datagrid_row_collapse.gif') no-repeat center center;
|
||||
}
|
||||
.datagrid-row-expand{
|
||||
background:url('images/datagrid_row_expand.gif') no-repeat center center;
|
||||
}
|
||||
.datagrid-row-alt{
|
||||
background:#EEEEFF;
|
||||
}
|
||||
.datagrid-row-over{
|
||||
background:#D0E5F5;
|
||||
cursor:default;
|
||||
}
|
||||
.datagrid-row-selected{
|
||||
background:#FBEC88;
|
||||
}
|
||||
.datagrid-resize-proxy{
|
||||
position:absolute;
|
||||
width:1px;
|
||||
top:0;
|
||||
height:10000px;
|
||||
background:red;
|
||||
cursor:e-resize;
|
||||
display:none;
|
||||
}
|
||||
.datagrid-body .datagrid-editable{
|
||||
padding:0;
|
||||
}
|
||||
.datagrid-body .datagrid-editable table{
|
||||
width:100%;
|
||||
height:100%;
|
||||
}
|
||||
.datagrid-body .datagrid-editable td{
|
||||
border:0;
|
||||
padding:0;
|
||||
}
|
||||
.datagrid-body .datagrid-editable .datagrid-editable-input{
|
||||
width:100%;
|
||||
font-size:12px;
|
||||
border:1px solid #A4BED4;
|
||||
padding:3px 2px;
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
.datebox .combo-arrow{
|
||||
background:url('images/datebox_arrow.png') no-repeat center center;
|
||||
}
|
||||
.datebox-calendar-inner{
|
||||
height:180px;
|
||||
}
|
||||
.datebox-button{
|
||||
height:18px;
|
||||
padding:2px 5px;
|
||||
font-size:12px;
|
||||
background-color:#fafafa;
|
||||
text-align:center;
|
||||
}
|
||||
.datebox-current,.datebox-close{
|
||||
float:left;
|
||||
color:#888;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
}
|
||||
.datebox-close{
|
||||
float:right;
|
||||
}
|
||||
.datebox-ok{
|
||||
color:#888;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
}
|
||||
.datebox-button-hover{
|
||||
color:#A4BED4;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
.dialog-content{
|
||||
overflow:auto;
|
||||
}
|
||||
.dialog-toolbar{
|
||||
background:#fafafa;
|
||||
padding:2px 5px;
|
||||
border-bottom:1px solid #eee;
|
||||
}
|
||||
.dialog-tool-separator{
|
||||
float:left;
|
||||
height:24px;
|
||||
border-left:1px solid #ccc;
|
||||
border-right:1px solid #fff;
|
||||
margin:2px 1px;
|
||||
}
|
||||
.dialog-button{
|
||||
border-top:1px solid #eee;
|
||||
background:#fafafa;
|
||||
padding:5px 5px;
|
||||
text-align:right;
|
||||
}
|
||||
.dialog-button .l-btn{
|
||||
margin-left:5px;
|
||||
}
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 43 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 144 B |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 64 B |
|
After Width: | Height: | Size: 75 B |
|
After Width: | Height: | Size: 66 B |
|
After Width: | Height: | Size: 76 B |
|
After Width: | Height: | Size: 82 B |
|
After Width: | Height: | Size: 97 B |
|
After Width: | Height: | Size: 80 B |
|
After Width: | Height: | Size: 91 B |
|
After Width: | Height: | Size: 830 B |
|
After Width: | Height: | Size: 833 B |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 626 B |
@@ -0,0 +1,416 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Page not found</title>
|
||||
<style>
|
||||
html {font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}
|
||||
body {margin:0}
|
||||
article,
|
||||
aside,
|
||||
details,
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
main,
|
||||
nav,
|
||||
section,
|
||||
summary {display:block}
|
||||
audio,
|
||||
canvas,
|
||||
progress,
|
||||
video {display:inline-block;vertical-align:baseline}
|
||||
audio:not([controls]) {display:none;height:0}
|
||||
[hidden],
|
||||
template {display:none}
|
||||
a {background:transparent}
|
||||
a:active,
|
||||
a:hover {outline:0}
|
||||
abbr[title] {border-bottom:1px dotted}
|
||||
b,
|
||||
strong {font-weight:bold}
|
||||
dfn {font-style:italic}
|
||||
h1 {font-size:2em;margin:0.67em 0}
|
||||
mark {background:#ff0;color:#000}
|
||||
small {font-size:80%}
|
||||
sub,
|
||||
sup {font-size:75%;line-height:0;position:relative;vertical-align:baseline}
|
||||
sup {top:-0.5em}
|
||||
sub {bottom:-0.25em}
|
||||
img {border:0}
|
||||
svg:not(:root) {overflow:hidden}
|
||||
figure {margin:1em 40px}
|
||||
hr {-moz-box-sizing:content-box;box-sizing:content-box;height:0}
|
||||
pre {overflow:auto}
|
||||
code,
|
||||
kbd,
|
||||
pre,
|
||||
samp {font-family:monospace,monospace;font-size:1em}
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {color:inherit;font:inherit;margin:0}
|
||||
button {overflow:visible}
|
||||
button,
|
||||
select {text-transform:none}
|
||||
button,
|
||||
html input[type="button"],
|
||||
input[type="reset"],
|
||||
input[type="submit"] {-webkit-appearance:button;cursor:pointer}
|
||||
button[disabled],
|
||||
html input[disabled] {cursor:default}
|
||||
button::-moz-focus-inner,
|
||||
input::-moz-focus-inner {border:0;padding:0}
|
||||
input {line-height:normal}
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {box-sizing:border-box;padding:0}
|
||||
input[type="number"]::-webkit-inner-spin-button,
|
||||
input[type="number"]::-webkit-outer-spin-button {height:auto}
|
||||
input[type="search"] {-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}
|
||||
input[type="search"]::-webkit-search-cancel-button,
|
||||
input[type="search"]::-webkit-search-decoration {-webkit-appearance:none}
|
||||
fieldset {border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}
|
||||
legend {border:0;padding:0}
|
||||
textarea {overflow:auto}
|
||||
optgroup {font-weight:bold}
|
||||
table {border-collapse:collapse;border-spacing:0;table-layout:auto;word-wrap:break-word;word-break:break-all}
|
||||
td,
|
||||
th {padding:0}
|
||||
*,
|
||||
*:before,
|
||||
*:after {-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
|
||||
html {font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}
|
||||
body {font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:14px;line-height:1.42857143;color:#333;background-color:#f9f9f9}
|
||||
input,
|
||||
button,
|
||||
select,
|
||||
textarea {font-family:inherit;font-size:inherit;line-height:inherit}
|
||||
button,
|
||||
input,
|
||||
select[multiple],
|
||||
textarea {background-image:none}
|
||||
a {color:#0181b9;text-decoration:none}
|
||||
a:hover,
|
||||
a:focus {color:#001721;text-decoration:underline}
|
||||
a:focus {outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}
|
||||
img {vertical-align:middle}
|
||||
.img-responsive {display:block;max-width:100%;height:auto}
|
||||
.img-rounded {-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}
|
||||
.img-circle {border-radius:50%}
|
||||
hr {margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}
|
||||
.sr-only {position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0 0 0 0);border:0}
|
||||
@media print {* {text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important }a,a:visited {text-decoration:underline }a[href]:after {content:" (" attr(href) ")" }abbr[title]:after {content:" (" attr(title) ")" }a[href^="javascript:"]:after,a[href^="#"]:after {content:"" }pre,blockquote {border:1px solid #999;page-break-inside:avoid }thead {display:table-header-group }tr,img {page-break-inside:avoid }img {max-width:100% !important }p,h2,h3 {orphans:3;widows:3 }h2,h3 {page-break-after:avoid }select {background:#fff !important }.navbar {display:none }.table td,.table th {background-color:#fff !important }.btn >.caret,.dropup >.btn >.caret {border-top-color:#000 !important }.label {border:1px solid #000 }.table {border-collapse:collapse !important }.table-bordered th,.table-bordered td {border:1px solid #ddd !important }}
|
||||
.container {margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}
|
||||
@media (min-width:768px) {.container {width:750px }}
|
||||
@media (min-width:992px) {.container {width:970px }}
|
||||
@media (min-width:1200px) {.container {width:1170px }}
|
||||
.container-fluid {margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}
|
||||
.row {margin-left:-15px;margin-right:-15px}
|
||||
.row-flush {margin-left:0;margin-right:0}
|
||||
.row-flush [class*="col-"] {padding-left:0 !important;padding-right:0 !important}
|
||||
.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12 {position:relative;min-height:1px;padding-left:15px;padding-right:15px}
|
||||
.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12 {float:left}
|
||||
.col-xs-12 {width:100%}
|
||||
.col-xs-11 {width:91.66666667%}
|
||||
.col-xs-10 {width:83.33333333%}
|
||||
.col-xs-9 {width:75%}
|
||||
.col-xs-8 {width:66.66666667%}
|
||||
.col-xs-7 {width:58.33333333%}
|
||||
.col-xs-6 {width:50%}
|
||||
.col-xs-5 {width:41.66666667%}
|
||||
.col-xs-4 {width:33.33333333%}
|
||||
.col-xs-3 {width:25%}
|
||||
.col-xs-2 {width:16.66666667%}
|
||||
.col-xs-1 {width:8.33333333%}
|
||||
.col-xs-pull-12 {right:100%}
|
||||
.col-xs-pull-11 {right:91.66666667%}
|
||||
.col-xs-pull-10 {right:83.33333333%}
|
||||
.col-xs-pull-9 {right:75%}
|
||||
.col-xs-pull-8 {right:66.66666667%}
|
||||
.col-xs-pull-7 {right:58.33333333%}
|
||||
.col-xs-pull-6 {right:50%}
|
||||
.col-xs-pull-5 {right:41.66666667%}
|
||||
.col-xs-pull-4 {right:33.33333333%}
|
||||
.col-xs-pull-3 {right:25%}
|
||||
.col-xs-pull-2 {right:16.66666667%}
|
||||
.col-xs-pull-1 {right:8.33333333%}
|
||||
.col-xs-pull-0 {right:0%}
|
||||
.col-xs-push-12 {left:100%}
|
||||
.col-xs-push-11 {left:91.66666667%}
|
||||
.col-xs-push-10 {left:83.33333333%}
|
||||
.col-xs-push-9 {left:75%}
|
||||
.col-xs-push-8 {left:66.66666667%}
|
||||
.col-xs-push-7 {left:58.33333333%}
|
||||
.col-xs-push-6 {left:50%}
|
||||
.col-xs-push-5 {left:41.66666667%}
|
||||
.col-xs-push-4 {left:33.33333333%}
|
||||
.col-xs-push-3 {left:25%}
|
||||
.col-xs-push-2 {left:16.66666667%}
|
||||
.col-xs-push-1 {left:8.33333333%}
|
||||
.col-xs-push-0 {left:0%}
|
||||
.col-xs-offset-12 {margin-left:100%}
|
||||
.col-xs-offset-11 {margin-left:91.66666667%}
|
||||
.col-xs-offset-10 {margin-left:83.33333333%}
|
||||
.col-xs-offset-9 {margin-left:75%}
|
||||
.col-xs-offset-8 {margin-left:66.66666667%}
|
||||
.col-xs-offset-7 {margin-left:58.33333333%}
|
||||
.col-xs-offset-6 {margin-left:50%}
|
||||
.col-xs-offset-5 {margin-left:41.66666667%}
|
||||
.col-xs-offset-4 {margin-left:33.33333333%}
|
||||
.col-xs-offset-3 {margin-left:25%}
|
||||
.col-xs-offset-2 {margin-left:16.66666667%}
|
||||
.col-xs-offset-1 {margin-left:8.33333333%}
|
||||
.col-xs-offset-0 {margin-left:0%}
|
||||
@media (min-width:768px) {.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12 {float:left }.col-sm-12 {width:100% }.col-sm-11 {width:91.66666667% }.col-sm-10 {width:83.33333333% }.col-sm-9 {width:75% }.col-sm-8 {width:66.66666667% }.col-sm-7 {width:58.33333333% }.col-sm-6 {width:50% }.col-sm-5 {width:41.66666667% }.col-sm-4 {width:33.33333333% }.col-sm-3 {width:25% }.col-sm-2 {width:16.66666667% }.col-sm-1 {width:8.33333333% }.col-sm-pull-12 {right:100% }.col-sm-pull-11 {right:91.66666667% }.col-sm-pull-10 {right:83.33333333% }.col-sm-pull-9 {right:75% }.col-sm-pull-8 {right:66.66666667% }.col-sm-pull-7 {right:58.33333333% }.col-sm-pull-6 {right:50% }.col-sm-pull-5 {right:41.66666667% }.col-sm-pull-4 {right:33.33333333% }.col-sm-pull-3 {right:25% }.col-sm-pull-2 {right:16.66666667% }.col-sm-pull-1 {right:8.33333333% }.col-sm-pull-0 {right:0% }.col-sm-push-12 {left:100% }.col-sm-push-11 {left:91.66666667% }.col-sm-push-10 {left:83.33333333% }.col-sm-push-9 {left:75% }.col-sm-push-8 {left:66.66666667% }.col-sm-push-7 {left:58.33333333% }.col-sm-push-6 {left:50% }.col-sm-push-5 {left:41.66666667% }.col-sm-push-4 {left:33.33333333% }.col-sm-push-3 {left:25% }.col-sm-push-2 {left:16.66666667% }.col-sm-push-1 {left:8.33333333% }.col-sm-push-0 {left:0% }.col-sm-offset-12 {margin-left:100% }.col-sm-offset-11 {margin-left:91.66666667% }.col-sm-offset-10 {margin-left:83.33333333% }.col-sm-offset-9 {margin-left:75% }.col-sm-offset-8 {margin-left:66.66666667% }.col-sm-offset-7 {margin-left:58.33333333% }.col-sm-offset-6 {margin-left:50% }.col-sm-offset-5 {margin-left:41.66666667% }.col-sm-offset-4 {margin-left:33.33333333% }.col-sm-offset-3 {margin-left:25% }.col-sm-offset-2 {margin-left:16.66666667% }.col-sm-offset-1 {margin-left:8.33333333% }.col-sm-offset-0 {margin-left:0% }}
|
||||
@media (min-width:992px) {.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12 {float:left }.col-md-12 {width:100% }.col-md-11 {width:91.66666667% }.col-md-10 {width:83.33333333% }.col-md-9 {width:75% }.col-md-8 {width:66.66666667% }.col-md-7 {width:58.33333333% }.col-md-6 {width:50% }.col-md-5 {width:41.66666667% }.col-md-4 {width:33.33333333% }.col-md-3 {width:25% }.col-md-2 {width:16.66666667% }.col-md-1 {width:8.33333333% }.col-md-pull-12 {right:100% }.col-md-pull-11 {right:91.66666667% }.col-md-pull-10 {right:83.33333333% }.col-md-pull-9 {right:75% }.col-md-pull-8 {right:66.66666667% }.col-md-pull-7 {right:58.33333333% }.col-md-pull-6 {right:50% }.col-md-pull-5 {right:41.66666667% }.col-md-pull-4 {right:33.33333333% }.col-md-pull-3 {right:25% }.col-md-pull-2 {right:16.66666667% }.col-md-pull-1 {right:8.33333333% }.col-md-pull-0 {right:0% }.col-md-push-12 {left:100% }.col-md-push-11 {left:91.66666667% }.col-md-push-10 {left:83.33333333% }.col-md-push-9 {left:75% }.col-md-push-8 {left:66.66666667% }.col-md-push-7 {left:58.33333333% }.col-md-push-6 {left:50% }.col-md-push-5 {left:41.66666667% }.col-md-push-4 {left:33.33333333% }.col-md-push-3 {left:25% }.col-md-push-2 {left:16.66666667% }.col-md-push-1 {left:8.33333333% }.col-md-push-0 {left:0% }.col-md-offset-12 {margin-left:100% }.col-md-offset-11 {margin-left:91.66666667% }.col-md-offset-10 {margin-left:83.33333333% }.col-md-offset-9 {margin-left:75% }.col-md-offset-8 {margin-left:66.66666667% }.col-md-offset-7 {margin-left:58.33333333% }.col-md-offset-6 {margin-left:50% }.col-md-offset-5 {margin-left:41.66666667% }.col-md-offset-4 {margin-left:33.33333333% }.col-md-offset-3 {margin-left:25% }.col-md-offset-2 {margin-left:16.66666667% }.col-md-offset-1 {margin-left:8.33333333% }.col-md-offset-0 {margin-left:0% }}
|
||||
@media (min-width:1200px) {.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12 {float:left }.col-lg-12 {width:100% }.col-lg-11 {width:91.66666667% }.col-lg-10 {width:83.33333333% }.col-lg-9 {width:75% }.col-lg-8 {width:66.66666667% }.col-lg-7 {width:58.33333333% }.col-lg-6 {width:50% }.col-lg-5 {width:41.66666667% }.col-lg-4 {width:33.33333333% }.col-lg-3 {width:25% }.col-lg-2 {width:16.66666667% }.col-lg-1 {width:8.33333333% }.col-lg-pull-12 {right:100% }.col-lg-pull-11 {right:91.66666667% }.col-lg-pull-10 {right:83.33333333% }.col-lg-pull-9 {right:75% }.col-lg-pull-8 {right:66.66666667% }.col-lg-pull-7 {right:58.33333333% }.col-lg-pull-6 {right:50% }.col-lg-pull-5 {right:41.66666667% }.col-lg-pull-4 {right:33.33333333% }.col-lg-pull-3 {right:25% }.col-lg-pull-2 {right:16.66666667% }.col-lg-pull-1 {right:8.33333333% }.col-lg-pull-0 {right:0% }.col-lg-push-12 {left:100% }.col-lg-push-11 {left:91.66666667% }.col-lg-push-10 {left:83.33333333% }.col-lg-push-9 {left:75% }.col-lg-push-8 {left:66.66666667% }.col-lg-push-7 {left:58.33333333% }.col-lg-push-6 {left:50% }.col-lg-push-5 {left:41.66666667% }.col-lg-push-4 {left:33.33333333% }.col-lg-push-3 {left:25% }.col-lg-push-2 {left:16.66666667% }.col-lg-push-1 {left:8.33333333% }.col-lg-push-0 {left:0% }.col-lg-offset-12 {margin-left:100% }.col-lg-offset-11 {margin-left:91.66666667% }.col-lg-offset-10 {margin-left:83.33333333% }.col-lg-offset-9 {margin-left:75% }.col-lg-offset-8 {margin-left:66.66666667% }.col-lg-offset-7 {margin-left:58.33333333% }.col-lg-offset-6 {margin-left:50% }.col-lg-offset-5 {margin-left:41.66666667% }.col-lg-offset-4 {margin-left:33.33333333% }.col-lg-offset-3 {margin-left:25% }.col-lg-offset-2 {margin-left:16.66666667% }.col-lg-offset-1 {margin-left:8.33333333% }.col-lg-offset-0 {margin-left:0% }}
|
||||
.clearfix:before,
|
||||
.clearfix:after,
|
||||
.container:before,
|
||||
.container:after,
|
||||
.container-fluid:before,
|
||||
.container-fluid:after,
|
||||
.row:before,
|
||||
.row:after {content:" ";display:table}
|
||||
.clearfix:after,
|
||||
.container:after,
|
||||
.container-fluid:after,
|
||||
.row:after {clear:both}
|
||||
.center-block {display:block;margin-left:auto;margin-right:auto}
|
||||
.pull-right {float:right !important}
|
||||
.pull-left {float:left !important}
|
||||
.hide {display:none !important}
|
||||
.show {display:block !important}
|
||||
.invisible {visibility:hidden}
|
||||
.text-hide {font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}
|
||||
.hidden {display:none !important;visibility:hidden !important}
|
||||
.affix {position:fixed}
|
||||
@-ms-viewport {width:device-width}
|
||||
.visible-xs,
|
||||
.visible-sm,
|
||||
.visible-md,
|
||||
.visible-lg {display:none !important}
|
||||
@media (max-width:767px) {.visible-xs {display:block !important }table.visible-xs {display:table }tr.visible-xs {display:table-row !important }th.visible-xs,td.visible-xs {display:table-cell !important }}
|
||||
@media (min-width:768px) and (max-width:991px) {.visible-sm {display:block !important }table.visible-sm {display:table }tr.visible-sm {display:table-row !important }th.visible-sm,td.visible-sm {display:table-cell !important }}
|
||||
@media (min-width:992px) and (max-width:1199px) {.visible-md {display:block !important }table.visible-md {display:table }tr.visible-md {display:table-row !important }th.visible-md,td.visible-md {display:table-cell !important }}
|
||||
@media (min-width:1200px) {.visible-lg {display:block !important }table.visible-lg {display:table }tr.visible-lg {display:table-row !important }th.visible-lg,td.visible-lg {display:table-cell !important }}
|
||||
@media (max-width:767px) {.hidden-xs {display:none !important }}
|
||||
@media (min-width:768px) and (max-width:991px) {.hidden-sm {display:none !important }}
|
||||
@media (min-width:992px) and (max-width:1199px) {.hidden-md {display:none !important }}
|
||||
@media (min-width:1200px) {.hidden-lg {display:none !important }}
|
||||
.visible-print {display:none !important}
|
||||
@media print {.visible-print {display:block !important }table.visible-print {display:table }tr.visible-print {display:table-row !important }th.visible-print,td.visible-print {display:table-cell !important }}
|
||||
@media print {.hidden-print {display:none !important }}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
.h1,
|
||||
.h2,
|
||||
.h3,
|
||||
.h4,
|
||||
.h5,
|
||||
.h6 {font-family:inherit;font-weight:400;line-height:1.1;color:inherit}
|
||||
h1 small,
|
||||
h2 small,
|
||||
h3 small,
|
||||
h4 small,
|
||||
h5 small,
|
||||
h6 small,
|
||||
.h1 small,
|
||||
.h2 small,
|
||||
.h3 small,
|
||||
.h4 small,
|
||||
.h5 small,
|
||||
.h6 small,
|
||||
h1 .small,
|
||||
h2 .small,
|
||||
h3 .small,
|
||||
h4 .small,
|
||||
h5 .small,
|
||||
h6 .small,
|
||||
.h1 .small,
|
||||
.h2 .small,
|
||||
.h3 .small,
|
||||
.h4 .small,
|
||||
.h5 .small,
|
||||
.h6 .small {font-weight:normal;line-height:1;color:#999}
|
||||
h1,
|
||||
.h1,
|
||||
h2,
|
||||
.h2,
|
||||
h3,
|
||||
.h3 {margin-top:20px;margin-bottom:10px}
|
||||
h1 small,
|
||||
.h1 small,
|
||||
h2 small,
|
||||
.h2 small,
|
||||
h3 small,
|
||||
.h3 small,
|
||||
h1 .small,
|
||||
.h1 .small,
|
||||
h2 .small,
|
||||
.h2 .small,
|
||||
h3 .small,
|
||||
.h3 .small {font-size:65%}
|
||||
h4,
|
||||
.h4,
|
||||
h5,
|
||||
.h5,
|
||||
h6,
|
||||
.h6 {margin-top:10px;margin-bottom:10px}
|
||||
h4 small,
|
||||
.h4 small,
|
||||
h5 small,
|
||||
.h5 small,
|
||||
h6 small,
|
||||
.h6 small,
|
||||
h4 .small,
|
||||
.h4 .small,
|
||||
h5 .small,
|
||||
.h5 .small,
|
||||
h6 .small,
|
||||
.h6 .small {font-size:75%}
|
||||
h1,
|
||||
.h1 {font-size:36px}
|
||||
h2,
|
||||
.h2 {font-size:30px}
|
||||
h3,
|
||||
.h3 {font-size:24px}
|
||||
h4,
|
||||
.h4 {font-size:18px}
|
||||
h5,
|
||||
.h5 {font-size:14px}
|
||||
h6,
|
||||
.h6 {font-size:12px}
|
||||
p {margin:0 0 10px}
|
||||
.lead {margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}
|
||||
@media (min-width:768px) {.lead {font-size:21px }}
|
||||
small,
|
||||
.small {font-size:85%}
|
||||
cite {font-style:normal}
|
||||
.text-left {text-align:left}
|
||||
.text-right {text-align:right}
|
||||
.text-center {text-align:center}
|
||||
.text-justify {text-align:justify}
|
||||
.text-muted {color:#999}
|
||||
.text-primary {color:#34495e}
|
||||
a.text-primary:hover {color:#222f3d}
|
||||
.text-success {color:#3c763d}
|
||||
a.text-success:hover {color:#2b542c}
|
||||
.text-info {color:#31708f}
|
||||
a.text-info:hover {color:#245269}
|
||||
.text-warning {color:#8a6d3b}
|
||||
a.text-warning:hover {color:#66512c}
|
||||
.text-danger {color:#a94442}
|
||||
a.text-danger:hover {color:#843534}
|
||||
.bg-primary {color:#fff;background-color:#34495e}
|
||||
a.bg-primary:hover {background-color:#222f3d}
|
||||
.bg-success {background-color:#dff0d8}
|
||||
a.bg-success:hover {background-color:#c1e2b3}
|
||||
.bg-info {background-color:#d9edf7}
|
||||
a.bg-info:hover {background-color:#afd9ee}
|
||||
.bg-warning {background-color:#fcf8e3}
|
||||
a.bg-warning:hover {background-color:#f7ecb5}
|
||||
.bg-danger {background-color:#f2dede}
|
||||
a.bg-danger:hover {background-color:#e4b9b9}
|
||||
.page-header {padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}
|
||||
ul,
|
||||
ol {margin-top:0;margin-bottom:10px}
|
||||
ul ul,
|
||||
ol ul,
|
||||
ul ol,
|
||||
ol ol {margin-bottom:0}
|
||||
.list-unstyled {padding-left:0;list-style:none}
|
||||
.list-inline {padding-left:0;list-style:none;margin-left:-5px}
|
||||
.list-inline >li {display:inline-block;padding-left:5px;padding-right:5px}
|
||||
dl {margin-top:0;margin-bottom:20px}
|
||||
dt,
|
||||
dd {line-height:1.42857143}
|
||||
dt {font-weight:bold}
|
||||
dd {margin-left:0}
|
||||
@media (min-width:768px) {.dl-horizontal dt {float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap }.dl-horizontal dd {margin-left:180px }}
|
||||
abbr[title],
|
||||
abbr[data-original-title] {cursor:help;border-bottom:1px dotted #999}
|
||||
.initialism {font-size:90%;text-transform:uppercase}
|
||||
blockquote {padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}
|
||||
blockquote p:last-child,
|
||||
blockquote ul:last-child,
|
||||
blockquote ol:last-child {margin-bottom:0}
|
||||
blockquote footer,
|
||||
blockquote small,
|
||||
blockquote .small {display:block;font-size:80%;line-height:1.42857143;color:#999}
|
||||
blockquote footer:before,
|
||||
blockquote small:before,
|
||||
blockquote .small:before {content:'\2014 \00A0'}
|
||||
.blockquote-reverse,
|
||||
blockquote.pull-right {padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}
|
||||
.blockquote-reverse footer:before,
|
||||
blockquote.pull-right footer:before,
|
||||
.blockquote-reverse small:before,
|
||||
blockquote.pull-right small:before,
|
||||
.blockquote-reverse .small:before,
|
||||
blockquote.pull-right .small:before {content:''}
|
||||
.blockquote-reverse footer:after,
|
||||
blockquote.pull-right footer:after,
|
||||
.blockquote-reverse small:after,
|
||||
blockquote.pull-right small:after,
|
||||
.blockquote-reverse .small:after,
|
||||
blockquote.pull-right .small:after {content:'\00A0 \2014'}
|
||||
blockquote:before,
|
||||
blockquote:after {content:""}
|
||||
address {margin-bottom:20px;font-style:normal;line-height:1.42857143}
|
||||
|
||||
.oc-icon-chain:before,
|
||||
.icon-chain:before,
|
||||
|
||||
.oc-icon-chain-broken:before,
|
||||
.icon-chain-broken:before {content:"\f127"}
|
||||
|
||||
.close {float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;font-family:sans-serif;opacity:0.2;filter:alpha(opacity=20)}
|
||||
.close:hover,
|
||||
.close:focus {color:#000;text-decoration:none;cursor:pointer;opacity:0.5;filter:alpha(opacity=50)}
|
||||
button.close {padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}
|
||||
@font-face {font-family:'FontAwesome';src:url('../library/font-awesome-4.7.0/fonts/fontawesome-webfont.eot?v=1.0.1');src:url('../library/font-awesome-4.7.0/fonts/fontawesome-webfont.eot?#iefix&v=1.0.1') format('embedded-opentype'),url('../library/font-awesome-4.7.0/fonts/fontawesome-webfont.woff?v=1.0.1') format('woff'),url('../ui/font/fontawesome-webfont.ttf?v=1.0.1') format('truetype'),url('../library/font-awesome-4.7.0/fonts/fontawesome-webfont.svg#fontawesomeregular?v=1.0.1') format('svg');font-weight:normal;font-style:normal}
|
||||
[class^="icon-"],
|
||||
[class*=" icon-"] {font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0% 0%;background-repeat:repeat;margin-top:0}
|
||||
[class^="icon-"]:before,
|
||||
[class*=" icon-"]:before {text-decoration:inherit;display:inline-block;speak:none}
|
||||
[class^="icon-"].pull-left,
|
||||
[class*=" icon-"].pull-left {margin-right:.3em}
|
||||
[class^="icon-"].pull-right,
|
||||
[class*=" icon-"].pull-right {margin-left:.3em}
|
||||
[class^="oc-icon-"]:before,
|
||||
[class*=" oc-icon-"]:before {display:inline-block;margin-right:8px;font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;vertical-align:baseline}
|
||||
[class^="oc-icon-"].empty:before,
|
||||
[class*=" oc-icon-"].empty:before {margin-right:0}
|
||||
.icon-lg {font-size:1.33333333em;line-height:0.75em;vertical-align:-15%}
|
||||
.icon-2x {font-size:2em}
|
||||
.icon-3x {font-size:3em}
|
||||
.icon-4x {font-size:4em}
|
||||
.icon-5x {font-size:5em}
|
||||
body {padding-top:20px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";background:#f3f3f3;color:#405261}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5 {font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";text-transform:uppercase}
|
||||
h1 {font-weight:300;font-size:50px;margin-bottom:15px}
|
||||
h1 i[class^="icon-"]:before {font-size:46px}
|
||||
i[class^="icon-"].warning {color:#c84530}
|
||||
h3 {font-size:24px;font-weight:300}
|
||||
p.lead {font-size:16px;font-weight:300}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1><i class="icon-chain-broken warning"></i> Page not found</h1>
|
||||
<p class="lead">The requested page cannot be found.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
After Width: | Height: | Size: 246 B |
|
After Width: | Height: | Size: 247 B |
|
After Width: | Height: | Size: 246 B |
|
After Width: | Height: | Size: 247 B |
|
After Width: | Height: | Size: 834 B |
|
After Width: | Height: | Size: 173 B |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 92 B |
|
After Width: | Height: | Size: 185 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 925 B |
|
After Width: | Height: | Size: 923 B |
|
After Width: | Height: | Size: 827 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 875 B |
|
After Width: | Height: | Size: 879 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 246 B |
|
After Width: | Height: | Size: 247 B |
|
After Width: | Height: | Size: 737 B |
|
After Width: | Height: | Size: 813 B |
|
After Width: | Height: | Size: 53 B |
|
After Width: | Height: | Size: 53 B |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 829 B |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 389 B |
|
After Width: | Height: | Size: 395 B |
|
After Width: | Height: | Size: 617 B |
|
After Width: | Height: | Size: 168 B |
|
After Width: | Height: | Size: 174 B |
|
After Width: | Height: | Size: 181 B |
|
After Width: | Height: | Size: 605 B |
|
After Width: | Height: | Size: 492 B |
|
After Width: | Height: | Size: 118 B |
|
After Width: | Height: | Size: 952 B |
|
After Width: | Height: | Size: 956 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 82 B |
|
After Width: | Height: | Size: 921 B |
@@ -0,0 +1,416 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Page not found</title>
|
||||
<style>
|
||||
html {font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}
|
||||
body {margin:0}
|
||||
article,
|
||||
aside,
|
||||
details,
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
main,
|
||||
nav,
|
||||
section,
|
||||
summary {display:block}
|
||||
audio,
|
||||
canvas,
|
||||
progress,
|
||||
video {display:inline-block;vertical-align:baseline}
|
||||
audio:not([controls]) {display:none;height:0}
|
||||
[hidden],
|
||||
template {display:none}
|
||||
a {background:transparent}
|
||||
a:active,
|
||||
a:hover {outline:0}
|
||||
abbr[title] {border-bottom:1px dotted}
|
||||
b,
|
||||
strong {font-weight:bold}
|
||||
dfn {font-style:italic}
|
||||
h1 {font-size:2em;margin:0.67em 0}
|
||||
mark {background:#ff0;color:#000}
|
||||
small {font-size:80%}
|
||||
sub,
|
||||
sup {font-size:75%;line-height:0;position:relative;vertical-align:baseline}
|
||||
sup {top:-0.5em}
|
||||
sub {bottom:-0.25em}
|
||||
img {border:0}
|
||||
svg:not(:root) {overflow:hidden}
|
||||
figure {margin:1em 40px}
|
||||
hr {-moz-box-sizing:content-box;box-sizing:content-box;height:0}
|
||||
pre {overflow:auto}
|
||||
code,
|
||||
kbd,
|
||||
pre,
|
||||
samp {font-family:monospace,monospace;font-size:1em}
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {color:inherit;font:inherit;margin:0}
|
||||
button {overflow:visible}
|
||||
button,
|
||||
select {text-transform:none}
|
||||
button,
|
||||
html input[type="button"],
|
||||
input[type="reset"],
|
||||
input[type="submit"] {-webkit-appearance:button;cursor:pointer}
|
||||
button[disabled],
|
||||
html input[disabled] {cursor:default}
|
||||
button::-moz-focus-inner,
|
||||
input::-moz-focus-inner {border:0;padding:0}
|
||||
input {line-height:normal}
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {box-sizing:border-box;padding:0}
|
||||
input[type="number"]::-webkit-inner-spin-button,
|
||||
input[type="number"]::-webkit-outer-spin-button {height:auto}
|
||||
input[type="search"] {-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}
|
||||
input[type="search"]::-webkit-search-cancel-button,
|
||||
input[type="search"]::-webkit-search-decoration {-webkit-appearance:none}
|
||||
fieldset {border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}
|
||||
legend {border:0;padding:0}
|
||||
textarea {overflow:auto}
|
||||
optgroup {font-weight:bold}
|
||||
table {border-collapse:collapse;border-spacing:0;table-layout:auto;word-wrap:break-word;word-break:break-all}
|
||||
td,
|
||||
th {padding:0}
|
||||
*,
|
||||
*:before,
|
||||
*:after {-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
|
||||
html {font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}
|
||||
body {font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:14px;line-height:1.42857143;color:#333;background-color:#f9f9f9}
|
||||
input,
|
||||
button,
|
||||
select,
|
||||
textarea {font-family:inherit;font-size:inherit;line-height:inherit}
|
||||
button,
|
||||
input,
|
||||
select[multiple],
|
||||
textarea {background-image:none}
|
||||
a {color:#0181b9;text-decoration:none}
|
||||
a:hover,
|
||||
a:focus {color:#001721;text-decoration:underline}
|
||||
a:focus {outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}
|
||||
img {vertical-align:middle}
|
||||
.img-responsive {display:block;max-width:100%;height:auto}
|
||||
.img-rounded {-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}
|
||||
.img-circle {border-radius:50%}
|
||||
hr {margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}
|
||||
.sr-only {position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0 0 0 0);border:0}
|
||||
@media print {* {text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important }a,a:visited {text-decoration:underline }a[href]:after {content:" (" attr(href) ")" }abbr[title]:after {content:" (" attr(title) ")" }a[href^="javascript:"]:after,a[href^="#"]:after {content:"" }pre,blockquote {border:1px solid #999;page-break-inside:avoid }thead {display:table-header-group }tr,img {page-break-inside:avoid }img {max-width:100% !important }p,h2,h3 {orphans:3;widows:3 }h2,h3 {page-break-after:avoid }select {background:#fff !important }.navbar {display:none }.table td,.table th {background-color:#fff !important }.btn >.caret,.dropup >.btn >.caret {border-top-color:#000 !important }.label {border:1px solid #000 }.table {border-collapse:collapse !important }.table-bordered th,.table-bordered td {border:1px solid #ddd !important }}
|
||||
.container {margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}
|
||||
@media (min-width:768px) {.container {width:750px }}
|
||||
@media (min-width:992px) {.container {width:970px }}
|
||||
@media (min-width:1200px) {.container {width:1170px }}
|
||||
.container-fluid {margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}
|
||||
.row {margin-left:-15px;margin-right:-15px}
|
||||
.row-flush {margin-left:0;margin-right:0}
|
||||
.row-flush [class*="col-"] {padding-left:0 !important;padding-right:0 !important}
|
||||
.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12 {position:relative;min-height:1px;padding-left:15px;padding-right:15px}
|
||||
.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12 {float:left}
|
||||
.col-xs-12 {width:100%}
|
||||
.col-xs-11 {width:91.66666667%}
|
||||
.col-xs-10 {width:83.33333333%}
|
||||
.col-xs-9 {width:75%}
|
||||
.col-xs-8 {width:66.66666667%}
|
||||
.col-xs-7 {width:58.33333333%}
|
||||
.col-xs-6 {width:50%}
|
||||
.col-xs-5 {width:41.66666667%}
|
||||
.col-xs-4 {width:33.33333333%}
|
||||
.col-xs-3 {width:25%}
|
||||
.col-xs-2 {width:16.66666667%}
|
||||
.col-xs-1 {width:8.33333333%}
|
||||
.col-xs-pull-12 {right:100%}
|
||||
.col-xs-pull-11 {right:91.66666667%}
|
||||
.col-xs-pull-10 {right:83.33333333%}
|
||||
.col-xs-pull-9 {right:75%}
|
||||
.col-xs-pull-8 {right:66.66666667%}
|
||||
.col-xs-pull-7 {right:58.33333333%}
|
||||
.col-xs-pull-6 {right:50%}
|
||||
.col-xs-pull-5 {right:41.66666667%}
|
||||
.col-xs-pull-4 {right:33.33333333%}
|
||||
.col-xs-pull-3 {right:25%}
|
||||
.col-xs-pull-2 {right:16.66666667%}
|
||||
.col-xs-pull-1 {right:8.33333333%}
|
||||
.col-xs-pull-0 {right:0%}
|
||||
.col-xs-push-12 {left:100%}
|
||||
.col-xs-push-11 {left:91.66666667%}
|
||||
.col-xs-push-10 {left:83.33333333%}
|
||||
.col-xs-push-9 {left:75%}
|
||||
.col-xs-push-8 {left:66.66666667%}
|
||||
.col-xs-push-7 {left:58.33333333%}
|
||||
.col-xs-push-6 {left:50%}
|
||||
.col-xs-push-5 {left:41.66666667%}
|
||||
.col-xs-push-4 {left:33.33333333%}
|
||||
.col-xs-push-3 {left:25%}
|
||||
.col-xs-push-2 {left:16.66666667%}
|
||||
.col-xs-push-1 {left:8.33333333%}
|
||||
.col-xs-push-0 {left:0%}
|
||||
.col-xs-offset-12 {margin-left:100%}
|
||||
.col-xs-offset-11 {margin-left:91.66666667%}
|
||||
.col-xs-offset-10 {margin-left:83.33333333%}
|
||||
.col-xs-offset-9 {margin-left:75%}
|
||||
.col-xs-offset-8 {margin-left:66.66666667%}
|
||||
.col-xs-offset-7 {margin-left:58.33333333%}
|
||||
.col-xs-offset-6 {margin-left:50%}
|
||||
.col-xs-offset-5 {margin-left:41.66666667%}
|
||||
.col-xs-offset-4 {margin-left:33.33333333%}
|
||||
.col-xs-offset-3 {margin-left:25%}
|
||||
.col-xs-offset-2 {margin-left:16.66666667%}
|
||||
.col-xs-offset-1 {margin-left:8.33333333%}
|
||||
.col-xs-offset-0 {margin-left:0%}
|
||||
@media (min-width:768px) {.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12 {float:left }.col-sm-12 {width:100% }.col-sm-11 {width:91.66666667% }.col-sm-10 {width:83.33333333% }.col-sm-9 {width:75% }.col-sm-8 {width:66.66666667% }.col-sm-7 {width:58.33333333% }.col-sm-6 {width:50% }.col-sm-5 {width:41.66666667% }.col-sm-4 {width:33.33333333% }.col-sm-3 {width:25% }.col-sm-2 {width:16.66666667% }.col-sm-1 {width:8.33333333% }.col-sm-pull-12 {right:100% }.col-sm-pull-11 {right:91.66666667% }.col-sm-pull-10 {right:83.33333333% }.col-sm-pull-9 {right:75% }.col-sm-pull-8 {right:66.66666667% }.col-sm-pull-7 {right:58.33333333% }.col-sm-pull-6 {right:50% }.col-sm-pull-5 {right:41.66666667% }.col-sm-pull-4 {right:33.33333333% }.col-sm-pull-3 {right:25% }.col-sm-pull-2 {right:16.66666667% }.col-sm-pull-1 {right:8.33333333% }.col-sm-pull-0 {right:0% }.col-sm-push-12 {left:100% }.col-sm-push-11 {left:91.66666667% }.col-sm-push-10 {left:83.33333333% }.col-sm-push-9 {left:75% }.col-sm-push-8 {left:66.66666667% }.col-sm-push-7 {left:58.33333333% }.col-sm-push-6 {left:50% }.col-sm-push-5 {left:41.66666667% }.col-sm-push-4 {left:33.33333333% }.col-sm-push-3 {left:25% }.col-sm-push-2 {left:16.66666667% }.col-sm-push-1 {left:8.33333333% }.col-sm-push-0 {left:0% }.col-sm-offset-12 {margin-left:100% }.col-sm-offset-11 {margin-left:91.66666667% }.col-sm-offset-10 {margin-left:83.33333333% }.col-sm-offset-9 {margin-left:75% }.col-sm-offset-8 {margin-left:66.66666667% }.col-sm-offset-7 {margin-left:58.33333333% }.col-sm-offset-6 {margin-left:50% }.col-sm-offset-5 {margin-left:41.66666667% }.col-sm-offset-4 {margin-left:33.33333333% }.col-sm-offset-3 {margin-left:25% }.col-sm-offset-2 {margin-left:16.66666667% }.col-sm-offset-1 {margin-left:8.33333333% }.col-sm-offset-0 {margin-left:0% }}
|
||||
@media (min-width:992px) {.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12 {float:left }.col-md-12 {width:100% }.col-md-11 {width:91.66666667% }.col-md-10 {width:83.33333333% }.col-md-9 {width:75% }.col-md-8 {width:66.66666667% }.col-md-7 {width:58.33333333% }.col-md-6 {width:50% }.col-md-5 {width:41.66666667% }.col-md-4 {width:33.33333333% }.col-md-3 {width:25% }.col-md-2 {width:16.66666667% }.col-md-1 {width:8.33333333% }.col-md-pull-12 {right:100% }.col-md-pull-11 {right:91.66666667% }.col-md-pull-10 {right:83.33333333% }.col-md-pull-9 {right:75% }.col-md-pull-8 {right:66.66666667% }.col-md-pull-7 {right:58.33333333% }.col-md-pull-6 {right:50% }.col-md-pull-5 {right:41.66666667% }.col-md-pull-4 {right:33.33333333% }.col-md-pull-3 {right:25% }.col-md-pull-2 {right:16.66666667% }.col-md-pull-1 {right:8.33333333% }.col-md-pull-0 {right:0% }.col-md-push-12 {left:100% }.col-md-push-11 {left:91.66666667% }.col-md-push-10 {left:83.33333333% }.col-md-push-9 {left:75% }.col-md-push-8 {left:66.66666667% }.col-md-push-7 {left:58.33333333% }.col-md-push-6 {left:50% }.col-md-push-5 {left:41.66666667% }.col-md-push-4 {left:33.33333333% }.col-md-push-3 {left:25% }.col-md-push-2 {left:16.66666667% }.col-md-push-1 {left:8.33333333% }.col-md-push-0 {left:0% }.col-md-offset-12 {margin-left:100% }.col-md-offset-11 {margin-left:91.66666667% }.col-md-offset-10 {margin-left:83.33333333% }.col-md-offset-9 {margin-left:75% }.col-md-offset-8 {margin-left:66.66666667% }.col-md-offset-7 {margin-left:58.33333333% }.col-md-offset-6 {margin-left:50% }.col-md-offset-5 {margin-left:41.66666667% }.col-md-offset-4 {margin-left:33.33333333% }.col-md-offset-3 {margin-left:25% }.col-md-offset-2 {margin-left:16.66666667% }.col-md-offset-1 {margin-left:8.33333333% }.col-md-offset-0 {margin-left:0% }}
|
||||
@media (min-width:1200px) {.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12 {float:left }.col-lg-12 {width:100% }.col-lg-11 {width:91.66666667% }.col-lg-10 {width:83.33333333% }.col-lg-9 {width:75% }.col-lg-8 {width:66.66666667% }.col-lg-7 {width:58.33333333% }.col-lg-6 {width:50% }.col-lg-5 {width:41.66666667% }.col-lg-4 {width:33.33333333% }.col-lg-3 {width:25% }.col-lg-2 {width:16.66666667% }.col-lg-1 {width:8.33333333% }.col-lg-pull-12 {right:100% }.col-lg-pull-11 {right:91.66666667% }.col-lg-pull-10 {right:83.33333333% }.col-lg-pull-9 {right:75% }.col-lg-pull-8 {right:66.66666667% }.col-lg-pull-7 {right:58.33333333% }.col-lg-pull-6 {right:50% }.col-lg-pull-5 {right:41.66666667% }.col-lg-pull-4 {right:33.33333333% }.col-lg-pull-3 {right:25% }.col-lg-pull-2 {right:16.66666667% }.col-lg-pull-1 {right:8.33333333% }.col-lg-pull-0 {right:0% }.col-lg-push-12 {left:100% }.col-lg-push-11 {left:91.66666667% }.col-lg-push-10 {left:83.33333333% }.col-lg-push-9 {left:75% }.col-lg-push-8 {left:66.66666667% }.col-lg-push-7 {left:58.33333333% }.col-lg-push-6 {left:50% }.col-lg-push-5 {left:41.66666667% }.col-lg-push-4 {left:33.33333333% }.col-lg-push-3 {left:25% }.col-lg-push-2 {left:16.66666667% }.col-lg-push-1 {left:8.33333333% }.col-lg-push-0 {left:0% }.col-lg-offset-12 {margin-left:100% }.col-lg-offset-11 {margin-left:91.66666667% }.col-lg-offset-10 {margin-left:83.33333333% }.col-lg-offset-9 {margin-left:75% }.col-lg-offset-8 {margin-left:66.66666667% }.col-lg-offset-7 {margin-left:58.33333333% }.col-lg-offset-6 {margin-left:50% }.col-lg-offset-5 {margin-left:41.66666667% }.col-lg-offset-4 {margin-left:33.33333333% }.col-lg-offset-3 {margin-left:25% }.col-lg-offset-2 {margin-left:16.66666667% }.col-lg-offset-1 {margin-left:8.33333333% }.col-lg-offset-0 {margin-left:0% }}
|
||||
.clearfix:before,
|
||||
.clearfix:after,
|
||||
.container:before,
|
||||
.container:after,
|
||||
.container-fluid:before,
|
||||
.container-fluid:after,
|
||||
.row:before,
|
||||
.row:after {content:" ";display:table}
|
||||
.clearfix:after,
|
||||
.container:after,
|
||||
.container-fluid:after,
|
||||
.row:after {clear:both}
|
||||
.center-block {display:block;margin-left:auto;margin-right:auto}
|
||||
.pull-right {float:right !important}
|
||||
.pull-left {float:left !important}
|
||||
.hide {display:none !important}
|
||||
.show {display:block !important}
|
||||
.invisible {visibility:hidden}
|
||||
.text-hide {font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}
|
||||
.hidden {display:none !important;visibility:hidden !important}
|
||||
.affix {position:fixed}
|
||||
@-ms-viewport {width:device-width}
|
||||
.visible-xs,
|
||||
.visible-sm,
|
||||
.visible-md,
|
||||
.visible-lg {display:none !important}
|
||||
@media (max-width:767px) {.visible-xs {display:block !important }table.visible-xs {display:table }tr.visible-xs {display:table-row !important }th.visible-xs,td.visible-xs {display:table-cell !important }}
|
||||
@media (min-width:768px) and (max-width:991px) {.visible-sm {display:block !important }table.visible-sm {display:table }tr.visible-sm {display:table-row !important }th.visible-sm,td.visible-sm {display:table-cell !important }}
|
||||
@media (min-width:992px) and (max-width:1199px) {.visible-md {display:block !important }table.visible-md {display:table }tr.visible-md {display:table-row !important }th.visible-md,td.visible-md {display:table-cell !important }}
|
||||
@media (min-width:1200px) {.visible-lg {display:block !important }table.visible-lg {display:table }tr.visible-lg {display:table-row !important }th.visible-lg,td.visible-lg {display:table-cell !important }}
|
||||
@media (max-width:767px) {.hidden-xs {display:none !important }}
|
||||
@media (min-width:768px) and (max-width:991px) {.hidden-sm {display:none !important }}
|
||||
@media (min-width:992px) and (max-width:1199px) {.hidden-md {display:none !important }}
|
||||
@media (min-width:1200px) {.hidden-lg {display:none !important }}
|
||||
.visible-print {display:none !important}
|
||||
@media print {.visible-print {display:block !important }table.visible-print {display:table }tr.visible-print {display:table-row !important }th.visible-print,td.visible-print {display:table-cell !important }}
|
||||
@media print {.hidden-print {display:none !important }}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
.h1,
|
||||
.h2,
|
||||
.h3,
|
||||
.h4,
|
||||
.h5,
|
||||
.h6 {font-family:inherit;font-weight:400;line-height:1.1;color:inherit}
|
||||
h1 small,
|
||||
h2 small,
|
||||
h3 small,
|
||||
h4 small,
|
||||
h5 small,
|
||||
h6 small,
|
||||
.h1 small,
|
||||
.h2 small,
|
||||
.h3 small,
|
||||
.h4 small,
|
||||
.h5 small,
|
||||
.h6 small,
|
||||
h1 .small,
|
||||
h2 .small,
|
||||
h3 .small,
|
||||
h4 .small,
|
||||
h5 .small,
|
||||
h6 .small,
|
||||
.h1 .small,
|
||||
.h2 .small,
|
||||
.h3 .small,
|
||||
.h4 .small,
|
||||
.h5 .small,
|
||||
.h6 .small {font-weight:normal;line-height:1;color:#999}
|
||||
h1,
|
||||
.h1,
|
||||
h2,
|
||||
.h2,
|
||||
h3,
|
||||
.h3 {margin-top:20px;margin-bottom:10px}
|
||||
h1 small,
|
||||
.h1 small,
|
||||
h2 small,
|
||||
.h2 small,
|
||||
h3 small,
|
||||
.h3 small,
|
||||
h1 .small,
|
||||
.h1 .small,
|
||||
h2 .small,
|
||||
.h2 .small,
|
||||
h3 .small,
|
||||
.h3 .small {font-size:65%}
|
||||
h4,
|
||||
.h4,
|
||||
h5,
|
||||
.h5,
|
||||
h6,
|
||||
.h6 {margin-top:10px;margin-bottom:10px}
|
||||
h4 small,
|
||||
.h4 small,
|
||||
h5 small,
|
||||
.h5 small,
|
||||
h6 small,
|
||||
.h6 small,
|
||||
h4 .small,
|
||||
.h4 .small,
|
||||
h5 .small,
|
||||
.h5 .small,
|
||||
h6 .small,
|
||||
.h6 .small {font-size:75%}
|
||||
h1,
|
||||
.h1 {font-size:36px}
|
||||
h2,
|
||||
.h2 {font-size:30px}
|
||||
h3,
|
||||
.h3 {font-size:24px}
|
||||
h4,
|
||||
.h4 {font-size:18px}
|
||||
h5,
|
||||
.h5 {font-size:14px}
|
||||
h6,
|
||||
.h6 {font-size:12px}
|
||||
p {margin:0 0 10px}
|
||||
.lead {margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}
|
||||
@media (min-width:768px) {.lead {font-size:21px }}
|
||||
small,
|
||||
.small {font-size:85%}
|
||||
cite {font-style:normal}
|
||||
.text-left {text-align:left}
|
||||
.text-right {text-align:right}
|
||||
.text-center {text-align:center}
|
||||
.text-justify {text-align:justify}
|
||||
.text-muted {color:#999}
|
||||
.text-primary {color:#34495e}
|
||||
a.text-primary:hover {color:#222f3d}
|
||||
.text-success {color:#3c763d}
|
||||
a.text-success:hover {color:#2b542c}
|
||||
.text-info {color:#31708f}
|
||||
a.text-info:hover {color:#245269}
|
||||
.text-warning {color:#8a6d3b}
|
||||
a.text-warning:hover {color:#66512c}
|
||||
.text-danger {color:#a94442}
|
||||
a.text-danger:hover {color:#843534}
|
||||
.bg-primary {color:#fff;background-color:#34495e}
|
||||
a.bg-primary:hover {background-color:#222f3d}
|
||||
.bg-success {background-color:#dff0d8}
|
||||
a.bg-success:hover {background-color:#c1e2b3}
|
||||
.bg-info {background-color:#d9edf7}
|
||||
a.bg-info:hover {background-color:#afd9ee}
|
||||
.bg-warning {background-color:#fcf8e3}
|
||||
a.bg-warning:hover {background-color:#f7ecb5}
|
||||
.bg-danger {background-color:#f2dede}
|
||||
a.bg-danger:hover {background-color:#e4b9b9}
|
||||
.page-header {padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}
|
||||
ul,
|
||||
ol {margin-top:0;margin-bottom:10px}
|
||||
ul ul,
|
||||
ol ul,
|
||||
ul ol,
|
||||
ol ol {margin-bottom:0}
|
||||
.list-unstyled {padding-left:0;list-style:none}
|
||||
.list-inline {padding-left:0;list-style:none;margin-left:-5px}
|
||||
.list-inline >li {display:inline-block;padding-left:5px;padding-right:5px}
|
||||
dl {margin-top:0;margin-bottom:20px}
|
||||
dt,
|
||||
dd {line-height:1.42857143}
|
||||
dt {font-weight:bold}
|
||||
dd {margin-left:0}
|
||||
@media (min-width:768px) {.dl-horizontal dt {float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap }.dl-horizontal dd {margin-left:180px }}
|
||||
abbr[title],
|
||||
abbr[data-original-title] {cursor:help;border-bottom:1px dotted #999}
|
||||
.initialism {font-size:90%;text-transform:uppercase}
|
||||
blockquote {padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}
|
||||
blockquote p:last-child,
|
||||
blockquote ul:last-child,
|
||||
blockquote ol:last-child {margin-bottom:0}
|
||||
blockquote footer,
|
||||
blockquote small,
|
||||
blockquote .small {display:block;font-size:80%;line-height:1.42857143;color:#999}
|
||||
blockquote footer:before,
|
||||
blockquote small:before,
|
||||
blockquote .small:before {content:'\2014 \00A0'}
|
||||
.blockquote-reverse,
|
||||
blockquote.pull-right {padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}
|
||||
.blockquote-reverse footer:before,
|
||||
blockquote.pull-right footer:before,
|
||||
.blockquote-reverse small:before,
|
||||
blockquote.pull-right small:before,
|
||||
.blockquote-reverse .small:before,
|
||||
blockquote.pull-right .small:before {content:''}
|
||||
.blockquote-reverse footer:after,
|
||||
blockquote.pull-right footer:after,
|
||||
.blockquote-reverse small:after,
|
||||
blockquote.pull-right small:after,
|
||||
.blockquote-reverse .small:after,
|
||||
blockquote.pull-right .small:after {content:'\00A0 \2014'}
|
||||
blockquote:before,
|
||||
blockquote:after {content:""}
|
||||
address {margin-bottom:20px;font-style:normal;line-height:1.42857143}
|
||||
|
||||
.oc-icon-chain:before,
|
||||
.icon-chain:before,
|
||||
|
||||
.oc-icon-chain-broken:before,
|
||||
.icon-chain-broken:before {content:"\f127"}
|
||||
|
||||
.close {float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;font-family:sans-serif;opacity:0.2;filter:alpha(opacity=20)}
|
||||
.close:hover,
|
||||
.close:focus {color:#000;text-decoration:none;cursor:pointer;opacity:0.5;filter:alpha(opacity=50)}
|
||||
button.close {padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}
|
||||
@font-face {font-family:'FontAwesome';src:url('../library/font-awesome-4.7.0/fonts/fontawesome-webfont.eot?v=1.0.1');src:url('../library/font-awesome-4.7.0/fonts/fontawesome-webfont.eot?#iefix&v=1.0.1') format('embedded-opentype'),url('../library/font-awesome-4.7.0/fonts/fontawesome-webfont.woff?v=1.0.1') format('woff'),url('../ui/font/fontawesome-webfont.ttf?v=1.0.1') format('truetype'),url('../library/font-awesome-4.7.0/fonts/fontawesome-webfont.svg#fontawesomeregular?v=1.0.1') format('svg');font-weight:normal;font-style:normal}
|
||||
[class^="icon-"],
|
||||
[class*=" icon-"] {font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0% 0%;background-repeat:repeat;margin-top:0}
|
||||
[class^="icon-"]:before,
|
||||
[class*=" icon-"]:before {text-decoration:inherit;display:inline-block;speak:none}
|
||||
[class^="icon-"].pull-left,
|
||||
[class*=" icon-"].pull-left {margin-right:.3em}
|
||||
[class^="icon-"].pull-right,
|
||||
[class*=" icon-"].pull-right {margin-left:.3em}
|
||||
[class^="oc-icon-"]:before,
|
||||
[class*=" oc-icon-"]:before {display:inline-block;margin-right:8px;font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;vertical-align:baseline}
|
||||
[class^="oc-icon-"].empty:before,
|
||||
[class*=" oc-icon-"].empty:before {margin-right:0}
|
||||
.icon-lg {font-size:1.33333333em;line-height:0.75em;vertical-align:-15%}
|
||||
.icon-2x {font-size:2em}
|
||||
.icon-3x {font-size:3em}
|
||||
.icon-4x {font-size:4em}
|
||||
.icon-5x {font-size:5em}
|
||||
body {padding-top:20px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";background:#f3f3f3;color:#405261}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5 {font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";text-transform:uppercase}
|
||||
h1 {font-weight:300;font-size:50px;margin-bottom:15px}
|
||||
h1 i[class^="icon-"]:before {font-size:46px}
|
||||
i[class^="icon-"].warning {color:#c84530}
|
||||
h3 {font-size:24px;font-weight:300}
|
||||
p.lead {font-size:16px;font-weight:300}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1><i class="icon-chain-broken warning"></i> Page not found</h1>
|
||||
<p class="lead">The requested page cannot be found.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,92 @@
|
||||
.layout{
|
||||
position:relative;
|
||||
overflow:hidden;
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
.layout-panel{
|
||||
position:absolute;
|
||||
overflow:hidden;
|
||||
}
|
||||
.layout-panel-east,.layout-panel-west{
|
||||
z-index:2;
|
||||
}
|
||||
.layout-panel-north,.layout-panel-south{
|
||||
z-index:3;
|
||||
}
|
||||
.layout-button-up{
|
||||
background:url('images/layout_button_up.gif') no-repeat;
|
||||
}
|
||||
.layout-button-down{
|
||||
background:url('images/layout_button_down.gif') no-repeat;
|
||||
}
|
||||
.layout-button-left{
|
||||
background:url('images/layout_button_left.gif') no-repeat;
|
||||
}
|
||||
.layout-button-right{
|
||||
background:url('images/layout_button_right.gif') no-repeat;
|
||||
}
|
||||
.layout-expand{
|
||||
position:absolute;
|
||||
padding:0px 5px;
|
||||
padding:0px;
|
||||
background:#D2E0F2;
|
||||
font-size:1px;
|
||||
cursor:pointer;
|
||||
z-index:1;
|
||||
}
|
||||
.layout-expand .panel-header{
|
||||
background:transparent;
|
||||
border-bottom-width:0px;
|
||||
}
|
||||
.layout-expand .panel-header .panel-tool{
|
||||
top: 5px;
|
||||
}
|
||||
.layout-expand .panel-body{
|
||||
overflow:hidden;
|
||||
}
|
||||
.layout-expand-over{
|
||||
background:#E1F0F2;
|
||||
}
|
||||
.layout-body{
|
||||
overflow:auto;
|
||||
background:#fff;
|
||||
}
|
||||
.layout-split-proxy-h{
|
||||
position:absolute;
|
||||
width:5px;
|
||||
background:#ccc;
|
||||
font-size:1px;
|
||||
cursor:e-resize;
|
||||
display:none;
|
||||
z-index:5;
|
||||
}
|
||||
.layout-split-proxy-v{
|
||||
position:absolute;
|
||||
height:5px;
|
||||
background:#ccc;
|
||||
font-size:1px;
|
||||
cursor:n-resize;
|
||||
display:none;
|
||||
z-index:5;
|
||||
}
|
||||
.layout-split-north{
|
||||
border-bottom:5px solid #D2E0F2;
|
||||
}
|
||||
.layout-split-south{
|
||||
border-top:5px solid #D2E0F2;
|
||||
}
|
||||
.layout-split-east{
|
||||
border-left:5px solid #D2E0F2;
|
||||
}
|
||||
.layout-split-west{
|
||||
border-right:5px solid #D2E0F2;
|
||||
}
|
||||
.layout-mask{
|
||||
position:absolute;
|
||||
background:#fafafa;
|
||||
filter:alpha(opacity=10);
|
||||
opacity:0.10;
|
||||
z-index:4;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,73 @@
|
||||
a.l-btn{
|
||||
color:#444;
|
||||
background:url('images/button_a_bg.gif') no-repeat top right;
|
||||
font-size:12px;
|
||||
text-decoration:none;
|
||||
display:inline-block;
|
||||
zoom:1;
|
||||
height:24px;
|
||||
padding-right:18px;
|
||||
cursor:pointer;
|
||||
outline:none;
|
||||
}
|
||||
a.l-btn-plain{
|
||||
background:transparent;
|
||||
padding-right:5px;
|
||||
border:1px solid transparent;
|
||||
_border:0px solid #efefef;
|
||||
_padding:1px 6px 1px 1px;
|
||||
}
|
||||
|
||||
a.l-btn-disabled{
|
||||
color:#ccc;
|
||||
opacity:0.5;
|
||||
filter:alpha(opacity=50);
|
||||
cursor:default;
|
||||
}
|
||||
a.l-btn span.l-btn-left{
|
||||
display:inline-block;
|
||||
background:url('images/button_span_bg.gif') no-repeat top left;
|
||||
padding:4px 0px 4px 18px;
|
||||
line-height:16px;
|
||||
height:16px;
|
||||
}
|
||||
a.l-btn-plain span.l-btn-left{
|
||||
background:transparent;
|
||||
padding-left:5px;
|
||||
}
|
||||
|
||||
a.l-btn span span.l-btn-text{
|
||||
display:inline-block;
|
||||
height:16px;
|
||||
line-height:16px;
|
||||
padding:0px;
|
||||
}
|
||||
a.l-btn span span span.l-btn-empty{
|
||||
display:inline-block;
|
||||
padding:0px;
|
||||
width:16px;
|
||||
}
|
||||
a:hover.l-btn{
|
||||
background-position: bottom right;
|
||||
outline:none;
|
||||
}
|
||||
a:hover.l-btn span.l-btn-left{
|
||||
background-position: bottom left;
|
||||
}
|
||||
|
||||
a:hover.l-btn-plain{
|
||||
border:1px solid #7eabcd;
|
||||
background:url('images/button_plain_hover.png') repeat-x left bottom;
|
||||
_padding:0px 5px 0px 0px;
|
||||
-moz-border-radius:3px;
|
||||
-webkit-border-radius: 3px;
|
||||
}
|
||||
a:hover.l-btn-disabled{
|
||||
background-position:top right;
|
||||
}
|
||||
a:hover.l-btn-disabled span.l-btn-left{
|
||||
background-position:top left;
|
||||
}
|
||||
a.l-btn .l-btn-focus{
|
||||
outline:#0000FF dotted thin;
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
.menu{
|
||||
position:absolute;
|
||||
background:#f0f0f0 url('images/menu.gif') repeat-y;
|
||||
margin:0;
|
||||
padding:2px;
|
||||
border:1px solid #ccc;
|
||||
overflow:hidden;
|
||||
}
|
||||
.menu-item{
|
||||
position:relative;
|
||||
margin:0;
|
||||
padding:0;
|
||||
height:22px;
|
||||
line-height:20px;
|
||||
overflow:hidden;
|
||||
font-size:12px;
|
||||
cursor:pointer;
|
||||
border:1px solid transparent;
|
||||
_border:1px solid #f0f0f0;
|
||||
}
|
||||
.menu-text{
|
||||
position:absolute;
|
||||
left:28px;
|
||||
top:0px;
|
||||
}
|
||||
.menu-icon{
|
||||
position:absolute;
|
||||
width:16px;
|
||||
height:16px;
|
||||
top:3px;
|
||||
left:2px;
|
||||
}
|
||||
.menu-rightarrow{
|
||||
position: absolute;
|
||||
width:4px;
|
||||
height:7px;
|
||||
top:7px;
|
||||
right:5px;
|
||||
background:url('images/menu_rightarrow.png') no-repeat;
|
||||
}
|
||||
.menu-sep{
|
||||
margin:3px 0px 3px 24px;
|
||||
line-height:2px;
|
||||
font-size:2px;
|
||||
background:url('images/menu_sep.png') repeat-x;
|
||||
}
|
||||
.menu-active{
|
||||
border:1px solid #7eabcd;
|
||||
background:#fafafa;
|
||||
-moz-border-radius:3px;
|
||||
-webkit-border-radius: 3px;
|
||||
}
|
||||
.menu-shadow{
|
||||
position:absolute;
|
||||
background:#ddd;
|
||||
-moz-border-radius:5px;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
|
||||
-webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
|
||||
filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2);
|
||||
}
|
||||
.menu-item-disabled{
|
||||
opacity:0.5;
|
||||
filter:alpha(opacity=50);
|
||||
cursor:default;
|
||||
}
|
||||
.menu-active-disabled{
|
||||
border-color:#d3d3d3;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
.m-btn-downarrow{
|
||||
display:inline-block;
|
||||
width:12px;
|
||||
line-height:14px;
|
||||
*line-height:15px;
|
||||
background:url('images/menu_downarrow.png') no-repeat 4px center;
|
||||
}
|
||||
|
||||
a.m-btn-active{
|
||||
background-position: bottom right;
|
||||
}
|
||||
a.m-btn-active span.l-btn-left{
|
||||
background-position: bottom left;
|
||||
}
|
||||
a.m-btn-plain-active{
|
||||
background:transparent;
|
||||
border:1px solid #7eabcd;
|
||||
_padding:0px 5px 0px 0px;
|
||||
-moz-border-radius:3px;
|
||||
-webkit-border-radius: 3px;
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
.messager-body{
|
||||
padding:5px 10px;
|
||||
}
|
||||
.messager-button{
|
||||
text-align:center;
|
||||
padding-top:10px;
|
||||
}
|
||||
.messager-icon{
|
||||
float:left;
|
||||
width:47px;
|
||||
height:35px;
|
||||
}
|
||||
.messager-error{
|
||||
background:url('images/messager_error.gif') no-repeat scroll left top;
|
||||
}
|
||||
.messager-info{
|
||||
background:url('images/messager_info.gif') no-repeat scroll left top;
|
||||
}
|
||||
.messager-question{
|
||||
background:url('images/messager_question.gif') no-repeat scroll left top;
|
||||
}
|
||||
.messager-warning{
|
||||
background:url('images/messager_warning.gif') no-repeat scroll left top;
|
||||
}
|
||||
.messager-input{
|
||||
width: 262px;
|
||||
border:1px solid #ccc;
|
||||
}
|
||||
.messager-progress{
|
||||
padding:10px;
|
||||
}
|
||||
.messager-p-msg{
|
||||
margin-bottom:5px;
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
.pagination{
|
||||
zoom:1;
|
||||
}
|
||||
.pagination table{
|
||||
float:left;
|
||||
height:30px;
|
||||
}
|
||||
.pagination-btn-separator{
|
||||
float:left;
|
||||
height:24px;
|
||||
border-left:1px solid #ccc;
|
||||
border-right:1px solid #fff;
|
||||
margin:3px 1px;
|
||||
}
|
||||
.pagination-num{
|
||||
border:1px solid #ccc;
|
||||
margin:0 2px;
|
||||
}
|
||||
.pagination-page-list{
|
||||
margin:0px 6px;
|
||||
}
|
||||
.pagination-info{
|
||||
float:right;
|
||||
padding-right:6px;
|
||||
padding-top:8px;
|
||||
font-size:12px;
|
||||
}
|
||||
.pagination span{
|
||||
font-size:12px;
|
||||
}
|
||||
.pagination-first{
|
||||
background:url('images/pagination_first.gif') no-repeat;
|
||||
}
|
||||
.pagination-prev{
|
||||
background:url('images/pagination_prev.gif') no-repeat;
|
||||
}
|
||||
.pagination-next{
|
||||
background:url('images/pagination_next.gif') no-repeat;
|
||||
}
|
||||
.pagination-last{
|
||||
background:url('images/pagination_last.gif') no-repeat;
|
||||
}
|
||||
.pagination-load{
|
||||
background:url('images/pagination_load.png') no-repeat;
|
||||
}
|
||||
.pagination-loading{
|
||||
background:url('images/pagination_loading.gif') no-repeat;
|
||||
}
|
||||
@@ -0,0 +1,83 @@
|
||||
.panel{
|
||||
overflow:hidden;
|
||||
font-size:12px;
|
||||
}
|
||||
.panel-header{
|
||||
padding:5px;
|
||||
line-height:15px;
|
||||
color:#15428b;
|
||||
font-weight:bold;
|
||||
font-size:12px;
|
||||
background:url('images/panel_title.png') repeat-x;
|
||||
position:relative;
|
||||
border:1px solid #99BBE8;
|
||||
}
|
||||
.panel-title{
|
||||
background:url('images/blank.gif') no-repeat;
|
||||
}
|
||||
.panel-header-noborder{
|
||||
border-width:0px;
|
||||
border-bottom:1px solid #99BBE8;
|
||||
}
|
||||
.panel-body{
|
||||
overflow:auto;
|
||||
border:1px solid #99BBE8;
|
||||
border-top-width:0px;
|
||||
}
|
||||
.panel-body-noheader{
|
||||
border-top-width:1px;
|
||||
}
|
||||
.panel-body-noborder{
|
||||
border-width:0px;
|
||||
}
|
||||
.panel-with-icon{
|
||||
padding-left:18px;
|
||||
}
|
||||
.panel-icon{
|
||||
position:absolute;
|
||||
left:5px;
|
||||
top:4px;
|
||||
width:16px;
|
||||
height:16px;
|
||||
}
|
||||
|
||||
.panel-tool{
|
||||
position:absolute;
|
||||
right:5px;
|
||||
top:4px;
|
||||
}
|
||||
.panel-tool a{
|
||||
display:inline-block;
|
||||
width:16px;
|
||||
height:16px;
|
||||
opacity:0.6;
|
||||
filter:alpha(opacity=60);
|
||||
margin-left:2px;
|
||||
}
|
||||
.panel-tool a:hover{
|
||||
opacity:1;
|
||||
filter:alpha(opacity=100);
|
||||
}
|
||||
.panel-tool-close{
|
||||
background:url('images/panel_tools.gif') no-repeat -16px 0px;
|
||||
}
|
||||
.panel-tool-min{
|
||||
background:url('images/panel_tools.gif') no-repeat 0px 0px;
|
||||
}
|
||||
.panel-tool-max{
|
||||
background:url('images/panel_tools.gif') no-repeat 0px -16px;
|
||||
}
|
||||
.panel-tool-restore{
|
||||
background:url('images/panel_tools.gif') no-repeat -16px -16px;
|
||||
}
|
||||
.panel-tool-collapse{
|
||||
background:url('images/panel_tool_collapse.gif') no-repeat;
|
||||
}
|
||||
.panel-tool-expand{
|
||||
background:url('images/panel_tool_expand.gif') no-repeat;
|
||||
}
|
||||
.panel-loading{
|
||||
padding:11px 0px 10px 30px;
|
||||
background:url('images/panel_loading.gif') no-repeat 10px 10px;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
.progressbar{
|
||||
border:1px solid #99BBE8;
|
||||
border-radius:5px;
|
||||
overflow:hidden;
|
||||
}
|
||||
.progressbar-text{
|
||||
text-align:center;
|
||||
color:#15428b;
|
||||
position:absolute;
|
||||
}
|
||||
.progressbar-value{
|
||||
background-color:#FF8D40;
|
||||
border-radius:5px;
|
||||
width:0;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
.propertygrid .datagrid-view1 .datagrid-body,.propertygrid .datagrid-group{
|
||||
background:#E0ECFF;
|
||||
}
|
||||
.propertygrid .datagrid-group{
|
||||
height:21px;
|
||||
overflow:hidden;
|
||||
}
|
||||
.propertygrid .datagrid-view1 .datagrid-body td{
|
||||
border-color:#E0ECFF;
|
||||
}
|
||||
.propertygrid .datagrid-view1 .datagrid-row-over,.propertygrid .datagrid-view1 .datagrid-row-selected{
|
||||
background:#E0ECFF;
|
||||
}
|
||||
.propertygrid .datagrid-group span{
|
||||
color:#416AA3;
|
||||
font-weight:bold;
|
||||
padding-left:4px;
|
||||
}
|
||||
.propertygrid .datagrid-row-collapse,.propertygrid .datagrid-row-expand{
|
||||
background-position:3px center;
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
.searchbox{
|
||||
display:inline-block;
|
||||
white-space:nowrap;
|
||||
font-size:12px;
|
||||
margin:0;
|
||||
padding:0;
|
||||
border:1px solid #A4BED4;
|
||||
background:#fff;
|
||||
}
|
||||
.searchbox-text{
|
||||
font-size:12px;
|
||||
border:0px;
|
||||
line-height:20px;
|
||||
height:20px;
|
||||
padding:0px;
|
||||
*height:18px;
|
||||
*line-height:18px;
|
||||
_height:18px;
|
||||
_line-height:18px;
|
||||
}
|
||||
.searchbox-button{
|
||||
background:url('images/searchbox_button.png') no-repeat center center;
|
||||
width:18px;
|
||||
height:20px;
|
||||
overflow:hidden;
|
||||
display:inline-block;
|
||||
vertical-align:top;
|
||||
cursor:pointer;
|
||||
opacity:0.6;
|
||||
filter:alpha(opacity=60);
|
||||
}
|
||||
.searchbox-button-hover{
|
||||
opacity:1.0;
|
||||
filter:alpha(opacity=100);
|
||||
}
|
||||
.searchbox-prompt{
|
||||
font-size:12px;
|
||||
color:#ccc;
|
||||
}
|
||||
.searchbox a.l-btn-plain{
|
||||
background-color:#E0ECF9;
|
||||
height:20px;
|
||||
border:0;
|
||||
padding:0 6px 0 0;
|
||||
vertical-align:top;
|
||||
}
|
||||
.searchbox a.l-btn .l-btn-left{
|
||||
padding:2px 0 2px 2px;
|
||||
}
|
||||
.searchbox a.l-btn-plain:hover{
|
||||
-moz-border-radius:0px;
|
||||
-webkit-border-radius: 0px;
|
||||
border:0;
|
||||
padding:0 6px 0 0;
|
||||
}
|
||||
.searchbox a.m-btn-plain-active{
|
||||
-moz-border-radius:0px;
|
||||
-webkit-border-radius: 0px;
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
.spinner{
|
||||
display:inline-block;
|
||||
white-space:nowrap;
|
||||
font-size:12px;
|
||||
margin:0;
|
||||
padding:0;
|
||||
border:1px solid #A4BED4;
|
||||
}
|
||||
.spinner-text{
|
||||
font-size:12px;
|
||||
border:0px;
|
||||
line-height:20px;
|
||||
height:20px;
|
||||
padding:0px;
|
||||
*height:18px;
|
||||
*line-height:18px;
|
||||
_height:18px;
|
||||
_line-height:18px;
|
||||
}
|
||||
.spinner-arrow{
|
||||
display:inline-block;
|
||||
vertical-align:top;
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
.spinner-arrow-up,.spinner-arrow-down{
|
||||
display:block;
|
||||
background:#E0ECF9 url('images/spinner_arrow_up.gif') no-repeat 5px 2px;
|
||||
font-size:1px;
|
||||
width:18px;
|
||||
height:10px;
|
||||
}
|
||||
.spinner-arrow-down{
|
||||
background:#E0ECF9 url('images/spinner_arrow_down.gif') no-repeat 5px 3px;
|
||||
}
|
||||
.spinner-arrow-hover{
|
||||
background-color:#ECF9F9;
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
.s-btn-downarrow{
|
||||
display:inline-block;
|
||||
width:16px;
|
||||
line-height:14px;
|
||||
*line-height:15px;
|
||||
background:url('images/menu_downarrow.png') no-repeat 9px center;
|
||||
}
|
||||
|
||||
a.s-btn-active{
|
||||
background-position: bottom right;
|
||||
}
|
||||
a.s-btn-active span.l-btn-left{
|
||||
background-position: bottom left;
|
||||
}
|
||||
a.s-btn-active .s-btn-downarrow{
|
||||
background:url('images/menu_split_downarrow.png') no-repeat 4px -19px;
|
||||
}
|
||||
a:hover.l-btn .s-btn-downarrow{
|
||||
background:url('images/menu_split_downarrow.png') no-repeat 4px -19px;
|
||||
}
|
||||
|
||||
a.s-btn-plain-active{
|
||||
background:transparent;
|
||||
border:1px solid #7eabcd;
|
||||
_padding:0px 5px 0px 0px;
|
||||
-moz-border-radius:3px;
|
||||
-webkit-border-radius: 3px;
|
||||
}
|
||||
a.s-btn-plain-active .s-btn-downarrow{
|
||||
background:url('images/menu_split_downarrow.png') no-repeat 4px -19px;
|
||||
}
|
||||
@@ -0,0 +1,207 @@
|
||||
.tabs-container{
|
||||
overflow:hidden;
|
||||
background:#fff;
|
||||
}
|
||||
.tabs-header{
|
||||
border:1px solid #8DB2E3;
|
||||
background:#E0ECFF;
|
||||
border-bottom:0px;
|
||||
position:relative;
|
||||
overflow:hidden;
|
||||
padding:0px;
|
||||
padding-top:2px;
|
||||
overflow:hidden;
|
||||
}
|
||||
.tabs-header-noborder{
|
||||
border:0px;
|
||||
}
|
||||
.tabs-header-plain{
|
||||
border:0px;
|
||||
background:transparent;
|
||||
}
|
||||
.tabs-scroller-left{
|
||||
position:absolute;
|
||||
left:0px;
|
||||
top:-1px;
|
||||
width:18px;
|
||||
height:28px!important;
|
||||
height:30px;
|
||||
border:1px solid #8DB2E3;
|
||||
font-size:1px;
|
||||
display:none;
|
||||
cursor:pointer;
|
||||
background:#E0ECFF url('images/tabs_leftarrow.png') no-repeat 1px 5px;
|
||||
}
|
||||
.tabs-scroller-right{
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:-1px;
|
||||
width:18px;
|
||||
height:28px!important;
|
||||
height:30px;
|
||||
border:1px solid #8DB2E3;
|
||||
font-size:1px;
|
||||
display:none;
|
||||
cursor:pointer;
|
||||
background:#E0ECFF url('images/tabs_rightarrow.png') no-repeat 2px 5px;
|
||||
}
|
||||
.tabs-tool{
|
||||
position:absolute;
|
||||
top:-1px;
|
||||
border:1px solid #8DB2E3;
|
||||
padding:1px;
|
||||
background:#E0ECFF;
|
||||
overflow:hidden;
|
||||
}
|
||||
.tabs-header-plain .tabs-scroller-left{
|
||||
top:2px;
|
||||
height:25px!important;
|
||||
height:27px;
|
||||
}
|
||||
.tabs-header-plain .tabs-scroller-right{
|
||||
top:2px;
|
||||
height:25px!important;
|
||||
height:27px;
|
||||
}
|
||||
.tabs-header-plain .tabs-tool{
|
||||
top:2px;
|
||||
padding-top:0;
|
||||
}
|
||||
.tabs-scroller-over{
|
||||
background-color:#ECF9F9;
|
||||
}
|
||||
.tabs-wrap{
|
||||
position:relative;
|
||||
left:0px;
|
||||
overflow:hidden;
|
||||
width:100%;
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
}
|
||||
.tabs-scrolling{
|
||||
margin-left:18px;
|
||||
margin-right:18px;
|
||||
}
|
||||
.tabs{
|
||||
list-style-type:none;
|
||||
height:26px;
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
padding-left:4px;
|
||||
font-size:12px;
|
||||
width:5000px;
|
||||
border-bottom:1px solid #8DB2E3;
|
||||
}
|
||||
.tabs li{
|
||||
float:left;
|
||||
display:inline-block;
|
||||
margin-right:4px;
|
||||
margin-bottom:-1px;
|
||||
padding:0;
|
||||
position:relative;
|
||||
border:1px solid #8DB2E3;
|
||||
-moz-border-radius-topleft:5px;
|
||||
-moz-border-radius-topright:5px;
|
||||
-webkit-border-top-left-radius:5px;
|
||||
-webkit-border-top-right-radius:5px;
|
||||
}
|
||||
.tabs li a.tabs-inner{
|
||||
display:inline-block;
|
||||
text-decoration:none;
|
||||
color:#416AA3;
|
||||
background:url('images/tabs_enabled.png') repeat-x left top;
|
||||
margin:0px;
|
||||
padding:0px 10px;
|
||||
height:25px;
|
||||
line-height:25px;
|
||||
text-align:center;
|
||||
white-space:nowrap;
|
||||
-moz-border-radius-topleft:5px;
|
||||
-moz-border-radius-topright:5px;
|
||||
-webkit-border-top-left-radius:5px;
|
||||
-webkit-border-top-right-radius:5px;
|
||||
}
|
||||
.tabs li a.tabs-inner:hover{
|
||||
background:url('images/tabs_active.png') repeat-x left bottom;
|
||||
}
|
||||
.tabs li.tabs-selected{
|
||||
border:1px solid #8DB2E3;
|
||||
border-bottom:1px solid #fff;
|
||||
}
|
||||
.tabs li.tabs-selected a.tabs-inner{
|
||||
color:#416AA3;
|
||||
font-weight:bold;
|
||||
background:#fff;
|
||||
background:#7eabcd url('images/tabs_active.png') repeat-x left bottom;
|
||||
outline: none;
|
||||
}
|
||||
.tabs li.tabs-selected a:hover.tabs-inner{
|
||||
cursor:default;
|
||||
pointer:default;
|
||||
}
|
||||
.tabs-p-tool{
|
||||
position:absolute;
|
||||
right:16px;
|
||||
top:7px;
|
||||
display:block;
|
||||
}
|
||||
.tabs-p-tool a{
|
||||
display:inline-block;
|
||||
font-size:1px;
|
||||
width:12px;
|
||||
height:12px;
|
||||
opacity:0.6;
|
||||
filter:alpha(opacity=60);
|
||||
}
|
||||
.tabs-p-tool a:hover{
|
||||
opacity:1;
|
||||
filter:alpha(opacity=100);
|
||||
cursor:hand;
|
||||
cursor:pointer;
|
||||
background-color:#8DB2E3;
|
||||
}
|
||||
.tabs-with-icon{
|
||||
padding-left:18px;
|
||||
}
|
||||
.tabs-icon{
|
||||
position:absolute;
|
||||
width:16px;
|
||||
height:16px;
|
||||
left:10px;
|
||||
top:5px;
|
||||
}
|
||||
.tabs-closable{
|
||||
padding-right:8px;
|
||||
}
|
||||
.tabs li a.tabs-close{
|
||||
position:absolute;
|
||||
font-size:1px;
|
||||
display:block;
|
||||
padding:0px;
|
||||
width:11px;
|
||||
height:11px;
|
||||
top:7px;
|
||||
right:5px;
|
||||
opacity:0.6;
|
||||
filter:alpha(opacity=60);
|
||||
background:url('images/tabs_close.gif') no-repeat 2px 2px;
|
||||
}
|
||||
.tabs li a:hover.tabs-close{
|
||||
opacity:1;
|
||||
filter:alpha(opacity=100);
|
||||
cursor:hand;
|
||||
cursor:pointer;
|
||||
background-color:#8DB2E3;
|
||||
}
|
||||
|
||||
|
||||
.tabs-panels{
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
border:1px solid #8DB2E3;
|
||||
border-top:0px;
|
||||
overflow:hidden;
|
||||
}
|
||||
.tabs-panels-noborder{
|
||||
border:0px;
|
||||
}
|
||||
@@ -0,0 +1,127 @@
|
||||
.tree{
|
||||
font-size:12px;
|
||||
margin:0;
|
||||
padding:0;
|
||||
list-style-type:none;
|
||||
}
|
||||
.tree li{
|
||||
white-space:nowrap;
|
||||
}
|
||||
.tree li ul{
|
||||
list-style-type:none;
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
.tree-node{
|
||||
height:18px;
|
||||
white-space:nowrap;
|
||||
cursor:pointer;
|
||||
}
|
||||
.tree-indent{
|
||||
display:inline-block;
|
||||
width:16px;
|
||||
height:18px;
|
||||
vertical-align:middle;
|
||||
}
|
||||
.tree-hit{
|
||||
cursor:pointer;
|
||||
}
|
||||
.tree-expanded{
|
||||
display:inline-block;
|
||||
width:16px;
|
||||
height:18px;
|
||||
vertical-align:middle;
|
||||
background:url('images/tree_arrows.gif') no-repeat -18px 0px;
|
||||
}
|
||||
.tree-expanded-hover{
|
||||
background:url('images/tree_arrows.gif') no-repeat -50px 0px;
|
||||
}
|
||||
.tree-collapsed{
|
||||
display:inline-block;
|
||||
width:16px;
|
||||
height:18px;
|
||||
vertical-align:middle;
|
||||
background:url('images/tree_arrows.gif') no-repeat 0px 0px;
|
||||
}
|
||||
.tree-collapsed-hover{
|
||||
background:url('images/tree_arrows.gif') no-repeat -32px 0px;
|
||||
}
|
||||
.tree-folder{
|
||||
display:inline-block;
|
||||
background:url('images/tree_folder.gif') no-repeat;
|
||||
width:16px;
|
||||
height:18px;
|
||||
vertical-align:middle;
|
||||
}
|
||||
.tree-folder-open{
|
||||
background:url('images/tree_folder_open.gif') no-repeat;
|
||||
}
|
||||
.tree-file{
|
||||
display:inline-block;
|
||||
background:url('images/tree_file.gif') no-repeat;
|
||||
width:16px;
|
||||
height:18px;
|
||||
vertical-align:middle;
|
||||
}
|
||||
.tree-loading{
|
||||
background:url('images/tree_loading.gif') no-repeat;
|
||||
}
|
||||
.tree-title{
|
||||
display:inline-block;
|
||||
text-decoration:none;
|
||||
vertical-align:middle;
|
||||
padding:1px 2px 1px 2px;
|
||||
white-space:nowrap;
|
||||
}
|
||||
|
||||
.tree-node-hover{
|
||||
background:#fafafa;
|
||||
}
|
||||
.tree-node-selected{
|
||||
background:#FBEC88;
|
||||
}
|
||||
.tree-checkbox{
|
||||
display:inline-block;
|
||||
width:16px;
|
||||
height:18px;
|
||||
vertical-align:middle;
|
||||
}
|
||||
.tree-checkbox0{
|
||||
background:url('images/tree_checkbox_0.gif') no-repeat;
|
||||
}
|
||||
.tree-checkbox1{
|
||||
background:url('images/tree_checkbox_1.gif') no-repeat;
|
||||
}
|
||||
.tree-checkbox2{
|
||||
background:url('images/tree_checkbox_2.gif') no-repeat;
|
||||
}
|
||||
.tree-node-proxy{
|
||||
font-size:12px;
|
||||
padding:1px 2px 1px 18px;
|
||||
background:#fafafa;
|
||||
border:1px solid #ccc;
|
||||
z-index:9900000;
|
||||
}
|
||||
.tree-dnd-yes{
|
||||
background:url('images/tree_dnd_yes.png') no-repeat 0 center;
|
||||
}
|
||||
.tree-dnd-no{
|
||||
background:url('images/tree_dnd_no.png') no-repeat 0 center;
|
||||
}
|
||||
.tree-node-top{
|
||||
border-top:1px dotted red;
|
||||
}
|
||||
.tree-node-bottom{
|
||||
border-bottom:1px dotted red;
|
||||
}
|
||||
.tree-node-append .tree-title{
|
||||
border:1px dotted red;
|
||||
}
|
||||
.tree-editor{
|
||||
border:1px solid #ccc;
|
||||
font-size:12px;
|
||||
line-height:16px;
|
||||
width:80px;
|
||||
position:absolute;
|
||||
top:0;
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
.validatebox-invalid{
|
||||
background:#FFFFEE url('images/validatebox_warning.png') no-repeat right 1px;
|
||||
}
|
||||
.validatebox-tip{
|
||||
position:absolute;
|
||||
width:200px;
|
||||
height:auto;
|
||||
display:none;
|
||||
z-index:9900000;
|
||||
}
|
||||
.validatebox-tip-content{
|
||||
display:inline-block;
|
||||
position:absolute;
|
||||
top:0px;
|
||||
left:10px;
|
||||
padding:3px 5px;
|
||||
border:1px solid #CC9933;
|
||||
background:#FFFFCC;
|
||||
z-index:9900001;
|
||||
font-size:12px;
|
||||
}
|
||||
.validatebox-tip-pointer{
|
||||
background:url('images/validatebox_pointer.gif') no-repeat left top;
|
||||
display:inline-block;
|
||||
width:10px;
|
||||
height:19px;
|
||||
position:absolute;
|
||||
left:1px;
|
||||
top:0px;
|
||||
z-index:9900002;
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
.window {
|
||||
font-size:12px;
|
||||
position:absolute;
|
||||
overflow:hidden;
|
||||
background:transparent url('images/panel_title.png');
|
||||
padding:5px;
|
||||
border:1px solid #99BBE8;
|
||||
border-radius:5px;
|
||||
-moz-border-radius:5px;
|
||||
-webkit-border-radius: 5px;
|
||||
}
|
||||
.window-shadow{
|
||||
position:absolute;
|
||||
background:#ddd;
|
||||
border-radius:5px;
|
||||
-moz-border-radius:5px;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
|
||||
-webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
|
||||
filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2);
|
||||
}
|
||||
.window .window-header{
|
||||
background:transparent;
|
||||
padding:2px 0px 4px 0px;
|
||||
}
|
||||
.window .window-body{
|
||||
background:#fff;
|
||||
border:1px solid #99BBE8;
|
||||
border-top-width:0px;
|
||||
}
|
||||
.window .window-body-noheader{
|
||||
border-top-width:1px;
|
||||
}
|
||||
.window .window-header .panel-icon{
|
||||
left:1px;
|
||||
top:1px;
|
||||
}
|
||||
.window .window-header .panel-with-icon{
|
||||
padding-left:18px;
|
||||
}
|
||||
.window .window-header .panel-tool{
|
||||
top:0px;
|
||||
right:1px;
|
||||
}
|
||||
.window-proxy{
|
||||
position:absolute;
|
||||
overflow:hidden;
|
||||
border:1px dashed #15428b;
|
||||
}
|
||||
.window-proxy-mask{
|
||||
position:absolute;
|
||||
background:#fafafa;
|
||||
filter:alpha(opacity=10);
|
||||
opacity:0.10;
|
||||
}
|
||||
.window-mask{
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
width:100%;
|
||||
height:100%;
|
||||
filter:alpha(opacity=40);
|
||||
opacity:0.40;
|
||||
background:#ccc;
|
||||
font-size:1px;
|
||||
*zoom:1;
|
||||
overflow:hidden;
|
||||
}
|
||||