Дозаливка

This commit is contained in:
2022-12-19 22:22:19 +02:00
parent 73d69cb0ae
commit 2f6517f5b3
22083 changed files with 494007 additions and 0 deletions
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 231 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 1005 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 49 B

View File
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1002 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 686 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 857 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 838 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

+42
View File
@@ -0,0 +1,42 @@
(function($) {
$(function() {
function createCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
$('ul.tabs').each(function(i) {
var cookie = readCookie('tabCookie'+i);
if (cookie) $(this).find('li').eq(cookie).addClass('current').siblings().removeClass('current')
.parents('div.section').find('div.box').hide().eq(cookie).show();
})
$('ul.tabs').delegate('li:not(.current)', 'click', function() {
$(this).addClass('current').siblings().removeClass('current')
.parents('div.section').find('div.box').eq($(this).index()).fadeIn(150).siblings('div.box').hide();
var ulIndex = $('ul.tabs').index($(this).parents('ul.tabs'));
eraseCookie('tabCookie'+ulIndex);
createCookie('tabCookie'+ulIndex, $(this).index(), 365);
})
})
})(jQuery)
+428
View File
@@ -0,0 +1,428 @@
html,body{margin:0;padding:0}
body{font: 12px TrebuchetMS,Arial,sans-serif;
text-align: left;background: whitesmoke;padding-bottom:20px}
a { color: #0056A3; background: inherit; text-decoration: none;}
h1 { font: bold 120% Arial, Arial, Sans-Serif; color: #036DA7 }
h2 { font: bold 110% Arial, Arial, Sans-Serif; padding: 0; margin: 0; }
td
{
font-size: 9px;
}
div#header
{
width:100%;overflow:hidden;
height: 180px;
position: relative;
background: #000 url('https://new-combats.com/dng/i/ugetc/Unos.png') top left repeat-x;
}
div#header h1,div#menu{width: 98%; margin:0 auto;text-align:left}
div#header h1{padding: 30px 0 20px;color: #fff}
div#menu
{
width:100%;overflow:hidden;
background: #4f4f4f;
border-top:1px solid #b3b6b0;
padding-top: 4px;
}
ul#nav,ul#nav li{list-style-type:none;margin:0;padding:0}
ul#nav{float:center;font-size: 80%;margin-left: 20px; font-size: 11px;}
ul#nav li{float:left;margin-left: 3px;text-align: center}
ul#nav a{float:left;padding: 5px 10px;background: #404040;text-decoration:none;color: #fff; border : 1px solid #b3b6b0;}
ul#nav a:hover{background: #393939;color: yellow;}
ul#nav li.activeLink a,ul#nav li.activeLink a:hover{
background: #efefef;color: black;
border-bottom : 1px solid #efefef;
}
div#dsurface
{
width: 100%;
}
div.dmap
{
position:relative;
}
fieldset#logon
{
font: 9px TrebuchetMS,Arial,sans-serif;
text-align: right;
margin-right: 2px;
padding-right: 2px;
}
fieldset#logon input
{
font: 9px TrebuchetMS,Arial,sans-serif;
width: 120px;
border: 1px inset #ccc;
}
div.dtab
{
width:100%;overflow:hidden;
}
ul.dtab,ul.dtab li{list-style-type:none;margin:0;padding:0}
ul.dtab {float:center;font-size: 11px;}
ul.dtab li{float:left;margin-right: 3px;text-align: center}
ul.dtab a{float:left;padding: 3px 4px 3px 4px;background: #e7f1f8;text-decoration:none;color: #003; border: 1px solid #ccc; border-bottom: 0px none transparent;}
ul.dtab a:hover{background: #eff;color: #102018}
ul.dtab li.activeLink a,ul.dtab li.activeLink a:hover{background: #fff;color: #000;}
#right {
display: block;
background: #efefef;
text-align: left;
position: relative;
}
#left {
display: block;
}
#content {
font: 11px Verdana, Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
background: whitesmoke;
}
ul { padding: 0; margin: 0;}
li { list-style-type: none; padding-bottom: 2px; }
hr.dashed {BORDER-RIGHT: 1px dashed; BORDER-TOP: 1px dashed; BORDER-LEFT: 1px dashed; COLOR: #cccccc; BORDER-BOTTOM: 1px dashed; HEIGHT: 1px}
A.TLink {
COLOR: #333333; TEXT-DECORATION: underline
}
A.TLink:visited {
COLOR: #333333; TEXT-DECORATION: underline
}
A.TLink:hover {
COLOR: #333333; TEXT-DECORATION: underline
}
/*tables, tr, td, th...*/
.td_heading {BORDER-RIGHT: #cccccc 1px; PADDING-RIGHT: 3px; BORDER-TOP: #cccccc 1px; PADDING-LEFT: 10px; PADDING-BOTTOM: 3px; BORDER-LEFT: #cccccc 1px; COLOR: #999999; PADDING-TOP: 3px; BORDER-BOTTOM: #cccccc 1px dashed}
.td_text {PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; PADDING-TOP: 10px}
.tab-on {BORDER-RIGHT: #cccccc 1px; PADDING-RIGHT: 2px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 2px; PADDING-BOTTOM: 2px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 120px; CURSOR: default; COLOR: #000000; PADDING-TOP: 2px; BORDER-BOTTOM: #cccccc 1px; BACKGROUND-COLOR: #ffffff}
.tab-off {BORDER-RIGHT: #cccccc 1px; PADDING-RIGHT: 2px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 2px; PADDING-BOTTOM: 2px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 120px; CURSOR: hand; COLOR: #666666; PADDING-TOP: 2px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #f6f6f6}
.tab-none {BORDER-RIGHT: #cccccc 1px; PADDING-RIGHT: 2px; BORDER-TOP: #cccccc 1px; PADDING-LEFT: 2px; PADDING-BOTTOM: 2px; BORDER-LEFT: #cccccc 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #cccccc 1px solid}
.tab-content {PADDING: 5px; BORDER: 1px solid #cccccc;text-align: left;width:100%}
.td-bottom {PADDING-BOTTOM: 8px; PADDING-TOP: 8px; BACKGROUND-COLOR: #E6E7F3}
.show-table {DISPLAY: block}
.hide-table {DISPLAY: none}
.tcontent
{
font-size: 12px;
width:100%;
}
.reqinfo
{
font-size: 10px;
}
td.ABLink2
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
background-color: #f5f5f5;
color: black;
border: 0px none blue;
padding: 4px;
cursor: hand;
}
td.ABLinkH2
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
background-color: #a3a3a3;
color: black;
border: 1px solid #808080;
padding: 3px;
cursor: hand;
}
a.ABLink, a.ABLink:visited, a.ABLink:active, a.ABLink:link
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
background-color: transparent;
color: black;
border: 0px none blue;
padding: 2px;
cursor: hand;
}
a.ABLink:hover
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
background-color: cornflowerblue;
color: black;
border: 1px solid blue;
padding: 1px;
cursor: hand;
}
div.ABLink
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
background-color: white;
color: black;
border: 0px none blue;
padding: 2px;
cursor: hand;
text-align: center;
width: 90%;
}
div.ABLinkH
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
background-color: cornflowerblue;
color: black;
border: 1px solid blue;
padding: 1px;
cursor: hand;
text-align: center;
width: 90%;
}
table.info
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
border: 0px none;
padding: 2px 2px 2px 2px;
}
table.info th
{
background-color: black;
color: white;
font-weight: bold;
text-align: center;
vertical-align: top;
}
table.info th.infoseparator
{
background-color: #343434;
color: #AAAAAA;
font-weight: normal;
text-align: center;
vertical-align: top;
font-size: 8px;
}
table.info th.infoleftth
{
background-color: #343434;
color: white;
font-weight: normal;
text-align: right;
vertical-align: top;
}
table.info td
{
background-color: #e2e0e0;
color: black;
font-weight: normal;
text-align: center;
vertical-align: top;
border-right: 1px solid #333333;
}
table.info td.infolighttd
{
background-color: #CCCCCC;
color: black;
font-weight: normal;
text-align: center;
vertical-align: top;
}
a.ISLink, a.ISLink:visited
{
color: black;
text-decoration: underline;
}
input.ABTextR
{
border: solid 1pt #b0c4de;
font-size: 12px;
text-align: right;
cursor: text;
}
input.ABText80
{
width:80%;
border: solid 1pt #b0c4de;
font-size: 14px;
cursor: text;
}
td.tabZ
{
font-size: 9px;
}
.tool
{
BORDER: 1px solid #666666;
FONT-SIZE: 9px;
BACKGROUND-COLOR: #eeeeee;
color: #030;
}
div.hintview
{
color: black;
border: 1px solid black;
padding: 1px 1px 1px 1px;
background: whitesmoke;
font-size: 9px;
color: infotext;
background: infobackground;
}
table.hintview
{
font-size: 9px;
padding: 0;
border: 0;
margin: 0;
}
table.hintview tr td
{
font-size: 11px;
vertical-align: center;
}
div.dungeonPage
{
z-index: 15;
position: absolute;
left: 2%;
top: 2%;
width: 96%;
background-color: #f0f0f0;
border: 1px solid #333;
padding: 8px;
opacity: 0.94; -moz-opacity: 0.94; KhtmlOpacity: 0.94;
}
div.dright
{
position: absolute;
background-color: whitesmoke;
border: 1px solid #333;
padding: 2px;
opacity: 0.94; -moz-opacity: 0.94; KhtmlOpacity: 0.94;
}
div.dxaxis, div.dyaxis
{
}
div.dxaxis
{
margin-right: 5px;
}
div.dyaxis
{
margin-bottom: 5px;
}
div.xaxisline, div.yaxisline
{
background: #e7f1f8;
border: 1px solid #ccc;
padding: 0;
margin: 0;
position: absolute;
}
div.xaxisline
{
left: 0;
top: 34px;
width: 100%;
height: 4px;
margin-right: 2px;
border-left: 0px none transparent;
border-right: 0px none transparent;
}
div.yaxisline
{
left: 34px;
top: 0;
width: 4px;
height: 100%;
margin-bottom: 2px;
border-top: 0px none transparent;
border-bottom: 0px none transparent;
}
div.xaxislabel, div.yaxislabel
{
font-size: 15px;
font-weight: bolder;
text-align: center;
vertical-align: middle;
padding: 0;
}
div.xaxislabel
{
vertical-align: bottom;
margin-top: 3px;
margin-bottom: 4px;
padding-top: 10px;
}
div.yaxislabel
{
text-align: right;
margin-left: 3px;
margin-right: 4px;
padding-top: 10px;
}
div.hotxaxislabel
{
margin-top: 0;
border-top: 3px groove orange;
background-color: wheat;
}
div.hotyaxislabel
{
margin-left: 0;
border-left: 3px groove orange;
background-color: wheat;
}
div.hintviewcaption
{
margin:0;
padding: 1px;
border:0 none transparent;
border-bottom: 1px solid #000;
background: #fff;
color: #000;
font-weight: bolder;
}
div#slogan
{
margin:0;
padding: 1px;
font-size: smaller;
text-align: right;
color: tomato;
}
+50
View File
@@ -0,0 +1,50 @@
div#dsurface
{
filter:progid:DXImageTransform.Microsoft.Fade(duration=0.3);
}
div#header
{
filter:progid:DXImageTransform.Microsoft.Fade(duration=1);
}
.savefav
{
behavior: url(#default#savefavorite);
}
.userdata
{
behavior: url(#default#userdata);
}
td.ABLink2
{
filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#70f5f5f5', EndColorStr='#70666666');
}
div.dungeonPage, div.dright
{
filter: progid:DXImageTransform.Microsoft.Shadow(color='#666666', Direction=135, Strength=2);
}
div.xaxisline
{
height: 6px;
}
div.yaxisline
{
width: 6px;
}
img.objectImage
{
behavior: url(i/htc/pngbehavior.htc);
}
div.hintviewcaption
{
border-bottom: 1px solid infotext;
background: window;
color: infotext;
font-weight: bolder;
}
+180
View File
@@ -0,0 +1,180 @@
p
{
margin: 0;
padding-top: 2px;
}
blockquote
{
margin-top: 0;
padding-top: 2px;
margin-bottom: 0;
padding-bottom: 2px;
}
ul
{
margin-top: 2px;
}
fieldset
{
margin: 0;
padding: 2px;
}
.unselectable
{
-moz-user-select: none; user-select: none; -khtml-user-select: none;
}
div.htext
{
display: none;
}
div.htext2
{
padding: 1px;
}
div.incqbox
{
background-color: whitesmoke;
border: 1px solid #ccc;
padding: 1px;
}
span.blocked
{
font-weight:bold;
color: red;
background-color: #FAE0E0;
}
.i_invert
{
filter: invert();
}
.i_gray
{
filter: gray();
}
input.inpText, input.inpButton
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #DFDDD3;
border: 1px double #817A63;
background-color: #2b2b18;
}
table.proshka
{
background-color: whitesmoke;
border: 1px solid #cccccc;
margin: 1px;
padding: 2px;
filter: progid:DXImageTransform.Microsoft.Shadow(color='#666666', Direction=135, Strength=1);
}
table.proshka th, table.proshka td
{
vertical-align: top;
text-align: left;
font-family: Verdana, Arial, Helvetica, serif;
font-size: 11px;
color: black;
border: 1px solid #cccccc;
margin: 0;
padding: 2px;
}
table.proshka th
{
font-size: 12px;
font-weight: bolder;
border: 1px solid #666666;
background-color: #cccccc;
}
table.armada2006
{
font-family: Tahoma, Arial, Helvetica, serif;
font-size: 11px;
background-color: #eee;
color: #222;
border: 1px solid #aaa;
margin: 1px;
padding: 2px;
filter: progid:DXImageTransform.Microsoft.Shadow(color='#cccccc', Direction=135, Strength=1);
border-collapse: collapse;
}
table.armada2006 th, table.armada2006 td
{
vertical-align: top;
text-align: left;
border: 1px solid #aaa;
margin: 0;
padding: 2px;
}
table.armada2006 th
{
font-size: 12px;
color: #333;
font-weight: bolder;
background-color: #ccc;
}
span.ahtml_copyright, span.ahtml_update
{
font-size: 80%;
color: #a0a0a0;
}
div.tabs, div.tabn
{
padding: 2px;
display: none;
}
div.tabs2
{
padding: 0;
background-color: #e6e6e6;
}
div.tabc
{
padding: 7px;
border: 1px solid #666;
border-top: 1px solid #fff;
background-color: #fff;
filter: progid:DXImageTransform.Microsoft.Shadow(color='#666666', Direction=135, Strength=1);
}
div.dtab
{
text-align:left;overflow:hidden;margin-right: 2px;padding-left: 20px;background: url('i/dtabbg.gif') bottom left repeat-x;
}
ul.dtab,ul.dtab li{list-style-type:none;margin:0;padding:0;}
ul.dtab {float:left;font-size: 11px;}
ul.dtab li{float:left;margin-right: 3px;text-align: center}
/*
ul.dtab a{float:left;padding: 2px 3px 2px 3px;background: #f6f6f6;text-decoration:none;color: #003; border: 1px solid #ccc;}
ul.dtab a:hover{background: #fff;color: #102018}
ul.dtab li.activeLink a,ul.dtab li.activeLink a:hover{background: #fff;color: #000;}
*/
ul.dtab a{float:left;padding: 3px 5px;background: #eeeeee;text-decoration:none;color: #030; border: 1px solid #666666;}
ul.dtab a:hover{background: #ccc;color: maroon;}
/*ul.dtab li.activeLink a,ul.dtab li.activeLink a:hover{background: #cccccc;color: #000;}*/
ul.dtab li.activeLink a,ul.dtab li.activeLink a:hover{background: white;color: #000;border-bottom:1px solid white;font-weight: bold;}
a.blike {font-size: 12px; padding: 2px;background: #4f4f4f;text-decoration:none;color: #fff; border: 2px groove #b3b6b0; margin:2px;
filter: progid:DXImageTransform.Microsoft.Shadow(color='#666666', Direction=135, Strength=1);
}
a.blike:hover {background-color: #393939;color: yellow;}
a.fblike {font-size: 12px; padding: 2px;background: transparent;text-decoration:underline;color: maroon; border: 1px solid transparent; margin:1px;}
a.fblike:hover {background-color: #cccccc;color: maroon; border: 1px solid #666;}
hr.dashed {BORDER-RIGHT: 1px dashed; BORDER-TOP: 1px dashed; BORDER-LEFT: 1px dashed; COLOR: #ccc; BORDER-BOTTOM: 1px dashed; HEIGHT: 1px}
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 43 B

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

View File
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

+5
View File
@@ -0,0 +1,5 @@
<html><head><title>Autogenerated images index</title></head><body bgcolor="white">
<img src="blank.gif" border="0" />
<img src="dtabbg.gif" border="0" />
<img src="loading.gif" border="0" />
</body></html>
+406
View File
@@ -0,0 +1,406 @@
/* body styles */
html,body {
width:100%;
padding:0;
margin:0;
}
body {
background:url(main_bg1_hd.jpg) no-repeat;
background-position:center top;
background-color:#010a13;
}
.pr {
position:relative;
}
.bord1_t {
border:1px solid #5b4735;
background:url(bg2.jpg);
width:230px;
margin-left:7px;
margin-bottom:10px;
background-color:#0a0907;
color:#bd8f22;
font-family: tahoma, arial, verdana, sans-serif, Lucida Sans;
font-size: 11px;
}
.bord1_t0 {
border:1px solid #5b4735;
}
.message2 {
color: #8C6242;
font-size: 10px;
}
/* main elements */
.c1n {
background-color:#322312;
height:100%;
}
.main_body {
width:700px;
min-height:800px;
padding:30px 40px 60px 40px;
margin-bottom:-10px;
margin-top:-10px;
z-index:9;
}
/* vertical line*/
.l1n_v {
width:30px;
background:url(l1n_v.png) 0px 0px;
}
.r1n_v {
width:30px;
background:url(l1n_v.png) 30px 0px;
}
/* header top 1 */
.t1n_top {
position:relative;
}
.l1n_top {
background:url(l1n_top.png) repeat-x 0px 0px;
width:100%;
height:39px;
position:absolute;
top:0px;
}
.l1nt_top {
background:url(l1n_ttop.png) repeat-x 0px 0px;
width:100%;
height:17px;
position:absolute;
top:0px;
margin-top:14px;
}
.z1n_top {
background:url(z1n_top.png) repeat-x 0px 0px;
width:100%;
height:14px;
position:absolute;
top:-3px;
}
.z1n_btm {
background:url(z1n_btn.png) repeat-x 0px 0px;
width:100%;
height:14px;
position:absolute;
top:34px;
}
/* rows */
.lt1n_row {
background: url(l1n_row.png) no-repeat -10px -5px;
width: 200px;
height: 90px;
position: absolute;
z-index: 10;
top: -19px;
left: -30px;
}
.rt1n_row {
background: url(l1n_row.png) no-repeat -209px -5px;
width: 200px;
height: 90px;
position: absolute;
z-index: 10;
top: -19px;
left: -141px;
}
.lb1n_row {
background: url(l1n_row.png) no-repeat -10px -95px;
width: 200px;
height: 90px;
position: absolute;
z-index: 10;
top: -26px;
left: -30px;
}
.rb1n_row {
background: url(l1n_row.png) no-repeat -209px -95px;
width: 200px;
height: 90px;
position: absolute;
z-index: 10;
top: -27px;
left: -141px;
}
/* bottom */
.l1n_btm {
background: url(l1n_btm.png) repeat-x 0px -26px;
position:absolute;
width:100%;
height:60px;
top:-20px;
}
/* bg main in */
.b1g {
margin-top:15px;
background: url(b1g_in1.png) repeat-x 0px -80px;
min-height:77px;
position:static;
}
.b1g_in1 {
background: url(b1g_in1.png) no-repeat 0px 0px;
background-position:left top;
min-height:77px;
}
.b1g_in2 {
background: url(b1g_in3.png) top right no-repeat;
min-height:77px;
display:block;
height:100%;
}
.b1gi {
background: url(b1g_50.png);
display:inline-table;
width:100%;
height:100%;
}
.b1gi1 {
background: url(lln1.png) left repeat-y;
display:block;
width:100%;
height:100%;
}
.b1gi2 {
background: url(lln2.png) right repeat-y;
display:block;
width:100%;
height:100%;
}
/* ----------------------------- */
A:link{
COLOR:#003399;
TEXT-DECORATION:none;
font-weight:normal
}A:visited{
COLOR:#001D59;
TEXT-DECORATION:none;
font-weight:normal
}A:active{
COLOR:#004F9D;
TEXT-DECORATION:none;
font-weight:normal
}A:hover{
COLOR:#004488;
TEXT-DECORATION:underline
}.inup{FONT-SIZE:8pt;COLOR:#dfddd3;FONT-FAMILY:Verdana,Arial,Helvetica,sans-serif;BACKGROUND-COLOR:#151616;border:1px double #817a63}.btn{FONT-SIZE:7.5pt;COLOR:#dfddd3;FONT-FAMILY:Verdana,Arial,Helvetica,sans-serif;BACKGROUND-COLOR:#2b2b18;border:1px double #817a63}.btkey{display:block;text-align:center;PADDING-RIGHT:1px;PADDING-LEFT:1px;FONT-SIZE:7.5pt;FONT-FAMILY:verdana,sans-serif,arial;width:20;CURSOR:hand;border:1px solid #d6d3ce;COLOR:#dfddd3;BACKGROUND-COLOR:#2b2b18}.message{FONT-SIZE:7.5pt;FONT-FAMILY:verdana,sans-serif,arial;COLOR:white}.menu{FONT-SIZE:10pt;FONT-FAMILY:verdana;COLOR:white}
.inp1 {
background:url(bg_inp.png) 0 1px; background-repeat:no-repeat; height:23px; width:138px; padding-left:3px; padding-right:3px;
}
a img { border:0; }
textarea:focus, input:focus{
outline: none;
}
.btnenter {
background:url(btnclick.png);
background-repeat:no-repeat;
cursor:pointer;
}
.btnenter:active {
background:url(btnclick3.png);
background-repeat:no-repeat;
cursor:pointer;
}
.btnreg {
background:url(btnclick_.jpg);
background-repeat:no-repeat;
cursor:pointer;
}
.btnreg:active {
background:url(btnclick_2.jpg);
background-repeat:no-repeat;
cursor:pointer;
}
*[unsel=on] {
-moz-user-select: none;
-o-user-select:none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
*[radius=on] {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
-khtml-border-radius: 3px;
border-radius: 3px;
}
.bord1_t {
border:1px solid #5b4735;
background:url(bg2.jpg);
width:230px;
margin-left:7px;
margin-bottom:10px;
background-color:#0a0907;
color:#bd8f22;
font-family: tahoma, arial, verdana, sans-serif, Lucida Sans;
font-size: 11px;
}
.bord1_t0 {
border:1px solid #5b4735;
}
.rlgn {
padding-left:10px;
text-shadow: black 1px 1px 1px, black 0 1px 0;
cursor:pointer;
}
.rlgn:hover {
color:#DAA832;
}
.rlgn a {
color:#bd8f22;
text-shadow: black 1px 1px 1px, black 0 1px 0;
cursor:pointer;
}
.rlgn a:hover {
color:#DAA832;
}
.rlgn2 {
color:#988472;
padding-left:10px;
text-shadow: black 1px 1px 1px, black 0 1px 0;
cursor:pointer;
}
.rlgn2:hover {
color:#c6b19e;
}
.rlgn2 a {
color:#988472;
text-shadow: black 1px 1px 1px, black 0 1px 0;
cursor:pointer;
}
.rlgn2 a:hover {
color:#c6b19e;
}
.rlgn3 {
color: #9b200c;
padding-left: 10px;
cursor: pointer;
text-decoration: underline;
}
.rlgn3 a {
color:#9b200c;
cursor:pointer;
}
.message2 {
color: #8C6242;
font-size: 10px;
}
.a2 {
font-weight:bold;
color:#8f0f1a;
font-size:14px;
}
.a2 a {
font-weight:bold;
color:#8f0f1a;
font-size:14px;
}
.a2 small a {
font-size: 10px;
color: #333333;
}
.message3 {
color: #7A3029;
font-size: 11px;
}
.scn_sh1 {
background:url(scn_sh1.png) no-repeat;
}
.scn_sh2 {
background:url(scn_sh2.png) no-repeat;
}
.scn_sh1:active {
background:url(scn_sh12.png) no-repeat;
}
.scn_sh2:active {
background:url(scn_sh22.png) no-repeat;
}
.bnrbtn1 {
background:url(banner_btns1.png) no-repeat;
width:30px;
height:20px;
margin:1px;
cursor:pointer;
display:inline-block;
}
.bnrbtn2 {
background:url(banner_btns1.png) no-repeat -31px 0px;
width:30px;
height:20px;
margin:1px;
cursor:pointer;
display:inline-block;
}
.bnrbtn2:hover {
background:url(banner_btns1.png) no-repeat -62px 0px;
cursor:pointer;
}
.bnr1img {
position:absolute;
width:492px;
height:94px;
}
.pg1 {
background-color:#efc978;
border:1px solid #dfb452;
text-align:center;
display:inline-block;
}
.pg1 a {
border-top: 1px solid #ffeabf;
color: #9d8042;
padding: 2px;
min-width:20px;
text-align: center;
display: inline-block;
text-decoration: none;
}
.pg1 a:hover {
border-top: 1px solid #efc978;
}
.pg1:hover {
background-color:#e3b95f;
border:1px solid #ca9c32;
}
.pg2 {
background-color:#9b774e;
border:1px solid #413220;
text-align:center;
display:inline-block;
}
.pg2 a {
border-top: 1px solid #c0986e;
color: #413220;
padding: 2px;
min-width:20px;
text-align: center;
display: inline-block;
text-decoration: none;
}
/* */
.ssin {
white-space:nowrap;
overflow:hidden;
width:140px;
}
.ssmg {
position:absolute;
display:none;
top:3px;
left:3px;
z-index:1;
width:194px;
height:144px;
}
.ssmmg {
width:74px;
}
/* */
Binary file not shown.

After

Width:  |  Height:  |  Size: 209 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 B

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 309 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

+38
View File
@@ -0,0 +1,38 @@
@charset "windows-1251";
BODY{FONT-SIZE:10pt;FONT-FAMILY:Verdana,Arial,Helvetica,Tahoma,sans-serif}TD{FONT-SIZE:10pt;FONT-FAMILY:Verdana,Arial,Helvetica,Tahoma,sans-serif}OL{FONT-SIZE:10pt;FONT-FAMILY:Verdana,Arial,Helvetica,Tahoma,sans-serif}UL{FONT-SIZE:10pt;FONT-FAMILY:Verdana,Arial,Helvetica,Tahoma,sans-serif}LI{FONT-SIZE:10pt;FONT-FAMILY:Verdana,Arial,Helvetica,Tahoma,sans-serif}P{FONT-SIZE:10pt;FONT-FAMILY:Verdana,Arial,Helvetica,Tahoma,sans-serif}
.text{FONT-WEIGHT:normal;FONT-SIZE:10pt;COLOR:#000000;FONT-FAMILY:Verdana,Arial,Helvetica,Tahoma,sans-serif}H3{FONT-WEIGHT:bold;FONT-SIZE:12pt;COLOR:#8f0000;FONT-FAMILY:Arial;TEXT-ALIGN:center}H4{FONT-WEIGHT:bold;FONT-SIZE:11pt;MARGIN-BOTTOM:5px;COLOR:#8f0000;FONT-FAMILY:Arial}H5{MARGIN-TOP:0px;FONT-WEIGHT:bold;FONT-SIZE:11pt;MARGIN-BOTTOM:0px;COLOR:#4f0000;FONT-FAMILY:Arial}H6{FONT-WEIGHT:bold;FONT-SIZE:10pt;MARGIN-BOTTOM:0px;COLOR:black;FONT-FAMILY:Verdana}H2{FONT-WEIGHT:bold;FONT-SIZE:10pt;MARGIN-BOTTOM:0px;COLOR:#8f0000;FONT-FAMILY:Verdana}A{font-weight:bold;COLOR:#003388;TEXT-DECORATION:none;}A:visited{font-weight:bold;COLOR:#003388;TEXT-DECORATION:none;}A:active{COLOR:#6f0000}A:hover{COLOR:#0066ff}
.date{FONT-WEIGHT:normal;FONT-SIZE:8pt;COLOR:#007000;FONT-FAMILY:Courier;TEXT-DECORATION:none}
.date2{FONT-WEIGHT:normal;FONT-SIZE:8pt;COLOR:#007000;FONT-FAMILY:Courier;BACKGROUND-COLOR:#00ffaa;TEXT-DECORATION:none}
.sysdate{FONT-WEIGHT:normal;FONT-SIZE:8pt;COLOR:#b00000;FONT-FAMILY:Courier;TEXT-DECORATION:none}
.private{FONT-WEIGHT:bold;COLOR:red;BACKGROUND-COLOR:#fae0e0}A.private{FONT-WEIGHT:bold;COLOR:red;BACKGROUND-COLOR:#fae0e0}A.private:hover{FONT-WEIGHT:bold;COLOR:red;BACKGROUND-COLOR:#fae0e0}A.private:visited{FONT-WEIGHT:bold;COLOR:red;BACKGROUND-COLOR:#fae0e0}A.private:active{FONT-WEIGHT:bold;COLOR:red;BACKGROUND-COLOR:#fae0e0}
.privateklan{FONT-WEIGHT:bold;COLOR:#006600;BACKGROUND-COLOR:#DCFFDB;}A.privateklan{FONT-WEIGHT:bold;COLOR:#006600;BACKGROUND-COLOR:#DCFFDB;}A.privateklan:hover{FONT-WEIGHT:bold;COLOR:#006600;BACKGROUND-COLOR:#DCFFDB;}A.privateklan:visited{FONT-WEIGHT:bold;COLOR:#006600;BACKGROUND-COLOR:#DCFFDB;}A.privateklan:active{FONT-WEIGHT:bold;COLOR:#006600;BACKGROUND-COLOR:#DCFFDB;}
.number{FONT-WEIGHT:bold;FONT-SIZE:11pt;COLOR:#6f0000}
.dsc{FONT-WEIGHT:normal;COLOR:#606060}SELECT{BORDER:#b0b0b0 1pt solid;MARGIN-TOP:1px;FONT-SIZE:10px;MARGIN-BOTTOM:2px;BORDER-LEFT:#b0b0b0 1pt solid;COLOR:#191970;FONT-FAMILY:MS Sans Serif;border-radius:5px;height:20px;min-width:50px;}TEXTAREA{BORDER-RIGHT:#b0b0b0 1pt solid;BORDER-TOP:#b0b0b0 1pt solid;MARGIN-TOP:1px;FONT-SIZE:10px;MARGIN-BOTTOM:2px;BORDER-LEFT:#b0b0b0 1pt solid;COLOR:#191970;BORDER-BOTTOM:#b0b0b0 1pt solid;FONT-FAMILY:MS Sans Serif}INPUT{BORDER-RIGHT:#b0b0b0 1pt solid;BORDER-TOP:#b0b0b0 1pt solid;MARGIN-TOP:1px;FONT-SIZE:16px;MARGIN-BOTTOM:2px;BORDER-LEFT:#b0b0b0 1pt solid;COLOR:#191970;BORDER-BOTTOM:#b0b0b0 1pt solid;FONT-FAMILY:MS Sans Serif;border-radius:5px;}
.ahint{FONT-SIZE:8px;COLOR:#000080;FONT-FAMILY:MS Sans Serif;TEXT-DECORATION:none}#hint2{VISIBILITY:hidden;WIDTH:140px;POSITION:absolute;BACKGROUND-COLOR:#fff6dd;layer-background-color:#FFF6DD}#hint3{VISIBILITY:hidden;WIDTH:240px;POSITION:absolute;BACKGROUND-COLOR:#fff6dd;layer-background-color:#FFF6DD}
.B1{FONT-WEIGHT:bold;COLOR:#6666cc}
.B2{FONT-WEIGHT:bold;COLOR:#b06a00}
.B{FONT-WEIGHT:bold;}IMG{BORDER-RIGHT:0px;BORDER-TOP:0px;BORDER-LEFT:0px;BORDER-BOTTOM:0px}TABLE{BORDER-RIGHT:0px;BORDER-TOP:0px;BORDER-LEFT:0px;BORDER-BOTTOM:0px}
.btn_white{display:inline-block;font-size:10px;font-weight:normal;background:#fff;padding:0 11px;height:16px;border:1px solid #B0B0B0;border-radius:2px;}*+html .btn_white{zoom:1;display:inline;}input.btn_white{padding:0 10px 2px;height:20px;cursor:pointer;line-height:18px;font-size:10px;}
.btn{height:26px;display:inline-block;padding:2px 12px;margin-bottom:0;*margin-left:.3em;font-size:14px;font-family:Arial;line-height:20px;color:#333333;text-align:center;text-shadow:0 1px 1px rgba(255,255,255,0.75);vertical-align:middle;cursor:pointer;background-color:#f5f5f5;*background-color:#e6e6e6;background-image:-moz-linear-gradient(top,#ffffff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ffffff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#ffffff,#e6e6e6);background-image:-o-linear-gradient(top,#ffffff,#e6e6e6);background-image:linear-gradient(to bottom,#ffffff,#e6e6e6);background-repeat:repeat-x;border:1px solid #cccccc;*border:0;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);*zoom:1;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);font-weight:normal;}
.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;}
.btn:active,.btn.active{background-color:#cccccc \9;}
.btn:first-child{*margin-left:0;}
.btn:hover,.btn:focus{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;}
.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);}
.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
.ahint{font-family:MS Sans Serif;font-size:8px;text-decoration:none;color:#000080;z-index:99;}#hint2{position:absolute;width:140;background-color:#FFF6DD;layer-background-color:#FFF6DD;visibility:hidden}#hint3{position:absolute;width:240;background-color:#FFF6DD;layer-background-color:#FFF6DD;visibility:hidden}#hint4{position:absolute;width:240;visibility:hidden}
.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75);}
.btn-danger{color:#ffffff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;*background-color:#bd362f;background-image:-moz-linear-gradient(top,#ee5f5b,#bd362f);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#bd362f));background-image:-webkit-linear-gradient(top,#ee5f5b,#bd362f);background-image:-o-linear-gradient(top,#ee5f5b,#bd362f);background-image:linear-gradient(to bottom,#ee5f5b,#bd362f);background-repeat:repeat-x;border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffbd362f',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);}
.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#ffffff;background-color:#bd362f;*background-color:#a9302a;}
.btn-danger:active,.btn-danger.active{background-color:#942a25 \9;}
.btn-success{color:#ffffff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;*background-color:#51a351;background-image:-moz-linear-gradient(top,#62c462,#51a351);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#51a351));background-image:-webkit-linear-gradient(top,#62c462,#51a351);background-image:-o-linear-gradient(top,#62c462,#51a351);background-image:linear-gradient(to bottom,#62c462,#51a351);background-repeat:repeat-x;border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff51a351',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);}
.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#ffffff;background-color:#51a351;*background-color:#499249;}
.btn-success:active,.btn-success.active{background-color:#408140 \9;}
.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75);}
.btn-primary{color:#ffffff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;*background-color:#0044cc;background-image:-moz-linear-gradient(top,#0088cc,#0044cc);background-image:-webkit-gradient(linear,0 0,0 100%,from(#0088cc),to(#0044cc));background-image:-webkit-linear-gradient(top,#0088cc,#0044cc);background-image:-o-linear-gradient(top,#0088cc,#0044cc);background-image:linear-gradient(to bottom,#0088cc,#0044cc);background-repeat:repeat-x;border-color:#0044cc #0044cc #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0044cc',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);}
.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#ffffff;background-color:#0044cc;*background-color:#003bb3;}
.btn-primary:active,.btn-primary.active{background-color:#003399 \9;}
.btn-inverse{color:#ffffff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;*background-color:#222222;background-image:-moz-linear-gradient(top,#444444,#222222);background-image:-webkit-gradient(linear,0 0,0 100%,from(#444444),to(#222222));background-image:-webkit-linear-gradient(top,#444444,#222222);background-image:-o-linear-gradient(top,#444444,#222222);background-image:linear-gradient(to bottom,#444444,#222222);background-repeat:repeat-x;border-color:#222222 #222222 #000000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444',endColorstr='#ff222222',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);}
.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#ffffff;background-color:#222222;*background-color:#151515;}
.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;}
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 654 KiB

+12
View File
@@ -0,0 +1,12 @@
@charset "windows-1251";
/* CSS Document */
body{margin:0px 1px 0px 1px;padding:0px 1px 0px 1px;background-color:#dedede;color:#000000;}
.main_text{font-weight:bold;font-size:10px;text-decoration:none;color:#f0f0f0;cursor:hand;}
.menutop,a.menutop:visited,a.menutop:active{font-weight:bold;font-size:10px;text-decoration:none;color:#3B3936;}a.menutop:hover{color:#76726b;}
.name{font-weight:bold;font-size:12px;}
.parametr_title{font-weight:bold;font-size:11px;color:#777773;}
.prname{padding-left:4px;font-size:11px;font-family:Arial,Helvetica,sans-serif;}
.prvalue{font-size:11px;font-family:Arial,Helvetica,sans-serif;}
.mainmenu{color:#23292C;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:none;border-bottom-style:solid;border-left-style:solid;border-top-color:#969697;border-right-color:#969697;border-bottom-color:#000000;border-left-color:#969697;background-color:#BABABB;cursor:hand;}
.maptext{font-weight:bold;font-size:12px;color:#000000;font-family:Arial,Helvetica,sans-serif;}
.posit{border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:#FFFFFF;border-right-color:#666666;border-bottom-color:#666666;border-left-color:#FFFFFF;padding:2px;}td{font-size:10pt;font-family:Verdana,Arial,Helvetica,Tahoma,sans-serif;}

Some files were not shown because too many files have changed in this diff Show More