Commit 89de3228b99f0d629444b411f42e2a27bc857ded
+ FULL fix наложеный платеж
@@ -34,9 +34,7 @@ include_once ($_SERVER['DOCUMENT_ROOT'] . "/account/func/func.php"); | @@ -34,9 +34,7 @@ include_once ($_SERVER['DOCUMENT_ROOT'] . "/account/func/func.php"); | ||
34 | // ================= | 34 | // ================= |
35 | // ==== status ===== | 35 | // ==== status ===== |
36 | // ================= | 36 | // ================= |
37 | - | ||
38 | - // print_r($_POST); | ||
39 | - // exit; | 37 | + |
40 | if ((isset ($_POST['action']) && $_POST['action'] == 'status') || trim ($_POST['status']) != '') | 38 | if ((isset ($_POST['action']) && $_POST['action'] == 'status') || trim ($_POST['status']) != '') |
41 | { | 39 | { |
42 | 40 | ||
@@ -67,7 +65,7 @@ include_once ($_SERVER['DOCUMENT_ROOT'] . "/account/func/func.php"); | @@ -67,7 +65,7 @@ include_once ($_SERVER['DOCUMENT_ROOT'] . "/account/func/func.php"); | ||
67 | } | 65 | } |
68 | elseif (isset ($_POST['send']) && $_POST['send'] == 'edit-order') | 66 | elseif (isset ($_POST['send']) && $_POST['send'] == 'edit-order') |
69 | { | 67 | { |
70 | - | 68 | + |
71 | $error = ''; | 69 | $error = ''; |
72 | $error[] = ValidFormData ($_POST['user']['email'], 'email', 'email'); | 70 | $error[] = ValidFormData ($_POST['user']['email'], 'email', 'email'); |
73 | $error[] = ValidFormData ($_POST['user']['city'], 'ãîðîä', 'require'); | 71 | $error[] = ValidFormData ($_POST['user']['city'], 'ãîðîä', 'require'); |
@@ -1404,31 +1402,45 @@ if (! isset ($_GET['action'])) | @@ -1404,31 +1402,45 @@ if (! isset ($_GET['action'])) | ||
1404 | 1402 | ||
1405 | echo "<label>Ñòðàõîâêà:</label> | 1403 | echo "<label>Ñòðàõîâêà:</label> |
1406 | <div class=info><input type='text' name='user[insurance]' style='width:300px;' class=\"validate[required]\" value='" . $order['insurance'] . "' id='insuranceValidate'></div>"; | 1404 | <div class=info><input type='text' name='user[insurance]' style='width:300px;' class=\"validate[required]\" value='" . $order['insurance'] . "' id='insuranceValidate'></div>"; |
1405 | + | ||
1407 | $sumn_disabled = ""; | 1406 | $sumn_disabled = ""; |
1408 | if ($_SESSION['admin']['id'] == 22 || $_SESSION['admin']['id'] == 7 || $_SESSION['admin']['id'] == 1 || $_SESSION['admin']['id'] == 19) | 1407 | if ($_SESSION['admin']['id'] == 22 || $_SESSION['admin']['id'] == 7 || $_SESSION['admin']['id'] == 1 || $_SESSION['admin']['id'] == 19) |
1409 | $sumn_disabled = ""; | 1408 | $sumn_disabled = ""; |
1410 | else | 1409 | else |
1411 | $sumn_disabled = "disabled"; | 1410 | $sumn_disabled = "disabled"; |
1412 | - echo "<label>Ñóììà íàëîæåííîãî:</label> | ||
1413 | - <div class=info><input type='text' name='user[sumn]' style='width:300px;' class=\"validate[required]\" value='" . $order['sumn'] . "' id='sumnValidate' $sumn_disabled></div><br />"; | ||
1414 | - $array_method = array ( | ||
1415 | - "Ïîëó÷àòåëÿ", | ||
1416 | - "Îòïðàâèòåëÿ" | ||
1417 | - ); | ||
1418 | - echo " | ||
1419 | - <div class=info> | ||
1420 | - <label>Îòïðàâêà çà ñ÷åò:</label> | ||
1421 | - <select name='user[sends]' style='width:300px'><option value=''></option>"; | ||
1422 | - foreach ($array_method as $method) | 1411 | + |
1412 | + echo " | ||
1413 | + <label>Ñóììà íàëîæåííîãî:</label> | ||
1414 | + <div class=info> | ||
1415 | + <input type='text' name='user[sumn]' style='width:300px;' class=\"validate[required]\" value='" . $order['sumn'] . "' id='sumnValidate' $sumn_disabled>"; | ||
1416 | + | ||
1417 | + if ($sumn_disabled != '') | ||
1423 | { | 1418 | { |
1424 | - echo '<option value="' . $method . '" '; | ||
1425 | - if ($order['sends'] == $method) | ||
1426 | - echo 'selected'; | ||
1427 | - echo '>' . $method . '</option>'; | 1419 | + echo "<input type='hidden' name='user[sumn]' style='width:300px;' class=\"validate[required]\" value='" . $order['sumn'] . "' id='sumnValidate'>"; |
1428 | } | 1420 | } |
1429 | - echo "</select> | 1421 | + |
1422 | + echo " | ||
1423 | + </div><br /> | ||
1424 | + <div class=info> | ||
1425 | + <label>Îòïðàâêà çà ñ÷åò:</label> | ||
1426 | + <select name='user[sends]' style='width:300px'> | ||
1427 | + <option value=''></option>"; | ||
1428 | + | ||
1429 | + // àõàõà | ||
1430 | + foreach ( | ||
1431 | + array ( | ||
1432 | + "Ïîëó÷àòåëÿ", | ||
1433 | + "Îòïðàâèòåëÿ" | ||
1434 | + ) as $method) | ||
1435 | + { | ||
1436 | + echo '<option value="' . $method . '" '.($order['sends'] == $method ? 'selected' : '').'>' . $method . '</option>'; | ||
1437 | + } | ||
1438 | + | ||
1439 | + echo " | ||
1440 | + </select> | ||
1430 | </div>"; | 1441 | </div>"; |
1431 | - echo "<label>Ãîðîä:</label> | 1442 | + |
1443 | + echo "<label>Ãîðîä:</label> | ||
1432 | <div class=info><input type='text' name='user[city]' style='width:300px;' class=\"validate[required]\" value='" . $order['city'] . "' id='cityValidate'></div> | 1444 | <div class=info><input type='text' name='user[city]' style='width:300px;' class=\"validate[required]\" value='" . $order['city'] . "' id='cityValidate'></div> |
1433 | 1445 | ||
1434 | <label>Àäðåñ:</label> | 1446 | <label>Àäðåñ:</label> |
@@ -1446,27 +1458,53 @@ if (! isset ($_GET['action'])) | @@ -1446,27 +1458,53 @@ if (! isset ($_GET['action'])) | ||
1446 | $disabled = "disabled"; | 1458 | $disabled = "disabled"; |
1447 | } | 1459 | } |
1448 | } | 1460 | } |
1449 | - // print_r($_SESSION['admin']['group']); | ||
1450 | - echo " | ||
1451 | - <label>Ìåíåäæåð:</label> | ||
1452 | - <div class=info><select name='meneger' $disabled> | ||
1453 | - <option value='0' " . (($_SESSION['admin']['group'] != 1) ? 'disabled' : '') . "></option>"; | ||
1454 | 1461 | ||
1455 | - $selected = ($order['meneger'] > 0) ? $order['meneger'] : $_SESSION['admin']['id']; | 1462 | + // ==== Ìåíåäæåð ==== |
1456 | 1463 | ||
1457 | - $result_1 = mysql_query ("select * from zlo_admin"); | ||
1458 | - while ($row = mysql_fetch_assoc ($result_1)) | ||
1459 | - { | ||
1460 | - echo "<option value='" . $row["id"] . "' " . (($selected == $row["id"]) ? 'selected' : '') . " " . (($_SESSION['admin']['group'] != 1 && $selected != $row["id"]) ? 'disabled' : '') . ">" . $row["username"] . "</option>"; | ||
1461 | - } | ||
1462 | - echo "</select>"; | ||
1463 | - if ($disabled == "disabled") | 1464 | + $disabled = ""; |
1465 | + | ||
1466 | + if ($_SESSION['admin']['group'] != 1) | ||
1464 | { | 1467 | { |
1465 | - echo "<input type='hidden' name='meneger' value='" . $order['meneger'] . "'>"; | 1468 | + $disabled = "disabled"; |
1466 | } | 1469 | } |
1470 | + | ||
1471 | + echo " | ||
1472 | + <label>Ìåíåäæåð:</label> | ||
1473 | + <div class=info> | ||
1474 | + <select name='meneger'>"; | ||
1475 | + | ||
1476 | + $mass_manager = array (); | ||
1477 | + | ||
1478 | + $result_1 = mysql_query ("select * from zlo_admin"); | ||
1479 | + while ($row = mysql_fetch_assoc ($result_1)) | ||
1480 | + { | ||
1481 | + if ($order['meneger'] == 0) | ||
1482 | + { | ||
1483 | + $manager_id = $_SESSION['admin']['id']; | ||
1484 | + $disabled = $row["id"] != $manager_id ? 'disabled' : ''; | ||
1485 | + } | ||
1486 | + else | ||
1487 | + { | ||
1488 | + $manager_id = $order['meneger']; | ||
1489 | + $disabled = 'disabled'; | ||
1490 | + } | ||
1491 | + | ||
1492 | + if ($manager_id == $row["id"] || $_SESSION['admin']['group'] == 1) | ||
1493 | + { | ||
1494 | + $disabled = ''; | ||
1495 | + } | ||
1496 | + | ||
1497 | + echo "<option value='" . $row["id"] . "' " . ($manager_id == $row["id"] ? 'selected' : '') . " ".$disabled.">" . $row["username"] . "</option>"; | ||
1498 | + } | ||
1499 | + | ||
1500 | + echo "</select>"; | ||
1501 | + | ||
1467 | echo "</div>"; | 1502 | echo "</div>"; |
1468 | 1503 | ||
1504 | + // ==== ×åê ==== | ||
1505 | + | ||
1469 | $disabled = ""; | 1506 | $disabled = ""; |
1507 | + | ||
1470 | if ($_SESSION['admin']['id'] != 7 and $_SESSION['admin']['id'] != 17) | 1508 | if ($_SESSION['admin']['id'] != 7 and $_SESSION['admin']['id'] != 17) |
1471 | { | 1509 | { |
1472 | $disabled = "disabled"; | 1510 | $disabled = "disabled"; |
2.59 KB
126 KB
14.6 KB
206 Bytes
82.9 KB
332 Bytes
1.89 KB
3.75 KB
3.75 KB
3.63 KB
1.37 KB
695 Bytes
1010 Bytes
744 Bytes
313 Bytes
609 Bytes
386 Bytes
3.27 KB
799 Bytes
387 Bytes
798 Bytes
786 Bytes
381 Bytes
788 Bytes
391 Bytes
5.42 KB
323 Bytes
328 Bytes
329 Bytes
330 Bytes
137 Bytes
508 Bytes
102 Bytes
519 Bytes
135 Bytes
546 Bytes
101 Bytes
551 Bytes
3.86 KB
693 Bytes
3.86 KB
4.03 KB
476 Bytes
23.7 KB
29.6 KB
26.6 KB
27.4 KB
16 KB
162 Bytes
9.24 KB
155 Bytes
5.84 KB
152 Bytes
696 Bytes
58 Bytes
10.7 KB
467 Bytes
601 Bytes
1.08 KB
317 Bytes
325 Bytes
330 Bytes
323 Bytes
3.78 KB
3.78 KB
1010 Bytes
532 Bytes
350 Bytes
16.4 KB
71 Bytes
2.44 KB
2.24 KB
138 Bytes
3.53 KB
7.76 KB
6.6 KB
533 Bytes
1.6 KB
698 Bytes
1.08 KB
946 Bytes
1.06 KB
701 Bytes
1.16 KB
434 Bytes
1.19 KB
1.5 KB
1.31 KB
1.65 KB
1.22 KB
2 KB
1.56 KB
1.32 KB
1.58 KB
1.65 KB
249 Bytes
304 Bytes
236 KB
52.9 KB
85.3 KB
84.4 KB
113 KB
708 Bytes
44.6 KB
8.64 KB
1.03 KB
1.02 KB
489 Bytes
432 Bytes
322 Bytes
303 Bytes
3.9 KB
304 Bytes
3.62 KB
3.79 KB
3.62 KB
3.62 KB
699 Bytes
2.03 KB
1.68 KB
1.82 KB
15.1 KB
3.79 KB
3.94 KB
11.5 KB
15.1 KB
1.33 KB
321 Bytes
331 Bytes
341 Bytes
698 Bytes
867 Bytes
931 Bytes
738 Bytes
630 Bytes
713 Bytes
922 Bytes
866 Bytes
871 Bytes
1.05 KB
1.01 KB
754 Bytes
690 Bytes
1.06 KB
976 Bytes
875 Bytes
2.29 KB
912 Bytes
689 Bytes
2.97 KB
3.2 KB
417 Bytes
405 Bytes
3.66 KB
3.67 KB
698 Bytes
3.61 KB
331 Bytes
3.9 KB
855 Bytes
3.89 KB
837 Bytes
699 Bytes
528 Bytes
525 Bytes
43 Bytes
1.23 KB
71.2 KB
26.7 KB
34.7 KB
429 KB
532 Bytes
3.93 KB
3.67 KB
3.46 KB
4.03 KB
4.03 KB
2.4 KB
3.74 KB
3.33 KB
5.1 KB
4.34 KB
2.43 KB
2.38 KB
2.07 KB
5.05 KB
3.87 KB
1.08 KB
36.8 KB
25.9 KB
237 KB
316 Bytes
43 Bytes
309 Bytes
380 Bytes
377 Bytes
286 Bytes
49 Bytes
3.63 KB
3.63 KB
3.63 KB
329 Bytes
305 Bytes
423 Bytes
275 Bytes
4.87 KB
4.59 KB
78 Bytes
657 Bytes
897 Bytes
1.08 KB
1.08 KB
1.59 KB
1.09 KB
946 KB
30.4 KB
28.3 KB
58.8 KB
822 Bytes
1.86 KB
3.57 KB
993 Bytes
3.99 KB
3.95 KB
3.09 KB
3.06 KB
2.39 KB
2.57 KB
879 Bytes
1.23 KB
12.2 KB
12.3 KB
3.96 KB
24.5 KB
9.5 KB
13.6 KB
2.8 KB
10.8 KB
231 Bytes
236 Bytes
398 Bytes
919 Bytes
1.77 KB
1.16 KB
1 | - div.space-20 {height: 20px;} | ||
2 | - | ||
3 | - div.personal-account div.title {margin-bottom: 20px;} | ||
4 | - div.personal-account div.menu-li {margin: 20px;} | ||
5 | - div.personal-account div.menu-li li {margin: 5px 0;} | ||
6 | - div.personal-account div.account-menu {margin: 20px 0;} | ||
7 | - div.personal-account div.account-menu ul {list-style:none;} | ||
8 | - div.personal-account div.account-menu ul li {margin:4px 0;} | ||
9 | - div.personal-account div.account-menu ul li a {text-decoration:none;} | ||
10 | - div.personal-account fieldset#order-info div.info {padding-top:0;} | ||
11 | - div.personal-account div.order-info-all fieldset#order-info {height:65px;} | ||
12 | - div.personal-account span.welcome { display: block; text-align: center;} | ||
13 | - | ||
14 | - div.account div.box { background:#E7F5FE; margin-bottom: 5px; border-bottom: 4px solid #CDE8FB;} | ||
15 | - div.account div.box li{ background:#E7F5FE; border:none;} | ||
16 | - div.account .title .r { background: url("/account/pic/my_menu.jpg"); } | ||
17 | - | ||
18 | - div.print {margin-bottom: 40px; font-size: 12px;} | ||
19 | - div.print div.client table{font-weight:bold;font-size: 12px;} | ||
20 | - div.print div.details table {margin:10px 5px;font-size: 12px;} | ||
21 | - div.print span.total {margin:10px 5px;font-weight:bold;font-size: 14px;} | ||
22 | - div.print div.separator {border-bottom:4px dotted #a1a1a1; width:100%; display:block;} | ||
23 | - | ||
24 | - | ||
25 | - /* ================================== */ | ||
26 | - /* ========== FlySearch ============= */ | ||
27 | - /* ================================== */ | ||
28 | - | ||
29 | - #pass2check_alert { | ||
30 | - border: 1px solid red; | ||
31 | - margin: -28px 365px 0; | ||
32 | - padding: 8px; | ||
33 | - position: absolute; | ||
34 | - } | ||
35 | - | ||
36 | - div.result { | ||
37 | - float: left; | ||
38 | - margin: 0 30px; | ||
39 | - } | ||
40 | - | ||
41 | - div.result .present { | ||
42 | - padding: 5px 0; | ||
43 | - text-align: center; | ||
44 | - width: 100px; | ||
45 | - border: 1px solid green; | ||
46 | - color: green; | ||
47 | - } | ||
48 | - | ||
49 | - div.result .absent { | ||
50 | - padding: 5px 0; | ||
51 | - text-align: center; | ||
52 | - width: 100px; | ||
53 | - border: 1px solid red; | ||
54 | - color: red; | ||
55 | - } | ||
56 | - | ||
57 | - div.livesearch-block { | ||
58 | - margin-left: -8px; | ||
59 | - margin-top: -4px; | ||
60 | - position: absolute; | ||
61 | - } | ||
62 | - div.livesearch-email-block, | ||
63 | - div.livesearch-tel-block { | ||
64 | - margin-left: 81px; | ||
65 | - margin-top: -4px; | ||
66 | - position: absolute; | ||
67 | - } | ||
68 | - form#info fieldset div.row div.livesearch-email-block, | ||
69 | - form#info fieldset div.row div.livesearch-tel-block { | ||
70 | - margin-left: 121px; | ||
71 | - margin-top: 24px; | ||
72 | - position: absolute; | ||
73 | - } | ||
74 | - | ||
75 | - | ||
76 | - div.alert-search { | ||
77 | - background: none repeat scroll 0 0 #FFFFFF; | ||
78 | - border: 1px solid red; | ||
79 | - display: block; | ||
80 | - font-weight: bold; | ||
81 | - padding: 5px; | ||
82 | - width: 100%; | ||
83 | - } | ||
84 | - | ||
85 | - #alert-search-client { | ||
86 | - background: none repeat scroll 0 0 #FFFFFF; | ||
87 | - border: 1px solid red; | ||
88 | - display: block; | ||
89 | - font-weight: bold; | ||
90 | - margin: -20px 0 0 235px; | ||
91 | - padding: 5px; | ||
92 | - position: absolute; | ||
93 | - width: 100px; | ||
94 | - } | ||
95 | - | ||
96 | - div.new_user div.info form#info div.livesearch-email-block div#livesearch-email-list div#alert-search-client, | ||
97 | - div.new_user div.info form#info div.livesearch-tel-block div#livesearch-tel-list div#alert-search-client { | ||
98 | - margin: -25px 0 0 345px; | ||
99 | - } | ||
100 | - div.new_user div.info form#info fieldset div.row div.title, | ||
101 | - td.content_site div.info form#info fieldset div.row div.title | ||
102 | - {width:650px;height:31px;line-height:31px;background:#5DB843 url('/img/title.jpg');color:#ffffff;text-align:center;font-size:12px;text-transform: uppercase;font-weight:bold;text-decoration:none;} | ||
103 | - | ||
104 | - div.order-info-all fieldset#order-info {width:300px;display: table-cell; height:100px; vertical-align:top;float: left;} | ||
105 | - | ||
106 | - div.order-info-all fieldset#order-info div.info { | ||
107 | - word-wrap: break-word; | ||
108 | - float: right; | ||
109 | - width: 220px; | ||
110 | - } | ||
111 | - | ||
112 | - | ||
113 | - form#add-item #line0 {display:none;} | ||
114 | - form#add-item div.table {margin-bottom:5px;} | ||
115 | - form#add-item div.table div {float:left; width:70px; padding: 1px 4px;font-weight: bold;} | ||
116 | - form#add-item div.row div {float:left; width:70px; padding: 1px 4px;} | ||
117 | - | ||
118 | - form#add-item div.table div {display: table-cell;} | ||
119 | - form#add-item div div.count {width:20px;} | ||
120 | - form#add-item div.table div.code, | ||
121 | - form#add-item div.row div.code, | ||
122 | - form#add-item div.code input {width:130px;} | ||
123 | - form#add-item div.product_id {width:60px;} | ||
124 | - form#add-item div.mod_id {width:80px;} | ||
125 | - form#add-item div.brand {width:65px;} | ||
126 | - form#add-item div.table div.title, | ||
127 | - form#add-item div.row div.title, | ||
128 | - form#add-item div.title input {width:150px;} | ||
129 | - form#add-item div.table div.quant, | ||
130 | - form#add-item div.row div.quant, | ||
131 | - form#add-item div.quant input {width:30px;} | ||
132 | - form#add-item div.price {width:50px;} | ||
133 | - form#add-item div.total {width:70px;} | ||
134 | - form#add-item div.control {width:40px;} | ||
135 | - | ||
136 | - form#add-item div.report {display:block; padding:8px 50px 8px 0; font-weight: bold; clear:both; text-align: right;} | ||
137 | - form#add-item div div.clear {width:100%;} | ||
138 | - /* ================================== */ | ||
139 | - /* ============ signup ============== */ | ||
140 | - /* ================================== */ | ||
141 | - | ||
142 | - div.index { | ||
143 | - background: #FFFFFF; | ||
144 | - float: right; | ||
145 | - position: fixed; | ||
146 | - right: -500px; | ||
147 | - top: 200px; | ||
148 | - } | ||
149 | - | ||
150 | - | ||
151 | - div.signup { | ||
152 | - height: 150px; | ||
153 | - width: 540px; | ||
154 | - -moz-box-shadow:5px 5px 10px #000000; | ||
155 | - -webkit-box-shadow: 5px 5px 10px #000000; | ||
156 | - box-shadow:5px 5px 10px #000000; | ||
157 | - list-style:none; | ||
158 | - } | ||
159 | - | ||
160 | - div.signup div.col-1 {background:url('/account/pic/label.jpg'); width:40px; height:150px; float: left; margin-right:20px;cursor: pointer; } | ||
161 | - div.signup div.col-2 {float: left; padding-top:20px; width:210px;} | ||
162 | - div.signup div.col-3 {padding-top: 40px;text-align: center;} | ||
163 | - div.col-3 span.remind { display: block; text-transform: lowercase; margin-bottom: 15px;} | ||
164 | - div.signup div.col-2 label {display:block;} | ||
165 | - div.signup div.col-2 input {display:block;} | ||
166 | - | ||
167 | - div.signup div.col-2 div.buttons { margin-top: 10px; } | ||
168 | - #ok, #cancel { | ||
169 | - width:86px; | ||
170 | - height:26px; | ||
171 | - float:left; | ||
172 | - cursor:pointer; | ||
173 | - } | ||
174 | - #ok {background:url('/account/pic/ok.png');} | ||
175 | - #cancel {margin-left:5px;background:url('/account/pic/cancel.png');} | ||
176 | - div.signup div.col-3 span.noaccount {font-size: 14px; margin-left: 10px;} | ||
177 | - div.signup div.col-3 span.registration {font-size: 16px;display: block;} | ||
178 | - | ||
179 | - /* ================================== */ | ||
180 | - /* ==== registration & info FORM ==== */ | ||
181 | - /* ================================== */ | ||
182 | - | ||
183 | - div.window div.col-1 {float: left; width: 190px;} | ||
184 | - div.window div.col-2 {border: 0 none; float: left; width: 775px;} | ||
185 | - div.window div.info { border: 0 none; margin: 0 auto; width: 490px;} | ||
186 | - | ||
187 | - div.registration {width:600px; margin:20px auto 0;} | ||
188 | - | ||
189 | - form#registration fieldset, | ||
190 | - form#info fieldset {border:0;} | ||
191 | - | ||
192 | - form#registration div.optional, | ||
193 | - form#registration div.need, | ||
194 | - form#info div.row {height: 50px;} | ||
195 | - form#registration div.registration div.optional textarea#address {width: 228px;} | ||
196 | - | ||
197 | - form#registration label, | ||
198 | - form#info label { float: left; text-align: right; width: 110px; margin-right:10px;} | ||
199 | - | ||
200 | - form#registration div.row input, | ||
201 | - form#registration div.row textarea, | ||
202 | - form#info div.row input, | ||
203 | - form#info div.row textarea { float: left; width: 340px;} | ||
204 | - | ||
205 | - form#info fieldset div.row input#email { | ||
206 | - background: none repeat scroll 0 0 transparent; | ||
207 | - border: medium none; | ||
208 | - color: #3C3C3C; | ||
209 | - margin-top: -2px; | ||
210 | - } | ||
211 | - | ||
212 | - #order_email { | ||
213 | - display: block; | ||
214 | - padding: 10px 0 0; | ||
215 | - } | ||
216 | - span#order_email input { | ||
217 | - border: medium none; | ||
218 | - } | ||
219 | - | ||
220 | - form#registration div.row textarea, | ||
221 | - form#info div.row textarea { float: none; } | ||
222 | - | ||
223 | - form#registration div.choice input, | ||
224 | - form#info div.choice input {width:auto; float:none;} | ||
225 | - | ||
226 | - form#registration div.column, | ||
227 | - form#info div.column {float:left; min-width:150px;} | ||
228 | - | ||
229 | - form#registration div.controls input, | ||
230 | - form#info div.row div.button input {width:auto;} | ||
231 | - | ||
232 | - form#registration div.choice, | ||
233 | - form#info div.choice {display: block;margin-bottom: 10px;} | ||
234 | - form#registration div.interest {margin-top:20px;} | ||
235 | - form#registration div.email, div.info div.email { | ||
236 | - margin-left: 350px; | ||
237 | - margin-top: -50px; | ||
238 | - position: absolute; | ||
239 | - } | ||
240 | - | ||
241 | - div.interest-block div.common, | ||
242 | - div.interest-block div.interst {padding-left: 60px;} | ||
243 | - div.interest-block div.title {margin-top:20px;} | ||
244 | - div.interest-block div.th {font-weight: bold;display:block; padding-bottom:6px;} | ||
245 | - div.interest-block span { padding-bottom:6px;display: table-cell;} | ||
246 | - | ||
247 | - div.new_user div.info form#info fieldset div.interest, | ||
248 | - td.content_site div.info form#info fieldset div.interest {padding-left: 115px;} | ||
249 | - | ||
250 | - form#info div.line, | ||
251 | - form#registration div.line { | ||
252 | - border-bottom: 1px solid #ADADAF; | ||
253 | - margin: 5px; | ||
254 | - width: 100%; | ||
255 | - } | ||
256 | - | ||
257 | - div.info div.email {margin-left: 350px; margin-top: -50px; position: absolute;} | ||
258 | - | ||
259 | - /* ================================== */ | ||
260 | - /* ============= message============= */ | ||
261 | - /* ================================== */ | ||
262 | - | ||
263 | - div.message table {border-collapse:collapse;} | ||
264 | - div.message table tbody tr {margin:2px 0;} | ||
265 | - div.message table tr, | ||
266 | - div.message table td {border:none; } | ||
267 | - div.message table tr {height:14px; overflow:hidden; border:none;} | ||
268 | - div.message .num { padding:3px 4px;} | ||
269 | - div.message .from, | ||
270 | - div.message .to { width:150px;} | ||
271 | - | ||
272 | - div.message .date { padding: 0 5px;} | ||
273 | - div.message .date a { text-decoration:none;} | ||
274 | - div.message .text { width:300px;} | ||
275 | - | ||
276 | - div.message .marked {background:#e1e1e1;} | ||
277 | - div.message .unread-by-admin {color:black;background-color: #D3DCE3; border:solid 1px red;} | ||
278 | - div.message .unread-by-user { color: #B1B1B1;} | ||
279 | - | ||
280 | - div.message div.text-full form div.date, | ||
281 | - div.message div.text-full form div.to { margin: 5px 0; padding:0;} | ||
282 | - | ||
283 | - div.message div.text-full .from {margin: 5px; } | ||
284 | - div.message div.text-full .text { | ||
285 | - border:2px solid #0F7AD8; | ||
286 | - width:600px; | ||
287 | - padding:8px; | ||
288 | - color:#fff; | ||
289 | - background: #a9e4f7; /* Old browsers */ | ||
290 | - /* IE9 SVG, needs conditional override of 'filter' to 'none' */ | ||
291 | - background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2E5ZTRmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwZmI0ZTciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); | ||
292 | - background: -moz-linear-gradient(top, #a9e4f7 0%, #0fb4e7 100%); /* FF3.6+ */ | ||
293 | - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a9e4f7), color-stop(100%,#0fb4e7)); /* Chrome,Safari4+ */ | ||
294 | - background: -webkit-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Chrome10+,Safari5.1+ */ | ||
295 | - background: -o-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Opera 11.10+ */ | ||
296 | - background: -ms-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* IE10+ */ | ||
297 | - background: linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* W3C */ | ||
298 | - | ||
299 | - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=0 ); /* IE6-8 */ | ||
300 | - | ||
301 | - -webkit-border-radius: 10px; | ||
302 | - -moz-border-radius: 10px; | ||
303 | - border-radius: 10px; | ||
304 | - text-shadow: 1px 1px 2px #000000; | ||
305 | - filter: dropshadow(color=#000000, offx=1, offy=1); | ||
306 | - } | ||
307 | - | ||
308 | - | ||
309 | - div.button-del {cursor: pointer; float: left; margin-right:5px;} | ||
310 | - div.controls div.button-del {cursor: pointer; float: right; margin-right:5px;} | ||
311 | - | ||
312 | - | ||
313 | - /* ================================== */ | ||
314 | - /* ============ orders ============== */ | ||
315 | - /* ================================== */ | ||
316 | - | ||
317 | - div.grid-search {float: left;padding-bottom: 15px;} | ||
318 | - div.grid-search div.search {float:left;} | ||
319 | - div.grid-search div.dates {float:left;} | ||
320 | - div.grid-search div.dates div.row {float:left;} | ||
321 | - div.grid-search div.dates div.row input {width: 90px;} | ||
322 | - | ||
323 | - div.order-tabs {padding: 0 0 40px 10px;} | ||
324 | - | ||
325 | - .status-tabs { | ||
326 | - cursor:pointer; | ||
327 | - margin: 0 5px; | ||
328 | - padding: 8px; | ||
329 | - float:left; | ||
330 | - font-family: Arial, Helvetica, sans-serif; | ||
331 | - font-size: 12px; | ||
332 | - color: #1569a5; | ||
333 | - padding: 5px 9px; | ||
334 | - background: -moz-linear-gradient( | ||
335 | - top, | ||
336 | - #ffffff 0%, | ||
337 | - #ffffff 50%, | ||
338 | - #b5b5b5); | ||
339 | - background: -webkit-gradient( | ||
340 | - linear, left top, left bottom, | ||
341 | - from(#ffffff), | ||
342 | - color-stop(0.50, #ffffff), | ||
343 | - to(#b5b5b5)); | ||
344 | - border-radius: 10px; | ||
345 | - -moz-border-radius: 10px; | ||
346 | - -webkit-border-radius: 10px; | ||
347 | - border: 2px solid #1569a5; | ||
348 | - -moz-box-shadow: | ||
349 | - 0px 1px 3px rgba(000,000,000,0.5), | ||
350 | - inset 0px 0px 3px rgba(255,255,255,1); | ||
351 | - -webkit-box-shadow: | ||
352 | - 0px 1px 3px rgba(000,000,000,0.5), | ||
353 | - inset 0px 0px 3px rgba(255,255,255,1); | ||
354 | - text-shadow: | ||
355 | - 0px -1px 0px rgba(000,000,000,0.2), | ||
356 | - 0px 1px 0px rgba(255,255,255,1); | ||
357 | - } | ||
358 | - div.orders { | ||
359 | - border: 1px solid; | ||
360 | - display: table; | ||
361 | - margin: 0 10px 50px; | ||
362 | - padding: 5px 20px 20px; | ||
363 | - | ||
364 | - background: #ffffff; /* Old browsers */ | ||
365 | - /* IE9 SVG, needs conditional override of 'filter' to 'none' */ | ||
366 | - background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlNWU1ZTUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); | ||
367 | - background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%); /* FF3.6+ */ | ||
368 | - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */ | ||
369 | - background: -webkit-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */ | ||
370 | - background: -o-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Opera 11.10+ */ | ||
371 | - background: -ms-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* IE10+ */ | ||
372 | - background: linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* W3C */ | ||
373 | - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-8 */ | ||
374 | - | ||
375 | - border-radius: 6px; | ||
376 | - -moz-border-radius: 6px; | ||
377 | - -webkit-border-radius: 6px; | ||
378 | - | ||
379 | - -moz-box-shadow: | ||
380 | - 0px 1px 3px rgba(014,051,080,0.5), | ||
381 | - inset 0px 0px 1px rgba(255,255,255,1); | ||
382 | - -webkit-box-shadow: | ||
383 | - 0px 1px 3px rgba(014,051,080,0.5), | ||
384 | - inset 0px 0px 1px rgba(255,255,255,1); | ||
385 | - | ||
386 | - } | ||
387 | - fieldset#order-info a.history { margin-left: 80px;} | ||
388 | - | ||
389 | - form#add-item div.orders div.order-info {margin-top:20px;} | ||
390 | - div.orders label {float: left; width: 80px;} | ||
391 | - div.order-details fieldset#order-details {width:623px;} | ||
392 | - fieldset#order-info div.new {margin: 7px 0;} | ||
393 | - | ||
394 | - fieldset#order-details div.col input {width:120px;margin: 0 5px;} | ||
395 | - fieldset#order-details div.col.quant input {width:30px;} | ||
396 | - fieldset#order-details div.col {width:160px; float:left;} | ||
397 | - fieldset#order-details form div.row img {padding-top: 3px;} | ||
398 | - fieldset#order-details b { display: block; margin: 5px;} | ||
399 | - | ||
400 | - #records .button-save, | ||
401 | - #records .button-edit { margin: 0 5px; padding: 5px 10px; font-size:14px;} | ||
402 | - div.pager-pages #show {float: left;padding: 10px 5px;} | ||
403 | - div.orders #PerPage {width: 120px; background: none repeat scroll 0 0 #FFFFFF; | ||
404 | - border: 1px solid #DDDDDD; | ||
405 | - box-shadow: 0 0 4px #AAAAAA; | ||
406 | - color: #555555; | ||
407 | - float: left; | ||
408 | - font-size: 14px; | ||
409 | - padding: 5px; | ||
410 | - } | ||
411 | - .pager-pages { | ||
412 | - margin: 10px 0; | ||
413 | - } | ||
414 | - .pager-pages div { | ||
415 | - float:left; | ||
416 | - } | ||
417 | - .clear { | ||
418 | - clear: both; | ||
419 | - width: 100%; | ||
420 | - } | ||
421 | - | ||
422 | - | ||
423 | - /* ================================== */ | ||
424 | - /* ============ audience ============== */ | ||
425 | - /* ================================== */ | ||
426 | - | ||
427 | - div.audience { margin: 0 auto; width: 50%;} | ||
428 | - div.audience div.title { background:none; text-align:center; padding:5px; color:#a1a1a1;} | ||
429 | - div.audience div.text { padding: 5px 4px;} | ||
430 | - div.audience label { margin-top: 4px;position: absolute;} | ||
431 | - div.audience label span { margin: 0 4px 0 3px;} | ||
432 | - div.audience input[type="checkbox"] { margin-top: 5px;} | ||
433 | - | ||
434 | - .message a.button-add {color:#fff;text-decoration:none;} | ||
435 | - a.button-add, a.button-edit, a.button-save, a.button-send {color:#fff; text-decoration:none; clear:both;} | ||
436 | - .button-add, .button-edit, .button-send, .button-save { | ||
437 | - display: table; | ||
438 | - margin: 5px 0; | ||
439 | - font-family: Arial, Helvetica, sans-serif; | ||
440 | - font-size: 14px; | ||
441 | - color: #FFF; | ||
442 | - padding: 10px 20px; | ||
443 | - background: -moz-linear-gradient( | ||
444 | - top, | ||
445 | - #5098d3 0%, | ||
446 | - #195b91); | ||
447 | - background: -webkit-gradient( | ||
448 | - linear, left top, left bottom, | ||
449 | - from(#5098d3), | ||
450 | - to(#195b91)); | ||
451 | - border-radius: 6px; | ||
452 | - -moz-border-radius: 6px; | ||
453 | - -webkit-border-radius: 6px; | ||
454 | - border: 1px solid #6696ba; | ||
455 | - -moz-box-shadow: | ||
456 | - 0px 1px 3px rgba(014,051,080,0.5), | ||
457 | - inset 0px 0px 1px rgba(255,255,255,1); | ||
458 | - -webkit-box-shadow: | ||
459 | - 0px 1px 3px rgba(014,051,080,0.5), | ||
460 | - inset 0px 0px 1px rgba(255,255,255,1); | ||
461 | - text-shadow: | ||
462 | - 0px 2px 0px rgba(040,063,081,0.8), | ||
463 | - 1px -1px 0px rgba(034,064,088,0.2); | ||
464 | - } | ||
465 | - | ||
466 | - /* ================================== */ | ||
467 | - /* ============ tables ============== */ | ||
468 | - /* ================================== */ | ||
469 | - | ||
470 | - table.users tr:hover { background: -moz-linear-gradient( | ||
471 | - top, | ||
472 | - #dfedca 0%, | ||
473 | - #b4e364); | ||
474 | - background: -webkit-gradient( | ||
475 | - linear, left top, left bottom, | ||
476 | - from(#dfedca), | ||
477 | - to(#b4e364)); | ||
478 | - border-radius: 5px; | ||
479 | - -moz-border-radius: 5px; | ||
480 | - -webkit-border-radius: 5px; | ||
481 | - border: 1px solid #bde084; | ||
482 | - -moz-box-shadow: | ||
483 | - 0px 1px 3px rgba(000,000,000,0.5), | ||
484 | - inset 0px 0px 1px rgba(255,255,255,1); | ||
485 | - -webkit-box-shadow: | ||
486 | - 0px 1px 3px rgba(000,000,000,0.5), | ||
487 | - inset 0px 0px 1px rgba(255,255,255,1); | ||
488 | - text-shadow: | ||
489 | - 1px 1px 2px rgba(000,000,000,0.4), | ||
490 | - 0px 1px 0px rgba(255,255,255,0.3); border-collapse:collapse; cursor:default;} | ||
491 | - table.users tr td {padding:3px;} | ||
492 | - table.users th {cursor:pointer;} | ||
493 | - table.mail div.col-1 {/*margin: 0 20px 0 120px;*/} | ||
494 | - table.mail .size {width:100px; display:block;} | ||
495 | - | ||
496 | - /* ================================== */ | ||
497 | - /* ============ Voites ============== */ | ||
498 | - /* ================================== */ | ||
499 | - | ||
500 | - div.voite-result { width:700px;display: block; text-align: center;} | ||
501 | - div.voite-result div.title {font-size: 16px;font-weight: bold; margin-bottom: 10px;} | ||
502 | - div.voite-result div.date {font-size: 10px;font-weight: bold; margin-bottom: 10px;} | ||
503 | - div.voite-result div.text {margin-bottom: 20px;} | ||
504 | - | ||
505 | - div.container {display:table;margin: auto;} | ||
506 | - div.voite-result div.row {text-align:left;} | ||
507 | - | ||
508 | - div.voite-result .results .row {width:640px;margin: 10px 0;} | ||
509 | - div.voite-result .results .row .title {width:150px;padding: 4px 0;text-align:right; color: #737373; font-family: arial;font-size: 12px;background:none;} | ||
510 | - div.voite-result .results .row .col {width:400px; } | ||
511 | - div.voite-result .results .row .result {float:right; margin: 0px 5px 2px 0; color:#fff; padding:0px;} | ||
512 | - div.voite-result .results .row .percent {font-weight: bold; border-right: 1px solid; padding-right: 10px;} | ||
513 | - div.voite-result .results .total {margin-top: 10px;} | ||
514 | - div.voite-result .results .row .line { | ||
515 | - margin: 0 10px; | ||
516 | - float:left; | ||
517 | - padding: 2px 0; | ||
518 | - background: -moz-linear-gradient( | ||
519 | - top, | ||
520 | - #5098d3 0%, | ||
521 | - #195b91); | ||
522 | - background: -webkit-gradient( | ||
523 | - linear, left top, left bottom, | ||
524 | - from(#5098d3), | ||
525 | - to(#195b91)); | ||
526 | - border-radius: 6px; | ||
527 | - -moz-border-radius: 6px; | ||
528 | - -webkit-border-radius: 6px; | ||
529 | - border: 1px solid #6696ba; | ||
530 | - -moz-box-shadow: | ||
531 | - 0px 1px 3px rgba(014,051,080,0.5), | ||
532 | - inset 0px 0px 1px rgba(255,255,255,1); | ||
533 | - -webkit-box-shadow: | ||
534 | - 0px 1px 3px rgba(014,051,080,0.5), | ||
535 | - inset 0px 0px 1px rgba(255,255,255,1); | ||
536 | - text-shadow: | ||
537 | - 0px 2px 0px rgba(040,063,081,0.8), | ||
538 | - 1px -1px 0px rgba(034,064,088,0.2); | ||
539 | - | ||
540 | - } | ||
541 | - | ||
542 | - table.voite-report-by-option {margin: 20px 0 0 0;} | ||
543 | - table.voite-report-by-option .title { | ||
544 | - width:187px; text-align:right; | ||
545 | - border-right: 1px solid; | ||
546 | - font-weight: bold; | ||
547 | - padding-right: 10px; | ||
548 | - } | ||
549 | - table.voite-report-by-option .colspan {background:#F2F1F0;} | ||
550 | - table.voite-report-by-option {font-size:10px;} | ||
551 | - table.voite-report-by-option tr td {padding:5px;} | ||
552 | - | ||
553 | - | ||
554 | - /* ================================== */ | ||
555 | - /* ============ Mail ============== */ | ||
556 | - /* ================================== */ | ||
557 | - | ||
558 | - table.mail div.group,table.mail div.interest { | ||
559 | - | ||
560 | - width:600px; | ||
561 | - padding:10px; | ||
562 | - background: -moz-linear-gradient( | ||
563 | - top, | ||
564 | - #ffffff 0%, | ||
565 | - #ffffff 50%, | ||
566 | - #d6d6d6); | ||
567 | - background: -webkit-gradient( | ||
568 | - linear, left top, left bottom, | ||
569 | - from(#ffffff), | ||
570 | - color-stop(0.50, #ffffff), | ||
571 | - to(#d6d6d6)); | ||
572 | - border-radius: 5px; | ||
573 | - -moz-border-radius: 5px; | ||
574 | - -webkit-border-radius: 5px; | ||
575 | - border: 1px solid #bdbdbd; | ||
576 | - -moz-box-shadow: | ||
577 | - 0px 1px 3px rgba(000,000,000,0.5), | ||
578 | - inset 0px 0px 0px rgba(255,255,255,0); | ||
579 | - -webkit-box-shadow: | ||
580 | - 0px 1px 3px rgba(000,000,000,0.5), | ||
581 | - inset 0px 0px 0px rgba(255,255,255,0); | ||
582 | - text-shadow: | ||
583 | - 0px -1px 0px rgba(000,000,000,0), | ||
584 | - 0px 1px 0px rgba(255,255,255,0); | ||
585 | - } | ||
586 | - | ||
587 | - /* ======================= Pager ==================== */ | ||
588 | - .pager {margin: 10px 0;} | ||
589 | - .pager a { font-size:14px; font-weight:normal; text-decoration:none; border:solid 1px #4D94CF; color:#05507d; padding:2px; margin-left:1px; } | ||
590 | - .pager a:hover { background-color:#4D94CF; color:#FFF; } | ||
591 | - .pager .begin { color:#CCC; border:solid 1px #CCC; cursor: default; font-size:14px; font-weight:normal; text-decoration:none; padding:3px;} | ||
592 | - .pager .begin:hover, .pager .end:hover {background:#fff; color:#FFF; } | ||
593 | - .pager .begin-active { color:#336699; border:solid 1px #4D94CF; } | ||
594 | - .pager .prev a { color:#999999; font-size:14px; font-weight:normal; padding-bottom:0; } | ||
595 | - .pager .prev-active { background-color:#EAEAEA; color:#336699; border:solid 1px #C1C1C1; } | ||
596 | - .pager .numbers { color:#05507d;} | ||
597 | - .pager .numbers-active { background-color:#4D94CF; color:#FFF; } | ||
598 | - .pager .next a { color:#999999; font-size:14px; font-weight:normal; } | ||
599 | - .pager .next-active { background-color:#EAEAEA; color:#336699; border:solid 1px #C1C1C1;} | ||
600 | - .pager .end { color:#CCC; border:solid 1px #CCC; cursor: default; font-size:14px; font-weight:normal; text-decoration:none; padding:3px;} | ||
601 | - .pager .end-active {color:#336699; border:solid 1px #4D94CF; } |
1 | -BODY{background:#FFFFFF;font-family:arial;font-size:12px;color:#737373;} | ||
2 | -TABLE{font-family:arial;font-size:12px;color:#737373;} | ||
3 | -.submit_red{border:1px solid #898987;background-image: url("/img/admin/submit_bg_red.jpg");background-repeat:repeat-x;height:20px;font-family:arial;font-size:11px;color:#ffffff;font-weight:normal;padding-bottom:4px;} | ||
4 | -.submit_blue{border:1px solid #898987;background-image: url("/img/admin/submit_bg_blue.jpg");background-repeat:repeat-x;height:20px;font-family:arial;font-size:11px;color:#ffffff;font-weight:normal;padding-bottom:4px;} | ||
5 | -.submit_green{border:1px solid #898987;background-image: url("/img/admin/submit_bg_green.jpg");background-repeat:repeat-x;height:20px;font-family:arial;font-size:11px;color:#ffffff;font-weight:normal;padding-bottom:4px;} | ||
6 | -.submit_orange{border:1px solid #898987;background-image: url("/img/admin/submit_bg_orange.jpg");background-repeat:repeat-x;height:20px;font-family:arial;font-size:11px;color:#ffffff;font-weight:normal;padding-bottom:4px;} | ||
7 | - | ||
8 | -.input_form{border:1px solid #898987;background:#ffffff;background-image: url("/img/admin/input_ten.jpg");background-position:top;background-repeat:repeat-x;font-family:arial;font-size:12px;} | ||
9 | - | ||
10 | -a:visited{font-family:arial;font-size:12px;font-weight:normal;color: #1B5393;text-decoration: underline;} | ||
11 | -a:link{font-family:arial;font-size:12px;font-weight:normal;color: #1B5393;text-decoration: underline;} | ||
12 | -a:hover {font-family:arial;font-size:12px;font-weight:normal;color:#1B5393;text-decoration: underline;} | ||
13 | - | ||
14 | -.bord{background:#1372C6;height:25px;padding-left:5px;padding-right:5px;} | ||
15 | -.left_hot{padding-left:25px;padding-top:10px;} | ||
16 | - | ||
17 | -#link1{font-family:arial;font-size:12px;font-weight:bold;color:#ffffff;text-decoration: underline;} | ||
18 | -.content_site{border-left:1px solid #6D6C71;padding:7px;} | ||
19 | - | ||
20 | -h1{font-family:arial;font-size:18px;} | ||
21 | - | ||
22 | -p{margin:0px;} | ||
23 | - | ||
24 | -.k_l_bg{background-image: url('img/admin/k_l_bg.jpg');background-repeat: repeat-y;width:14px;} | ||
25 | -.k_t_bg{background-image: url('img/admin/k_t_bg.jpg');background-repeat: repeat-x;height:14px;} | ||
26 | -.k_b_bg{background-image: url('img/admin/k_b_bg.jpg');background-repeat: repeat-x;height:14px;} | ||
27 | -.k_r_bg{background-image: url('img/admin/k_r_bg.jpg');background-repeat: repeat-y;width:14px;} | ||
28 | - | ||
29 | -.questioning{border:1px solid #B4D2ED;background:#F9FBFE;} | ||
30 | -.topic{border:1px solid #D1D1D1;background:#EDEDED;padding:5px;} | ||
31 | - | ||
32 | -.content_site .H1Title {margin-bottom:20px;} | ||
33 | -div.adminMenu li, .H1Title { | ||
34 | - margin: 0 10px 0 0; | ||
35 | - list-style:none; | ||
36 | - font-family: Arial, Helvetica, sans-serif; | ||
37 | - font-size: 22px; | ||
38 | - color: #ffffff; | ||
39 | - padding: 6px 12px; | ||
40 | - background: -moz-linear-gradient( | ||
41 | - top, | ||
42 | - #c1d99e 0%, | ||
43 | - #81b52d); | ||
44 | - background: -webkit-gradient( | ||
45 | - linear, left top, left bottom, | ||
46 | - from(#c1d99e), | ||
47 | - to(#81b52d)); | ||
48 | - border-radius: 5px; | ||
49 | - -moz-border-radius: 5px; | ||
50 | - -webkit-border-radius: 5px; | ||
51 | - border: 1px solid #7db327; | ||
52 | - -moz-box-shadow: | ||
53 | - 0px 1px 3px rgba(000,000,000,0.5), | ||
54 | - inset 0px 0px 1px rgba(255,255,255,1); | ||
55 | - -webkit-box-shadow: | ||
56 | - 0px 1px 3px rgba(000,000,000,0.5), | ||
57 | - inset 0px 0px 1px rgba(255,255,255,1); | ||
58 | - text-shadow: | ||
59 | - 1px 1px 2px rgba(000,000,000,0.4), | ||
60 | - 0px 1px 0px rgba(255,255,255,0.3); | ||
61 | - | ||
62 | - } | ||
63 | -div.adminMenu li a { | ||
64 | - text-decoration:none; | ||
65 | - font-size: 14px; | ||
66 | - font-weight: bold; color: #FFFFFF; | ||
67 | - position: relative; | ||
68 | - top: -2px; | ||
69 | - } | ||
70 | -div.adminMenu ul {margin: 5px 10px 5px -20px;} | ||
71 | - | ||
72 | -div.adminMenu ul li { | ||
73 | -padding: 4px 10px; | ||
74 | - margin: 5px 10px 0 0; | ||
75 | - text-decoration:none; | ||
76 | - font-size:12px; | ||
77 | - background: none; | ||
78 | - border: none; | ||
79 | - color: #000; | ||
80 | -} | ||
81 | -div.adminMenu ul li:hover { | ||
82 | - | ||
83 | - background: -moz-linear-gradient( | ||
84 | - top, | ||
85 | - #dfedca 0%, | ||
86 | - #b4e364); | ||
87 | - background: -webkit-gradient( | ||
88 | - linear, left top, left bottom, | ||
89 | - from(#dfedca), | ||
90 | - to(#b4e364)); | ||
91 | - border-radius: 5px; | ||
92 | - -moz-border-radius: 5px; | ||
93 | - -webkit-border-radius: 5px; | ||
94 | - border: 1px solid #bde084; | ||
95 | - -moz-box-shadow: | ||
96 | - 0px 1px 3px rgba(000,000,000,0.5), | ||
97 | - inset 0px 0px 1px rgba(255,255,255,1); | ||
98 | - -webkit-box-shadow: | ||
99 | - 0px 1px 3px rgba(000,000,000,0.5), | ||
100 | - inset 0px 0px 1px rgba(255,255,255,1); | ||
101 | - text-shadow: | ||
102 | - 1px 1px 2px rgba(000,000,000,0.4), | ||
103 | - 0px 1px 0px rgba(255,255,255,0.3); | ||
104 | - | ||
105 | -} | ||
106 | - | ||
107 | -div.adminMenu ul li a {color: #000;text-decoration:none;top:0;} | ||
108 | -div.adminMenu a {text-decoration:none;} | ||
109 | -div.adminMenu .activeMenu { | ||
110 | - | ||
111 | - background: -moz-linear-gradient( | ||
112 | - top, | ||
113 | - #dfedca 0%, | ||
114 | - #b4e364); | ||
115 | - background: -webkit-gradient( | ||
116 | - linear, left top, left bottom, | ||
117 | - from(#dfedca), | ||
118 | - to(#b4e364)); | ||
119 | - border-radius: 5px; | ||
120 | - -moz-border-radius: 5px; | ||
121 | - -webkit-border-radius: 5px; | ||
122 | - border: 1px solid #bde084; | ||
123 | - -moz-box-shadow: | ||
124 | - 0px 1px 3px rgba(000,000,000,0.5), | ||
125 | - inset 0px 0px 1px rgba(255,255,255,1); | ||
126 | - -webkit-box-shadow: | ||
127 | - 0px 1px 3px rgba(000,000,000,0.5), | ||
128 | - inset 0px 0px 1px rgba(255,255,255,1); | ||
129 | - text-shadow: | ||
130 | - 1px 1px 2px rgba(000,000,000,0.4), | ||
131 | - 0px 1px 0px rgba(255,255,255,0.3); | ||
132 | - | ||
133 | -} |
1 | - | ||
2 | -/* the overlayed element */ | ||
3 | -div.overlay { | ||
4 | - | ||
5 | - /* growing background image */ | ||
6 | - background-image:url(/server/pic/alertwindow/white.png); | ||
7 | - | ||
8 | - /* dimensions after the growing animation finishes */ | ||
9 | - width:600px; | ||
10 | - height:470px; | ||
11 | - | ||
12 | - /* initially overlay is hidden */ | ||
13 | - display:none; | ||
14 | - | ||
15 | - /* some padding to layout nested elements nicely */ | ||
16 | - padding:55px; | ||
17 | -} | ||
18 | - | ||
19 | -/* default close button positioned on upper right corner */ | ||
20 | -div.overlay div.close { | ||
21 | - | ||
22 | - background-image:url(/server/pic/alertwindow/close.png); | ||
23 | - position:absolute; | ||
24 | - right:5px; | ||
25 | - top:5px; | ||
26 | - cursor:pointer; | ||
27 | - height:35px; | ||
28 | - width:35px; | ||
29 | -} | ||
30 | - | ||
31 | - | ||
32 | - | ||
33 | -#alert { | ||
34 | - width:300px; | ||
35 | - height:220px; | ||
36 | -} | ||
37 | - | ||
38 | -#alert div.close { | ||
39 | - top:0; | ||
40 | - right:0; | ||
41 | -} | ||
42 | - | ||
43 | -#alert h2 { | ||
44 | - background-image:url(/server/pic/alertwindow/alert.png); | ||
45 | - background-position:6px center; | ||
46 | - background-repeat:no-repeat; | ||
47 | - padding:10px 0 10px 60px; | ||
48 | - margin-top:-10px; | ||
49 | -} | ||
50 | \ No newline at end of file | 0 | \ No newline at end of file |
1 | -BODY{font-family:Arial,tahoma;font-size:12px;background:#fff;color:#3C3C3C;} | ||
2 | -body,form{padding:0px;margin:0px;} | ||
3 | - | ||
4 | -h1,h2{padding:0px;margin:0px;} | ||
5 | -h1{font-size:20px;font-weight:normal;color:#BE0002;padding-bottom:5px;} | ||
6 | -h2{padding-bottom:10px;color:#F96734;font-weight:normal;} | ||
7 | -.bold1{font-weight:bold;color:#005ABD;font-size:14px;} | ||
8 | -p{margin:0px;padding:1px 0px 1px 0px;} | ||
9 | -ul,li{margin:0px;padding:0px;} | ||
10 | -table{font-size:12px;} | ||
11 | -span.onstock{ display: block; | ||
12 | - font-size: 11px; | ||
13 | - margin-bottom: 10px;} | ||
14 | - | ||
15 | -.fl{float:left;} | ||
16 | -.fr{float:right;} | ||
17 | -.both{clear:both;font-size:0px;} | ||
18 | -.ct{text-align:center;} | ||
19 | -.rgh{text-align:right;} | ||
20 | -div.youtube { margin: 0 auto; width: 640px;} | ||
21 | - | ||
22 | -a:visited,a:link{font-size:12px;color: #0055A4;text-decoration: underline;} | ||
23 | -a:hover {font-size:12px;color:#C88A57;text-decoration: underline;} | ||
24 | - | ||
25 | -a.link1:visited, a.link1:link{font-size:12px;font-weight:normal;color: #BE0002;text-decoration: none;} | ||
26 | -a.link1:hover {font-size:12px;font-weight:normal;color:#EE1C25;text-decoration: underline;} | ||
27 | - | ||
28 | -a.link2:visited, a.link2:link{font-size:12px;font-weight:normal;color: #0054A7;text-decoration: underline;} | ||
29 | -a.link2:hover {font-size:12px;font-weight:normal;color:#EE1C25;text-decoration: underline;} | ||
30 | - | ||
31 | -a.link3:visited, a.link3:link{font-size:12px;font-weight:normal;color: #333333;text-decoration: none;} | ||
32 | -a.link3:hover {font-size:12px;font-weight:normal;color:#EE1C25;text-decoration: underline;} | ||
33 | - | ||
34 | -a.smill:visited, a.smill:link{font-size:11px;font-weight:normal;color: #015AB4;text-decoration: underline;} | ||
35 | -a.smill:hover {font-size:11px;font-weight:normal;color:#EE1D23;text-decoration: underline;} | ||
36 | - | ||
37 | -a.smill2:visited, a.smill2:link{font-size:11px;font-weight:normal;color: #9ACFFF;text-decoration: underline;} | ||
38 | -a.smill2:hover {font-size:11px;font-weight:normal;color:#C62127;text-decoration: underline;} | ||
39 | - | ||
40 | - a.link_but1:visited, a.link_but1:link, a.link_but1:hover, | ||
41 | - div.leftbar input.button-send {display:block;width:112px;height:28px;line-height:28px;background:#419B29 url('/img/but1.jpg') no-repeat;font-size:12px;font-weight:bold;color: #ffffff;text-decoration: none;text-align:center;} | ||
42 | - | ||
43 | - div.leftbar input.button-send {margin:10px auto; padding:0px; text-shadow:none; box-shadow:none;border:none;} | ||
44 | - | ||
45 | - a.link_but2:visited, a.link_but2:link, a.link_but2:hover{display:block;width:133px;height:20px;line-height:20px;background:#E5E5E5 url('/img/com_sub.jpg') no-repeat;font-size:11px;font-weight:normal;color: #000000;text-decoration: none;text-align:center;} | ||
46 | - | ||
47 | -a.link_y:visited, a.link_y:link{font-size:18px;font-weight:bold;color: #FFF102;text-decoration: none;} | ||
48 | -a.link_y:hover {font-size:18px;font-weight:bold;color:#FFF102;text-decoration: underline;} | ||
49 | - | ||
50 | -.site{width:980px;text-align:left;} | ||
51 | -.logo{float:left;} | ||
52 | -.logo span{display:none;} | ||
53 | -.logo h2{margin:0px;padding:0px;} | ||
54 | -.logo h2 a{display: block;width:225px;height:130px;} | ||
55 | -.header{width:980px;height:233px;background:url('/img/header.jpg') no-repeat;} | ||
56 | -.header .w{padding:0px 10px 10px 10px;} | ||
57 | -.header .akcii_top{height:130px;text-align:right;color:#ffffff;margin-bottom:5px;} | ||
58 | -.header .akcii_top .w{padding:10px;} | ||
59 | -.akcbox{width:150px;text-align:left;} | ||
60 | -.menu_top{background:url('/img/menu_up.gif') no-repeat;height:31px;line-height:31px;display:inline-block;width:825px;text-align:center;} | ||
61 | -.menu_top .l{background:url('/img/m_l.jpg') left top no-repeat;} | ||
62 | -.menu_top .r{background:url('/img/m_r.jpg') right top no-repeat;} | ||
63 | -.menu_top ul{list-style-type:none;padding:0px 10px 0px 0px;} | ||
64 | -.menu_top li{display:inline;padding:0px 12px 0px 10px;font-size:14px;color:#ffffff;} | ||
65 | -.menu_top li a:visited,.menu_top li a:link{font-size:14px;color:#0153A5;font-weight:bold;text-decoration:none;} | ||
66 | -.menu_top li a:hover{color:#F26521;} | ||
67 | -.menu_top .n{background:none;padding-right:0px;margin:0px;} | ||
68 | - | ||
69 | -.location{padding:8px 0px 8px 0px;} | ||
70 | -.location .row{width:137px;height:49px;line-height:17px;float:left;background:url('/img/lt.jpg') right repeat-y;font-size:14px;font-weight:bold;} | ||
71 | -.location .row .w{padding:0px 10px 0px 10px;} | ||
72 | -.location .row a{text-decoration:none;font-size:14px;color:#000000;} | ||
73 | -.location .n{background:none;} | ||
74 | -.location .n .w{padding:0px 0px 0px 10px;} | ||
75 | -.location .row sup{font-size:9px;font-weight:normal;} | ||
76 | - | ||
77 | -.layout{padding-top:20px;} | ||
78 | -.leftbar{float:left;width:188px;} | ||
79 | -.rightbar1{float:right;width:188px;} | ||
80 | -.content {overflow:hidden;padding:0px 0px 0px 15px;} | ||
81 | -* html .content{height:1%;} | ||
82 | -.info{padding-top:20px;} | ||
83 | -.mt{margin-top:10px;} | ||
84 | -.mt2{margin-top:15px;} | ||
85 | -.mb{margin-bottom:10px;} | ||
86 | - | ||
87 | - .title,div.title a, | ||
88 | - div.leftbar div.audience form div.title {height:31px;line-height:31px;background:#5DB843 url('/img/title.jpg');color:#ffffff;text-align:center;font-size:12px;text-transform: uppercase;font-weight:bold;text-decoration:none;} | ||
89 | - div.leftbar div.audience form{ | ||
90 | - background: none repeat scroll 0 0 #F5F5F5; | ||
91 | - border-bottom: 4px solid #CACACA; | ||
92 | - margin:10px 0 ; | ||
93 | - } | ||
94 | - div.leftbar div.audience form div.title { | ||
95 | - padding:0; | ||
96 | - -webkit-border-radius: 5px 5px 0 0; | ||
97 | - -moz-border-radius: 5px 5px 0 0; | ||
98 | - border-radius: 5px 5px 0 0; | ||
99 | - } | ||
100 | - | ||
101 | - div.leftbar div.audience {margin: 10px 0; width:100%; padding:0;} | ||
102 | - | ||
103 | -div.title a {background:none;} | ||
104 | -.title .l{background:url('/img/t_l.jpg') left top no-repeat;} | ||
105 | -.title .r{background:url('/img/t_r.jpg') right top no-repeat;} | ||
106 | -.box{background:#F5F5F5;padding:5px;margin-top:3px;border-bottom:4px solid #CACACA;} | ||
107 | -.box5{background:#F5F5F5;padding:5px;border-bottom:4px solid #CACACA;border-top:4px solid #CACACA;} | ||
108 | -.box3{background:#F5F5F5;padding:5px;margin-top:3px;border-bottom:4px solid #CACACA;} | ||
109 | -.box4{padding:0px;margin-top:3px;border-bottom:4px solid #CACACA;border-top:1px solid #CACACA;border-left:1px solid #CACACA;border-right:1px solid #CACACA;text-align:center;padding-bottom:5px;} | ||
110 | -.box ul{list-style-type:none;margin:0px;padding:0px;} | ||
111 | -.box ul li{background:url('/img/li.jpg') left 7px no-repeat;padding:3px 0px 3px 20px;border-bottom:1px solid #DADADA;} | ||
112 | -.box ul.links{padding:3px 0px 3px 0px;} | ||
113 | -.box ul.links li{background:url('/img/li2.jpg') left 7px no-repeat;padding:3px 0px 3px 13px;} | ||
114 | -.box ul.links a{font-size:10px;color:#A2A2A2;} | ||
115 | -.box a:visited,.box a:link{color:#747474;font-weight:normal;font-size:12px;text-transform: uppercase;text-decoration:none;} | ||
116 | -.box a:hover{color:#F36420;} | ||
117 | -.search2{background:#F4F2F3;} | ||
118 | -.search2 .l{background:url('/img/c_1.jpg') left top no-repeat;} | ||
119 | -.search2 .r{background:url('/img/c_2.jpg') right top no-repeat;} | ||
120 | -.search2 .lb{background:url('/img/c_4.jpg') left bottom no-repeat;} | ||
121 | -.search2 .rb{background:url('/img/c_3.jpg') right bottom no-repeat;} | ||
122 | -.search2 .w{padding:7px;min-height:50px;} | ||
123 | -* html .search2 .w{height:50px;} | ||
124 | -.search2 table{text-align:left;} | ||
125 | -.search2 select{width:100px;margin-right:10px;} | ||
126 | -.search{background:url('/img/search.jpg') repeat-x;padding:0px;text-align:center;} | ||
127 | -.search .l{background:url('/img/s_l.jpg') left top no-repeat;} | ||
128 | -.search .r{background:url('/img/s_r.jpg') right top no-repeat;} | ||
129 | -.search .w{padding:1px 5px 0px 5px;} | ||
130 | -.search select{width:120px;margin-right:10px;} | ||
131 | -.search input{margin-right:10px;} | ||
132 | - | ||
133 | -.akciya .row{background:#F5F5F5;width:175px;float:left;margin-right:19px;margin-bottom:19px;padding:20px 0px 20px 0px;border-top:1px solid #CACACA;border-bottom:4px solid #CACACA;height:200px;} | ||
134 | -.akciya .n{margin:0px;} | ||
135 | -.box2 a:visited,.box2 a:link{color:#747474;font-weight:normal;} | ||
136 | -.box2 a:hover{color:#F36420;} | ||
137 | -.cine{width:100px;background:#EE1C25;color:#ffffff;margin-top:5px;} | ||
138 | -.cine .l{background:url('/img/c_l.jpg') left top no-repeat;padding-left:5px;} | ||
139 | -.cine .r{background:url('/img/c_r.jpg') right top no-repeat;padding-right:8px;} | ||
140 | -.cine .w{height:24px;line-height:24px;background:url('/img/uah.gif') right center no-repeat;padding-right:12px;} | ||
141 | -.cine2{color:#EE1D23;} | ||
142 | - | ||
143 | -.rbk .row{width:180px;float:left;margin-right:17px;margin-bottom:10px;} | ||
144 | -.rbk .n{margin:0px;} | ||
145 | -.title2_2{height:31px;background:url('/img/title2.jpg') repeat-x;color:#5E655E;text-align:center;font-size:12px;font-weight:bold;text-transform: uppercase;} | ||
146 | - | ||
147 | -.title2{height:31px;line-height:31px;background:url('/img/title2.jpg') repeat-x;color:#5E655E;text-align:center;font-size:12px;font-weight:bold;text-transform: uppercase;} | ||
148 | -.title2 a:visited, .title2 a:link{font-size:12px;font-weight:bold;color: #5E655E;text-decoration: none;} | ||
149 | -.title2 a:hover {font-size:12px;font-weight:bold;color:#EE1C25;text-decoration: underline;} | ||
150 | -.title2 .l{background:url('/img/t2_l.jpg') left top no-repeat;height:31px;} | ||
151 | -.title2 .r{background:url('/img/t2_r.jpg') right top no-repeat;height:31px;} | ||
152 | -.box2{padding:10px 0px 10px 0px;} | ||
153 | -.box2 img{margin-right:10px;} | ||
154 | - | ||
155 | -.title3{height:31px;line-height:31px;text-indent:20px;letter-spacing: 2px;background:#5DB843 url('/img/title.jpg');color:#ffffff;font-size:10px;font-weight:bold;text-transform: uppercase;} | ||
156 | -.title3 .l{background:url('/img/t_l.jpg') left top no-repeat;} | ||
157 | -.title3 .r{background:url('/img/t_r.jpg') right top no-repeat;} | ||
158 | -.title3 .w{height:31px;line-height:31px;} | ||
159 | -.title3 h2,.title3 h1,.title3 .h1{color:#ffffff;font-size:13px;font-weight:bold;display:inline;} | ||
160 | -.tb1{font-size:12px;} | ||
161 | - | ||
162 | -.fotter{background:#F5F5F5;padding:15px;border-top:3px solid #CDCDCD;margin-top:20px;} | ||
163 | -.fotter .left{float:left;width:190px;font-size:11px;} | ||
164 | -.fotter .right{float:right;width:170px;font-size:11px;text-align:right;} | ||
165 | -.fotter .right a{font-size:11px;color:#969696;} | ||
166 | -.fotter .center{overflow:hidden;text-align:center;} | ||
167 | -.fotter ul{list-style-type:none;} | ||
168 | -.fotter li{display:inline;padding:0px 5px 0px 5px;font-size:12px;color:#464646;border-right:1px solid #464646;} | ||
169 | -.fotter li a{font-size:12px;color:#464646;text-decoration:none;} | ||
170 | -.fotter li a:hover{color:#F16623;} | ||
171 | -.fotter .n{border:none;} | ||
172 | - | ||
173 | - | ||
174 | -.date{color:#0B4B89;font-size:11px;} | ||
175 | -.pic{border:3px solid #E3E1E4;} | ||
176 | -.pic3{border:3px solid #E3E1E4;} | ||
177 | -.right{margin-right:5px;} | ||
178 | -.status{background:#FBFFBB;padding:5px;border:1px solid #EA4902;margin:3px 0px 3px 0px;} | ||
179 | -.picbox{float:left;width:245px;text-align:center;padding-bottom:10px;} | ||
180 | -.pager{padding:5px;} | ||
181 | - #inputArea | ||
182 | - { | ||
183 | - font-family: Arial, Sans-Serif; | ||
184 | - font-size: 13px; | ||
185 | - padding: 10px; | ||
186 | - } | ||
187 | - .activeField | ||
188 | - { | ||
189 | - background-image: none; | ||
190 | - background-color: #ffffff; | ||
191 | - border: solid 1px #0FAFBD; | ||
192 | - font-family: Arial, Sans-Serif; | ||
193 | - font-size: 13px; | ||
194 | - margin-bottom: 5px; | ||
195 | - display: block; | ||
196 | - padding: 2px; | ||
197 | - } | ||
198 | - .idle | ||
199 | - { | ||
200 | - border: solid 1px #0F75BD; | ||
201 | - background-image: url( '/img/gray_bg.png' ); | ||
202 | - background-repeat: repeat-x; | ||
203 | - background-position: top; | ||
204 | - background-color:#FFFFFF; | ||
205 | - font-family: Arial, Sans-Serif; | ||
206 | - font-size: 13px; | ||
207 | - margin-bottom: 5px; | ||
208 | - display: block; | ||
209 | - padding: 2px; | ||
210 | - | ||
211 | - } | ||
212 | - #inputArea .activeField,#inputArea .idle{width:450px;} | ||
213 | - | ||
214 | - | ||
215 | - | ||
216 | - div.tabs-client div { | ||
217 | - float: left; | ||
218 | - padding: 5px 10px; | ||
219 | - } | ||
220 | - | ||
221 | - div.tabs-client {border-bottom:1px solid #075cb6; height:30px;} | ||
222 | - div.tabs-client div {height: 15px; padding-top: 10px; color:#fff; font-size:10px; text-transform:uppercase; cursor:pointer; } | ||
223 | - div.tabs-client .active { background-image:url('/img/active.png'); background-repeat:no-repeat;} | ||
224 | - div.tabs-client .unactive { background-image:url('/img/unactive.png');background-repeat:no-repeat; color:#000;} | ||
225 | - | ||
226 | - div#client_new {font-size: 11px;} | ||
227 | - div#client_new .attention {margin:20px 0 30px 0;display: block;} | ||
228 | - div#client_new .mailing { display: table; float:left; margin:0; padding:0;} | ||
229 | - div#client_new .advice { display: block; margin-bottom:15px;} | ||
230 | - div#client_new .advice a {font-size: 11px;} | ||
231 | - | ||
232 | - div#client_old div.signup {box-shadow:none;} | ||
233 | - div#client_old div.signup div.col-1 {background:none;} | ||
234 | - | ||
235 | - | ||
236 | - | ||
237 | - | ||
238 | - | ||
239 | - | ||
240 | - | ||
241 | -div#inputArea div.delivery { padding: 8px 0;} | ||
242 | - | ||
243 | -.submit{border:1px solid #C2C2C2;background:#E9E9E9 url('/img/sub.jpg') repeat-x;padding:0px 10px 1px 10px;height:20px;color:#41545F;font-family:Arial,verdana;font-size:11px;cursor:pointer;} | ||
244 | -.red{color:red;} | ||
245 | -.txtb{font-weight:bold;} | ||
246 | -.txtr{font-size:14px;color:#FFF36D;font-weight:bold;} | ||
247 | -.txty{color:#FF0000;font-size:16px;font-weight:bold;} | ||
248 | -.name1{padding:5px 0px 0px 0px;height:50px;} | ||
249 | -.name2{padding:5px 0px 0px 0px;height:50px;} | ||
250 | -select{font-size:11px;color:#898989;} | ||
251 | -.brend1{color:#61BB49;} | ||
252 | -.basket{padding-bottom:5px;margin-bottom:10px;background:url('/img/t1.jpg') bottom repeat-x;text-align:left;} | ||
253 | -#basket{display:none;} | ||
254 | -#h_toggle{float:left;padding:0px;margin:0px;width:43px;cursor:pointer;} | ||
255 | -#h_toggle .t{background:url('/img/trightbasket.png') top no-repeat;width:43px;height:6px;font-size:0px;} | ||
256 | -#h_toggle .b{background:url('/img/brightbasket.png') top no-repeat;width:43px;height:18px;} | ||
257 | -#h_toggle .w{background:url('/img/bgrightbasket.png') repeat-y;} | ||
258 | -#h_toggle .txt{background:url('/img/txtbasket.jpg') center no-repeat;height:117px;} | ||
259 | -#horizontal_slide{width:0px;display:none;background:#ffffff url('/img/bgbsk.png') bottom repeat-x;padding:0px;margin:0px;float:left;min-height:130px;} | ||
260 | -* html #horizontal_slide{height:141px;} | ||
261 | -#horizontal_slide .w{padding:30px 20px 30px 20px;font-size:14px;font-weight:bold;} | ||
262 | - | ||
263 | -#h_toggle2{clear:both;float:left;padding:0px;margin:0px;width:43px;height:80px;cursor:pointer;background:blue;} | ||
264 | -#horizontal_slide2{float:left;height:80px;background:red;} | ||
265 | - | ||
266 | -.stbsk{padding:25px 0px 0px 0px;float:left;width:250px;text-align:left;text-transform: uppercase;} | ||
267 | -.fon1{height:32px;line-height:32px;padding:0px 20px 0px 20px;color:#0A61AF;font-size:16px;} | ||
268 | -.row3{text-align:center;padding:5px 0px 5px 0px;} | ||
269 | -.banner{text-align:center;padding-top:10px;} | ||
270 | -.banner_t{text-align:center;margin:10px 0px 10px 0px;} | ||
271 | -.phn1{font-size:14px;color:#60BB46;} | ||
272 | -.phncod{font-size:12px;color:#0055A5;} | ||
273 | - | ||
274 | -a.knopka1:visited, a.knopka1:link,a.knopka1:hover{display:inline-block;font-size:11px;background:url('/img/b1.jpg') repeat-x;height:25px;line-height:25px;width:85px;text-align:center;font-weight:bold;color: #ffffff;text-decoration: none;margin-right:5px;} | ||
275 | -a.knopka2:visited, a.knopka2:link,a.knopka2:hover{display:inline-block;font-size:11px;background:url('/img/b2.jpg') repeat-x;height:25px;line-height:25px;width:85px;text-align:center;font-weight:bold;color: #ffffff;text-decoration: none;margin-right:5px;} | ||
276 | - | ||
277 | -.pager{background:#F8F8F8;border-top:1px dashed #CCCCCC;border-bottom:1px dashed #CCCCCC;padding:7px;font-weight:normal;margin-bottom:5px;} | ||
278 | -.link_class{border:1px solid #CCCCCC;background:#EAEAEA;padding-left:3px;padding-right:3px;padding-top:2px;padding-bottom:3px;color:#993300;font-weight:bold;text-decoration: none;font-size:12px;} | ||
279 | -.link_class_active{border:1px solid #E7CFC3;background:#F3E7E1;padding-left:3px;padding-right:3px;padding-top:2px;padding-bottom:3px;color:#757575;font-weight:bold;text-decoration: underline;font-size:12px;} | ||
280 | -.topic{border:1px solid #D1D1D1;background:#EDEDED;padding:5px;} | ||
281 | -.filter{padding:5px;text-align:center;} | ||
282 | - | ||
283 | -/* ----------------IMAGE SLIDER------------- */ | ||
284 | -#SlideItMoo_outer { | ||
285 | - width:680px; | ||
286 | - margin:0px auto 0px; | ||
287 | - display:block; | ||
288 | - position:relative; | ||
289 | - padding:0px 26px 0px 13px; | ||
290 | -} | ||
291 | -/* create custom forward-backward buttons for this container */ | ||
292 | -#SlideItMoo_outer .SlideItMoo_forward, | ||
293 | -#SlideItMoo_outer .SlideItMoo_back{ | ||
294 | - display:block; | ||
295 | - position:absolute; | ||
296 | - cursor:pointer; | ||
297 | - width:25px; | ||
298 | - height:250px; | ||
299 | - bottom:0px; | ||
300 | - right:0px; | ||
301 | - background:url(img/slideitmoo_forward.jpg) no-repeat center; | ||
302 | -} | ||
303 | -#SlideItMoo_outer .SlideItMoo_back { | ||
304 | - left:0px; | ||
305 | - background:url(img/slideitmoo_back.jpg) no-repeat center; | ||
306 | -} | ||
307 | - | ||
308 | -/* the width is set to show the number of thumbnails that will be visible */ | ||
309 | -#SlideItMoo_inner{ | ||
310 | - position:relative ; | ||
311 | - overflow:hidden ; | ||
312 | - width:680px ; /* set a display width to make the slider look good in case js is disabled */ | ||
313 | - margin:0px auto 0px; | ||
314 | - padding:0px 0px 0px; | ||
315 | -} | ||
316 | -/* the thumbnails container; set a width on it so everything will be fine */ | ||
317 | -#SlideItMoo_items { | ||
318 | - display:block; | ||
319 | - position:relative; | ||
320 | -} | ||
321 | -/* single element design */ | ||
322 | -#SlideItMoo_items div.SlideItMoo_element { | ||
323 | - display:block; | ||
324 | - position:relative; | ||
325 | - float:left; | ||
326 | - margin:0px 8px 0px; | ||
327 | - font-size:11px; | ||
328 | - width:153px; | ||
329 | - text-align:center; | ||
330 | -} | ||
331 | -#SlideItMoo_items a { padding:0px; margin:3px 0px 3px; clear:both; display:block; padding:2px; } | ||
332 | -#SlideItMoo_items a img{ border:3px solid #E3E1E4; } | ||
333 | -/* ----------------IMAGE SLIDER------------- */ | ||
334 | -#SlideItMoo_outer2 { | ||
335 | - width:680px; | ||
336 | - margin:0px auto 0px; | ||
337 | - display:block; | ||
338 | - position:relative; | ||
339 | - padding:0px 26px 0px 13px; | ||
340 | -} | ||
341 | -/* create custom forward-backward buttons for this container */ | ||
342 | -#SlideItMoo_outer2 .SlideItMoo_forward, | ||
343 | -#SlideItMoo_outer2 .SlideItMoo_back{ | ||
344 | - display:block; | ||
345 | - position:absolute; | ||
346 | - cursor:pointer; | ||
347 | - width:25px; | ||
348 | - height:250px; | ||
349 | - bottom:0px; | ||
350 | - right:0px; | ||
351 | - background:url(img/slideitmoo_forward.jpg) no-repeat center; | ||
352 | -} | ||
353 | -#SlideItMoo_outer2 .SlideItMoo_back { | ||
354 | - left:0px; | ||
355 | - background:url(img/slideitmoo_back.jpg) no-repeat center; | ||
356 | -} | ||
357 | - | ||
358 | -/* the width is set to show the number of thumbnails that will be visible */ | ||
359 | -#SlideItMoo_inner2{ | ||
360 | - position:relative ; | ||
361 | - overflow:hidden ; | ||
362 | - width:680px ; /* set a display width to make the slider look good in case js is disabled */ | ||
363 | - margin:0px auto 0px; | ||
364 | - padding:0px 0px 0px; | ||
365 | -} | ||
366 | -/* the thumbnails container; set a width on it so everything will be fine */ | ||
367 | -#SlideItMoo_items2 { | ||
368 | - display:block; | ||
369 | - position:relative; | ||
370 | -} | ||
371 | -/* single element design */ | ||
372 | -#SlideItMoo_items2 div.SlideItMoo_element2 { | ||
373 | - display:block; | ||
374 | - position:relative; | ||
375 | - float:left; | ||
376 | - margin:0px 8px 0px; | ||
377 | - font-size:11px; | ||
378 | - width:153px; | ||
379 | - text-align:center; | ||
380 | -} | ||
381 | -#SlideItMoo_items2 a { padding:0px; margin:3px 0px 3px; clear:both; display:block; padding:2px; } | ||
382 | -#SlideItMoo_items2 a img{ border:3px solid #E3E1E4; } | ||
383 | -.products{width:774px;} | ||
384 | -.products .row{border-left:1px solid #CDCDCD;border-right:1px solid #CDCDCD;border-bottom:4px solid #C8C8C8;margin-bottom:10px;} | ||
385 | -.products .row .wrp{padding:5px;} | ||
386 | -.products .pr_t{height:25px;line-height:25px;background:url('/img/prbg.jpg') repeat-x;text-transform: uppercase;color:#419B29;font-weight:bold;text-indent: 20px;} | ||
387 | -.products .pr_t .l{background:url('/img/prl.jpg') left top no-repeat;} | ||
388 | -.products .pr_t .r{background:url('/img/prr.jpg') right top no-repeat;} | ||
389 | -.products .infob{overflow:hidden ;padding:0px 10px 0px 10px;background:url('/img/tk.jpg') right repeat-y;} | ||
390 | -* html .products .infob{height:1%;} | ||
391 | -.products .infor{float:right;width:180px;padding-top:30px;} | ||
392 | -.products .infob p{padding-top:10px;text-indent: 10px;} | ||
393 | - | ||
394 | -.bgcontact{background:url('/img/bgcontact.jpg');width:363px;height:136px;font-weight:bold;padding:0px 10px 0px 0px;} | ||
395 | -.block_info_item2,.item_news{border-bottom:1px solid #C8C8C8;padding-bottom:5px;margin-bottom:5px;} | ||
396 | -.perPage{text-align:right;padding:5px 0px 5px 0px;} | ||
397 | -.item_article{float:left;width:375px;margin-right:10px;margin-bottom:5px;background:#F8F8F8;min-height:160px;padding:3px;border-bottom:4px solid #C8C8C8;} | ||
398 | -* html .item_article{height:160px;} | ||
399 | -.item_article ul{margin-left:20px;} | ||
400 | -.imn{margin:0px;} | ||
401 | -.newsinfos{display:block;height:105px;} | ||
402 | -.bots{margin-top:15px;} | ||
403 | -.bots a{display:inline-block;width:158px;height:31px;line-height:31px;text-align:center;background:#DCDCDC url('/img/bt1.jpg') no-repeat;} | ||
404 | -.bot_content{padding:5px;border:2px solid #CACACA;} | ||
405 | -.box_pic{text-align:center;float:left;width:200px;} | ||
406 | -.feature{display:none;} | ||
407 | -.products_list_row{width:153px;float:left;margin:0px 19px 0px 19px;} | ||
408 | -.list_rubric{color:#3D946A;font-size:14px;padding-top:10px;} | ||
409 | -#fly_banner{position:absolute;top:30%;left:35%;} | ||
410 | -#compare{clear:both;display:none;} | ||
411 | -#compare span{display:none;} | ||
412 | -#compare a{display:block;width:43px;height:144px;background:url('/img/compare.jpg');} | ||
413 | - | ||
414 | -.jdom{color:red;} | ||
415 | -.box_brend{float:left;width:155px;height:100px;text-align:center;} | ||
416 | -#vertical_slide{display:none;} | ||
417 | -.pic_row{height:160px;} | ||
418 | -#share42 { | ||
419 | - position: fixed1; | ||
420 | - z-index: 1000; | ||
421 | - margin-left1: -70px; /* ñìåùåíèå ïàíåëè âëåâî îò êðàÿ êîíòåíòà */ | ||
422 | - right:0px; | ||
423 | - margin-top2:450px; | ||
424 | - padding: 6px 6px 0; | ||
425 | - background: #FFF; | ||
426 | - border: 1px solid #E9E9E9; | ||
427 | - -moz-border-radius: 4px; | ||
428 | - border-radius: 4px; margin-bottom:5px; | ||
429 | -} | ||
430 | -* html #share42 {display: none} | ||
431 | -#share42:hover { | ||
432 | - background: #F6F6F6; | ||
433 | - border: 1px solid #D4D4D4; | ||
434 | - -webkit-box-shadow: 0 0 5px #DDD; | ||
435 | - -moz-box-shadow: 0 0 5px #DDD; | ||
436 | - box-shadow: 0 0 5px #DDD; | ||
437 | -} | ||
438 | -#share42 a {opacity: 0.5} | ||
439 | -#share42:hover a {opacity: 0.7} | ||
440 | -#share42 a:hover {opacity: 1} | ||
441 | -#share42 img {margin: 0 !important; padding: 0 !important; border: none !important;} | ||
442 | - | ||
443 | -.hr1{background:url('/img/h.jpg') top repeat-x;padding:5px 0px;} | ||
444 | - | ||
445 | -.block3{float:left;margin:0px 80px 20px 80px;} | ||
446 | -.bn3{margin:0px;} |
1 | - h1,h2{padding:0px;margin:0px;} | ||
2 | - h1{font-size:20px;font-weight:normal;color:#BE0002;padding-bottom:5px;} | ||
3 | - h2{padding-bottom:10px;color:#F96734;font-weight:normal;} | ||
4 | - .bold1{font-weight:bold;color:#005ABD;font-size:14px;} | ||
5 | - p{margin:0px;padding:1px 0px 1px 0px;} | ||
6 | - ul,li{margin:0px;padding:0px;} | ||
7 | - table{font-size:12px;} | ||
8 | - span.onstock{ display: block; | ||
9 | - font-size: 11px; | ||
10 | - margin-bottom: 10px;} | ||
11 | - | ||
12 | - .fl{float:left;} | ||
13 | - .fr{float:right;} | ||
14 | - .both{clear:both;font-size:0px;} | ||
15 | - .ct{text-align:center;} | ||
16 | - .rgh{text-align:right;} | ||
17 | - div.youtube { margin: 0 auto; width: 640px;} | ||
18 | - | ||
19 | - a:visited,a:link{font-size:12px;color: #0055A4;text-decoration: underline;} | ||
20 | - a:hover {font-size:12px;color:#C88A57;text-decoration: underline;} | ||
21 | - | ||
22 | - a.link1:visited, a.link1:link{font-size:12px;font-weight:normal;color: #BE0002;text-decoration: none;} | ||
23 | - a.link1:hover {font-size:12px;font-weight:normal;color:#EE1C25;text-decoration: underline;} | ||
24 | - | ||
25 | - a.link2:visited, a.link2:link{font-size:12px;font-weight:normal;color: #0054A7;text-decoration: underline;} | ||
26 | - a.link2:hover {font-size:12px;font-weight:normal;color:#EE1C25;text-decoration: underline;} | ||
27 | - | ||
28 | - a.link3:visited, a.link3:link{font-size:12px;font-weight:normal;color: #333333;text-decoration: none;} | ||
29 | - a.link3:hover {font-size:12px;font-weight:normal;color:#EE1C25;text-decoration: underline;} | ||
30 | - | ||
31 | - a.smill:visited, a.smill:link{font-size:11px;font-weight:normal;color: #015AB4;text-decoration: underline;} | ||
32 | - a.smill:hover {font-size:11px;font-weight:normal;color:#EE1D23;text-decoration: underline;} | ||
33 | - | ||
34 | - a.smill2:visited, a.smill2:link{font-size:11px;font-weight:normal;color: #9ACFFF;text-decoration: underline;} | ||
35 | - a.smill2:hover {font-size:11px;font-weight:normal;color:#C62127;text-decoration: underline;} | ||
36 | - | ||
37 | - a.link_but1:visited, a.link_but1:link, a.link_but1:hover, | ||
38 | - div.leftbar input.button-send {display:block;width:112px;height:28px;line-height:28px;background:#419B29 url('/img/but1.jpg') no-repeat;font-size:12px;font-weight:bold;color: #ffffff;text-decoration: none;text-align:center;} | ||
39 | - | ||
40 | - div.leftbar input.button-send {margin:10px auto; padding:0px; text-shadow:none; box-shadow:none;border:none;} | ||
41 | - | ||
42 | - a.link_but2:visited, a.link_but2:link, a.link_but2:hover{display:block;width:133px;height:20px;line-height:20px;background:#E5E5E5 url('/img/com_sub.jpg') no-repeat;font-size:11px;font-weight:normal;color: #000000;text-decoration: none;text-align:center;} | ||
43 | - | ||
44 | - a.link_y:visited, a.link_y:link{font-size:18px;font-weight:bold;color: #FFF102;text-decoration: none;} | ||
45 | - a.link_y:hover {font-size:18px;font-weight:bold;color:#FFF102;text-decoration: underline;} | ||
46 | - | ||
47 | - | ||
48 | - | ||
49 | -.site{width:980px;text-align:left;} | ||
50 | -.bgcontact{background:url('/img/bgcontact.jpg');width:363px;height:136px;font-weight:bold;padding:0px 10px 0px 0px;} | ||
51 | -.block_info_item2,.item_news{border-bottom:1px solid #C8C8C8;padding-bottom:5px;margin-bottom:5px;} | ||
52 | -.perPage{text-align:right;padding:5px 0px 5px 0px;} | ||
53 | -.item_article{float:left;width:375px;margin-right:10px;margin-bottom:5px;background:#F8F8F8;min-height:160px;padding:3px;border-bottom:4px solid #C8C8C8;} | ||
54 | -* html .item_article{height:160px;} | ||
55 | -.item_article ul{margin-left:20px;} | ||
56 | -.imn{margin:0px;} | ||
57 | -.newsinfos{display:block;height:105px;} | ||
58 | -.bots{margin-top:15px;} | ||
59 | -.bots a{display:inline-block;width:158px;height:31px;line-height:31px;text-align:center;background:#DCDCDC url('/img/bt1.jpg') no-repeat;} | ||
60 | -.bot_content{padding:5px;border:2px solid #CACACA;} | ||
61 | -.box_pic{text-align:center;float:left;width:200px;} | ||
62 | -.feature{display:none;} | ||
63 | -.products_list_row{width:153px;float:left;margin:0px 19px 0px 19px;} | ||
64 | -.list_rubric{color:#3D946A;font-size:14px;padding-top:10px;} | ||
65 | -#fly_banner{position:absolute;top:30%;left:35%;} | ||
66 | -#compare{clear:both;display:none;} | ||
67 | -#compare span{display:none;} | ||
68 | -#compare a{display:block;width:43px;height:144px;background:url('/img/compare.jpg');} | ||
69 | - | ||
70 | -.jdom{color:red;} | ||
71 | -.box_brend{float:left;width:155px;height:100px;text-align:center;} | ||
72 | -#vertical_slide{display:none;} | ||
73 | -.pic_row{height:160px;} | ||
74 | -#share42 { | ||
75 | - position: fixed1; | ||
76 | - z-index: 1000; | ||
77 | - margin-left1: -70px; /* ñìåùåíèå ïàíåëè âëåâî îò êðàÿ êîíòåíòà */ | ||
78 | - right:0px; | ||
79 | - margin-top2:450px; | ||
80 | - padding: 6px 6px 0; | ||
81 | - background: #FFF; | ||
82 | - border: 1px solid #E9E9E9; | ||
83 | - -moz-border-radius: 4px; | ||
84 | - border-radius: 4px; margin-bottom:5px; | ||
85 | -} | ||
86 | -* html #share42 {display: none} | ||
87 | -#share42:hover { | ||
88 | - background: #F6F6F6; | ||
89 | - border: 1px solid #D4D4D4; | ||
90 | - -webkit-box-shadow: 0 0 5px #DDD; | ||
91 | - -moz-box-shadow: 0 0 5px #DDD; | ||
92 | - box-shadow: 0 0 5px #DDD; | ||
93 | -} | ||
94 | -#share42 a {opacity: 0.5} | ||
95 | -#share42:hover a {opacity: 0.7} | ||
96 | -#share42 a:hover {opacity: 1} | ||
97 | -#share42 img {margin: 0 !important; padding: 0 !important; border: none !important;} | ||
98 | - | ||
99 | -.hr1{background:url('/img/h.jpg') top repeat-x;padding:5px 0px;} | ||
100 | - | ||
101 | -.block3{float:left;margin:0px 80px 20px 80px;} | ||
102 | -.bn3{margin:0px;} | ||
103 | -div.content .filter{padding:5px;text-align:center;} | ||
104 | - | ||
105 | - | ||
106 | - | ||
107 | - | ||
108 | - /* ========================== */ | ||
109 | - /* ========= Êíîïêè ========= */ | ||
110 | - /* ========================== */ | ||
111 | - | ||
112 | - .basket{padding-bottom:5px;margin-bottom:10px;background:url('/img/t1.jpg') bottom repeat-x;text-align:left;} | ||
113 | - #basket{display:none;} | ||
114 | - #h_toggle{float:left;padding:0px;margin:0px;width:43px;cursor:pointer;} | ||
115 | - #h_toggle .t{background:url('/img/trightbasket.png') top no-repeat;width:43px;height:6px;font-size:0px;} | ||
116 | - #h_toggle .b{background:url('/img/brightbasket.png') top no-repeat;width:43px;height:18px;} | ||
117 | - #h_toggle .w{background:url('/img/bgrightbasket.png') repeat-y;} | ||
118 | - #h_toggle .txt{background:url('/img/txtbasket.jpg') center no-repeat;height:117px;} | ||
119 | - #horizontal_slide{width:0px;display:none;background:#ffffff;padding:0px;margin:0px;float:left;min-height:125px;} | ||
120 | - * html #horizontal_slide{height:141px;} | ||
121 | - #horizontal_slide .w{padding: 30px 20px 0;font-size:14px;font-weight:bold;} | ||
122 | - #h_toggle2{clear:both;float:left;padding:0px;margin:0px;width:43px;height:80px;cursor:pointer;background:blue;} | ||
123 | - #horizontal_slide2{float:left;height:80px;background:red;} | ||
124 | - | ||
125 | - div#inputArea div.delivery { padding: 8px 0;} | ||
126 | - | ||
127 | - .submit{border:1px solid #C2C2C2;background:#E9E9E9 url('/img/sub.jpg') repeat-x;padding:0px 10px 1px 10px;height:20px;color:#41545F;font-family:Arial,verdana;font-size:11px;cursor:pointer;} | ||
128 | - .red{color:red;} | ||
129 | - .txtb{font-weight:bold;} | ||
130 | - .txtr{font-size:14px;color:#FFF36D;font-weight:bold;} | ||
131 | - .txty{color:#FF0000;font-size:16px;font-weight:bold;} | ||
132 | - .name1{padding:5px 0px 0px 0px;height:50px;} | ||
133 | - .name2{padding:5px 0px 0px 0px;height:50px;} | ||
134 | - select{font-size:11px;color:#898989;} | ||
135 | - .brend1{color:#61BB49;} | ||
136 | - .basket{padding-bottom:5px;margin-bottom:10px;background:url('/img/t1.jpg') bottom repeat-x;text-align:left;} | ||
137 | - | ||
138 | - | ||
139 | - #compare{clear:both;display:none;} | ||
140 | - #compare span{display:none;} | ||
141 | - #compare a{display:block;width:43px;height:144px;background:url('/img/compare.jpg');} | ||
142 | - | ||
143 | - a.knopka1:visited, a.knopka1:link,a.knopka1:hover{display:inline-block;font-size:11px;background:url('/img/b1.jpg') repeat-x;height:25px;line-height:25px;width:85px;text-align:center;font-weight:bold;color: #ffffff;text-decoration: none;margin-right:5px;} | ||
144 | - a.knopka2:visited, a.knopka2:link,a.knopka2:hover{display:inline-block;font-size:11px;background:url('/img/b2.jpg') repeat-x;height:25px;line-height:25px;width:85px;text-align:center;font-weight:bold;color: #ffffff;text-decoration: none;margin-right:5px;} | ||
145 | - | ||
146 | - div.youtube { margin: 0 auto; width: 640px;} | ||
147 | - .stbsk{padding:25px 0px 0px 0px;float:left;width:250px;text-align:left;text-transform: uppercase;} | ||
148 | - | ||
149 | - /* ========================== */ | ||
150 | - /* ============ box ========= */ | ||
151 | - /* ========================== */ | ||
152 | - | ||
153 | - .box5{background:#F5F5F5;padding:5px;border-bottom:4px solid #CACACA;border-top:4px solid #CACACA;} | ||
154 | - .box3{background:#F5F5F5;padding:5px;margin-top:3px;border-bottom:4px solid #CACACA;} | ||
155 | - .box4{padding:0px;margin-top:3px;border-bottom:4px solid #CACACA;border-top:1px solid #CACACA;border-left:1px solid #CACACA;border-right:1px solid #CACACA;text-align:center;padding-bottom:5px;} | ||
156 | - .box_brend{float:left;width:155px;height:100px;text-align:center;} | ||
157 | - .box ul{list-style-type:none;margin:0px;padding:0px;} | ||
158 | - .box ul li{background:url('/img/li.jpg') left 7px no-repeat;padding:3px 0px 3px 20px;border-bottom:1px solid #DADADA;} | ||
159 | - .box ul.links{padding:3px 0px 3px 0px;} | ||
160 | - .box ul.links li{background:url('/img/li2.jpg') left 7px no-repeat;padding:3px 0px 3px 13px;} | ||
161 | - .box ul.links a{font-size:10px;color:#A2A2A2;} | ||
162 | - .box a:visited,.box a:link{color:#747474;font-weight:normal;font-size:12px;text-transform: uppercase;text-decoration:none;} | ||
163 | - .box a:hover{color:#F36420;} | ||
164 | - | ||
165 | - /* ========================== */ | ||
166 | - /* ======== title3 ========== */ | ||
167 | - /* ========================== */ | ||
168 | - | ||
169 | - .mcol-2 .title3, .mcol-2 .title {height:31px;line-height:31px;text-indent:20px;letter-spacing: 2px;background:#5DB843 url('/img/title.jpg');color:#ffffff;font-size:10px;font-weight:bold;text-transform: uppercase;} | ||
170 | - .mcol-2 .title3 .l, .mcol-2 .title .l{background:url('/img/t_l.jpg') left top no-repeat;} | ||
171 | - .mcol-2 .title3 .r, .mcol-2 .title .r{background:url('/img/t_r.jpg') right top no-repeat;} | ||
172 | - .mcol-2 .title3 .w, .title .w{height:31px;line-height:31px;} | ||
173 | - .mcol-2 .title3 h2, .mcol-2 .title3 h1, .mcol-2 .title3 .h1, .mcol-2 .title h2, .mcol-2 .title h1, .mcol-2 .title .h1{color:#ffffff;font-size:13px;font-weight:bold;display:inline;} | ||
174 | - | ||
175 | - /* ========================== */ | ||
176 | - /* ======== account ========= */ | ||
177 | - /* ========================== */ | ||
178 | - | ||
179 | - /* ========================== */ | ||
180 | - /* ======== products ======== */ | ||
181 | - /* ========================== */ | ||
182 | - | ||
183 | - .products{width:774px;} | ||
184 | - .products .row{border-left:1px solid #CDCDCD;border-right:1px solid #CDCDCD;border-bottom:4px solid #C8C8C8;margin-bottom:10px;} | ||
185 | - .products .row .wrp{padding:5px;} | ||
186 | - .products .pr_t{height:25px;line-height:25px;background:url('/img/prbg.jpg') repeat-x;text-transform: uppercase;color:#419B29;font-weight:bold;text-indent: 20px;} | ||
187 | - .products .pr_t .l{background:url('/img/prl.jpg') left top no-repeat;} | ||
188 | - .products .pr_t .r{background:url('/img/prr.jpg') right top no-repeat;} | ||
189 | - .products .infob{overflow:hidden ;padding:0px 10px 0px 10px;background:url('/img/tk.jpg') right repeat-y;} | ||
190 | - * html .products .infob{height:1%;} | ||
191 | - .products .infor{float:right;width:180px;padding-top:30px;} | ||
192 | - .products .infob p{padding-top:10px;text-indent: 10px;} | ||
193 | - | ||
194 | - /* ========================== */ | ||
195 | - /* ========= SLIDER ========= */ | ||
196 | - /* ========================== */ | ||
197 | - | ||
198 | - /* ----------------IMAGE SLIDER------------- */ | ||
199 | - #SlideItMoo_outer { | ||
200 | - width:680px; | ||
201 | - margin:0px auto 0px; | ||
202 | - display:block; | ||
203 | - position:relative; | ||
204 | - padding:0px 26px 0px 13px; | ||
205 | - } | ||
206 | - /* create custom forward-backward buttons for this container */ | ||
207 | - #SlideItMoo_outer .SlideItMoo_forward, | ||
208 | - #SlideItMoo_outer .SlideItMoo_back{ | ||
209 | - display:block; | ||
210 | - position:absolute; | ||
211 | - cursor:pointer; | ||
212 | - width:25px; | ||
213 | - height:250px; | ||
214 | - bottom:0px; | ||
215 | - right:0px; | ||
216 | - background:url(img/slideitmoo_forward.jpg) no-repeat center; | ||
217 | - } | ||
218 | - #SlideItMoo_outer .SlideItMoo_back { | ||
219 | - left:0px; | ||
220 | - background:url(img/slideitmoo_back.jpg) no-repeat center; | ||
221 | - } | ||
222 | - | ||
223 | - /* the width is set to show the number of thumbnails that will be visible */ | ||
224 | - #SlideItMoo_inner{ | ||
225 | - position:relative ; | ||
226 | - overflow:hidden ; | ||
227 | - width:680px ; /* set a display width to make the slider look good in case js is disabled */ | ||
228 | - margin:0px auto 0px; | ||
229 | - padding:0px 0px 0px; | ||
230 | - } | ||
231 | - /* the thumbnails container; set a width on it so everything will be fine */ | ||
232 | - #SlideItMoo_items { | ||
233 | - display:block; | ||
234 | - position:relative; | ||
235 | - } | ||
236 | - /* single element design */ | ||
237 | - #SlideItMoo_items div.SlideItMoo_element { | ||
238 | - display:block; | ||
239 | - position:relative; | ||
240 | - float:left; | ||
241 | - margin:0px 8px 0px; | ||
242 | - font-size:11px; | ||
243 | - width:153px; | ||
244 | - text-align:center; | ||
245 | - } | ||
246 | - #SlideItMoo_items a { padding:0px; margin:3px 0px 3px; clear:both; display:block; padding:2px; } | ||
247 | - #SlideItMoo_items a img{ border:3px solid #E3E1E4; } | ||
248 | - /* ----------------IMAGE SLIDER------------- */ | ||
249 | - #SlideItMoo_outer2 { | ||
250 | - width:680px; | ||
251 | - margin:0px auto 0px; | ||
252 | - display:block; | ||
253 | - position:relative; | ||
254 | - padding:0px 26px 0px 13px; | ||
255 | - } | ||
256 | - /* create custom forward-backward buttons for this container */ | ||
257 | - #SlideItMoo_outer2 .SlideItMoo_forward, | ||
258 | - #SlideItMoo_outer2 .SlideItMoo_back{ | ||
259 | - display:block; | ||
260 | - position:absolute; | ||
261 | - cursor:pointer; | ||
262 | - width:25px; | ||
263 | - height:250px; | ||
264 | - bottom:0px; | ||
265 | - right:0px; | ||
266 | - background:url(img/slideitmoo_forward.jpg) no-repeat center; | ||
267 | - } | ||
268 | - #SlideItMoo_outer2 .SlideItMoo_back { | ||
269 | - left:0px; | ||
270 | - background:url(img/slideitmoo_back.jpg) no-repeat center; | ||
271 | - } | ||
272 | - | ||
273 | - /* the width is set to show the number of thumbnails that will be visible */ | ||
274 | - #SlideItMoo_inner2{ | ||
275 | - position:relative ; | ||
276 | - overflow:hidden ; | ||
277 | - width:680px ; /* set a display width to make the slider look good in case js is disabled */ | ||
278 | - margin:0px auto 0px; | ||
279 | - padding:0px 0px 0px; | ||
280 | - } | ||
281 | - /* the thumbnails container; set a width on it so everything will be fine */ | ||
282 | - #SlideItMoo_items2 { | ||
283 | - display:block; | ||
284 | - position:relative; | ||
285 | - } | ||
286 | - /* single element design */ | ||
287 | - #SlideItMoo_items2 div.SlideItMoo_element2 { | ||
288 | - display:block; | ||
289 | - position:relative; | ||
290 | - float:left; | ||
291 | - margin:0px 8px 0px; | ||
292 | - font-size:11px; | ||
293 | - width:153px; | ||
294 | - text-align:center; | ||
295 | - } | ||
296 | - #SlideItMoo_items2 a { padding:0px; margin:3px 0px 3px; clear:both; display:block; padding:2px; } | ||
297 | - #SlideItMoo_items2 a img{ border:3px solid #E3E1E4; } | ||
298 | - .jdom{color:red;} | ||
299 | - .box_brend{float:left;width:155px;height:100px;text-align:center;} | ||
300 | - #vertical_slide{display:none;} | ||
301 | - .pic_row{height:160px;} | ||
302 | - #share42 { | ||
303 | - position: fixed1; | ||
304 | - z-index: 1000; | ||
305 | - margin-left1: -70px; /* ñìåùåíèå ïàíåëè âëåâî îò êðàÿ êîíòåíòà */ | ||
306 | - right:0px; | ||
307 | - margin-top2:450px; | ||
308 | - padding: 6px 6px 0; | ||
309 | - background: #FFF; | ||
310 | - border: 1px solid #E9E9E9; | ||
311 | - -moz-border-radius: 4px; | ||
312 | - border-radius: 4px; margin-bottom:5px; | ||
313 | - } | ||
314 | - * html #share42 {display: none} | ||
315 | - #share42:hover { | ||
316 | - background: #F6F6F6; | ||
317 | - border: 1px solid #D4D4D4; | ||
318 | - -webkit-box-shadow: 0 0 5px #DDD; | ||
319 | - -moz-box-shadow: 0 0 5px #DDD; | ||
320 | - box-shadow: 0 0 5px #DDD; | ||
321 | - } | ||
322 | - #share42 a {opacity: 0.5} | ||
323 | - #share42:hover a {opacity: 0.7} | ||
324 | - #share42 a:hover {opacity: 1} | ||
325 | - #share42 img {margin: 0 !important; padding: 0 !important; border: none !important;} | ||
326 | - | ||
327 | - .cine{width:100px;background:#EE1C25;color:#ffffff;margin-top:5px;} | ||
328 | - .cine .l{background:url('/img/c_l.jpg') left top no-repeat;padding-left:5px;} | ||
329 | - .cine .r{background:url('/img/c_r.jpg') right top no-repeat;padding-right:8px;} | ||
330 | - .cine .w{height:24px;line-height:24px;background:url('/img/uah.gif') right center no-repeat;padding-right:12px;} | ||
331 | - .cine2{color:#EE1D23;} | ||
332 | - | ||
333 | - /* ========================== */ | ||
334 | - /* ======== client ========= */ | ||
335 | - /* ========================== */ | ||
336 | - | ||
337 | - #inputArea | ||
338 | - { | ||
339 | - font-family: Arial, Sans-Serif; | ||
340 | - font-size: 13px; | ||
341 | - padding: 10px; | ||
342 | - } | ||
343 | - .activeField | ||
344 | - { | ||
345 | - background-image: none; | ||
346 | - background-color: #ffffff; | ||
347 | - border: solid 1px #0FAFBD; | ||
348 | - font-family: Arial, Sans-Serif; | ||
349 | - font-size: 13px; | ||
350 | - margin-bottom: 5px; | ||
351 | - display: block; | ||
352 | - padding: 2px; | ||
353 | - } | ||
354 | - .idle | ||
355 | - { | ||
356 | - border: solid 1px #0F75BD; | ||
357 | - background-image: url( '/img/gray_bg.png' ); | ||
358 | - background-repeat: repeat-x; | ||
359 | - background-position: top; | ||
360 | - background-color:#FFFFFF; | ||
361 | - font-family: Arial, Sans-Serif; | ||
362 | - font-size: 13px; | ||
363 | - margin-bottom: 5px; | ||
364 | - display: block; | ||
365 | - padding: 2px; | ||
366 | - | ||
367 | - } | ||
368 | - #inputArea .activeField,#inputArea .idle{width:450px;} | ||
369 | - | ||
370 | - div.tabs-client div { | ||
371 | - float: left; | ||
372 | - padding: 5px 10px; | ||
373 | - } | ||
374 | - | ||
375 | - div.tabs-client {border-bottom:1px solid #075cb6; height:30px;} | ||
376 | - div.tabs-client div {height: 15px; padding-top: 10px; color:#fff; font-size:10px; text-transform:uppercase; cursor:pointer; } | ||
377 | - div.tabs-client .active { background-image:url('/img/active.png'); background-repeat:no-repeat;} | ||
378 | - div.tabs-client .unactive { background-image:url('/img/unactive.png');background-repeat:no-repeat; color:#000;} | ||
379 | - | ||
380 | - div#client_new {font-size: 11px;} | ||
381 | - div#client_new .attention {margin:20px 0 30px 0;display: block;} | ||
382 | - div#client_new .mailing { display: table; float:left; margin:0; padding:0;} | ||
383 | - div#client_new .advice { display: block; margin-bottom:15px;} | ||
384 | - div#client_new .advice a {font-size: 11px;} | ||
385 | - | ||
386 | - div#client_old div.signup {box-shadow:none;} | ||
387 | - div#client_old div.signup div.col-1 {background:none;} | ||
388 | - | ||
389 | - /* ========================== */ | ||
390 | - /* ======== general ========= */ | ||
391 | - /* ========================== */ | ||
392 | - | ||
393 | - /* Âåðòèêàëüíîå ïîçèöèîíèðîâàíèå â DIV */ | ||
394 | - .table {display:table-cell;} | ||
395 | - .table .tr, .table .td {position: relative;} | ||
396 | - | ||
397 | - .vmiddle {vertical-align:middle;} | ||
398 | - .vbottom {vertical-align:bottom;} | ||
399 | - | ||
400 | - /* [Âåðòèêàëüíîå ïîçèöèîíèðîâàíèå â DIV] */ | ||
401 | - | ||
402 | - /* fix for ie6 */ | ||
403 | - .vmiddle .tr, .vmiddle .td { //top: 50%; width: 100%;} | ||
404 | - .vmiddle .td {//top: -50%;} |
1 | -BODY{font-family:Arial,tahoma;font-size:12px;background:#fff;color:#3C3C3C;} | ||
2 | -body,form{padding:0px;margin:0px;} | ||
3 | -/* | ||
4 | - h1,h2{padding:0px;margin:0px;} | ||
5 | - h1{font-size:20px;font-weight:normal;color:#BE0002;padding-bottom:5px;} | ||
6 | - h2{padding-bottom:10px;color:#F96734;font-weight:normal;} | ||
7 | - .bold1{font-weight:bold;color:#005ABD;font-size:14px;} | ||
8 | - p{margin:0px;padding:1px 0px 1px 0px;} | ||
9 | - ul,li{margin:0px;padding:0px;} | ||
10 | - table{font-size:12px;} | ||
11 | - span.onstock{ display: block; | ||
12 | - font-size: 11px; | ||
13 | - margin-bottom: 10px;} | ||
14 | - | ||
15 | - .fl{float:left;} | ||
16 | - .fr{float:right;} | ||
17 | - .both{clear:both;font-size:0px;} | ||
18 | - .ct{text-align:center;} | ||
19 | - .rgh{text-align:right;} | ||
20 | - div.youtube { margin: 0 auto; width: 640px;} | ||
21 | - | ||
22 | - a:visited,a:link{font-size:12px;color: #0055A4;text-decoration: underline;} | ||
23 | - a:hover {font-size:12px;color:#C88A57;text-decoration: underline;} | ||
24 | - | ||
25 | - a.link1:visited, a.link1:link{font-size:12px;font-weight:normal;color: #BE0002;text-decoration: none;} | ||
26 | - a.link1:hover {font-size:12px;font-weight:normal;color:#EE1C25;text-decoration: underline;} | ||
27 | - | ||
28 | - a.link2:visited, a.link2:link{font-size:12px;font-weight:normal;color: #0054A7;text-decoration: underline;} | ||
29 | - a.link2:hover {font-size:12px;font-weight:normal;color:#EE1C25;text-decoration: underline;} | ||
30 | - | ||
31 | - a.link3:visited, a.link3:link{font-size:12px;font-weight:normal;color: #333333;text-decoration: none;} | ||
32 | - a.link3:hover {font-size:12px;font-weight:normal;color:#EE1C25;text-decoration: underline;} | ||
33 | - | ||
34 | - a.smill:visited, a.smill:link{font-size:11px;font-weight:normal;color: #015AB4;text-decoration: underline;} | ||
35 | - a.smill:hover {font-size:11px;font-weight:normal;color:#EE1D23;text-decoration: underline;} | ||
36 | - | ||
37 | - a.smill2:visited, a.smill2:link{font-size:11px;font-weight:normal;color: #9ACFFF;text-decoration: underline;} | ||
38 | - a.smill2:hover {font-size:11px;font-weight:normal;color:#C62127;text-decoration: underline;} | ||
39 | - | ||
40 | - a.link_but1:visited, a.link_but1:link, a.link_but1:hover, | ||
41 | - div.leftbar input.button-send {display:block;width:112px;height:28px;line-height:28px;background:#419B29 url('/img/but1.jpg') no-repeat;font-size:12px;font-weight:bold;color: #ffffff;text-decoration: none;text-align:center;} | ||
42 | - | ||
43 | - div.leftbar input.button-send {margin:10px auto; padding:0px; text-shadow:none; box-shadow:none;border:none;} | ||
44 | - | ||
45 | - a.link_but2:visited, a.link_but2:link, a.link_but2:hover{display:block;width:133px;height:20px;line-height:20px;background:#E5E5E5 url('/img/com_sub.jpg') no-repeat;font-size:11px;font-weight:normal;color: #000000;text-decoration: none;text-align:center;} | ||
46 | - | ||
47 | - a.link_y:visited, a.link_y:link{font-size:18px;font-weight:bold;color: #FFF102;text-decoration: none;} | ||
48 | - a.link_y:hover {font-size:18px;font-weight:bold;color:#FFF102;text-decoration: underline;} | ||
49 | - | ||
50 | -.site{width:980px;text-align:left;}*/ | ||
51 | -.logo{float:left;} | ||
52 | -.logo span{display:none;} | ||
53 | -.logo h2{margin:0px;padding:0px;} | ||
54 | -.logo h2 a{display: block;width:225px;height:130px;} | ||
55 | -.header{width:980px;height:233px;background:url('/img/header.jpg') no-repeat;} | ||
56 | -.header .w{padding:0px 10px 10px 10px;} | ||
57 | -.header .akcii_top{height:130px;text-align:right;color:#ffffff;margin-bottom:5px;} | ||
58 | -.header .akcii_top .w{padding:10px;} | ||
59 | -.akcbox{width:150px;text-align:left;} | ||
60 | -.menu_top{background:url('/img/menu_up.gif') no-repeat;height:31px;line-height:31px;display:inline-block;width:825px;text-align:center;} | ||
61 | -.menu_top .l{background:url('/img/m_l.jpg') left top no-repeat;} | ||
62 | -.menu_top .r{background:url('/img/m_r.jpg') right top no-repeat;} | ||
63 | -.menu_top ul{list-style-type:none;padding:0px 10px 0px 0px;} | ||
64 | -.menu_top li{display:inline;padding:0px 12px 0px 10px;font-size:14px;color:#ffffff;} | ||
65 | -.menu_top li a:visited,.menu_top li a:link{font-size:14px;color:#0153A5;font-weight:bold;text-decoration:none;} | ||
66 | -.menu_top li a:hover{color:#F26521;} | ||
67 | -.menu_top .n{background:none;padding-right:0px;margin:0px;} | ||
68 | - | ||
69 | -.location{padding:8px 0px 8px 0px;} | ||
70 | -.location .row{width:137px;height:49px;line-height:17px;float:left;background:url('/img/lt.jpg') right repeat-y;font-size:14px;font-weight:bold;} | ||
71 | -.location .row .w{padding:0px 10px 0px 10px;} | ||
72 | -.location .row a{text-decoration:none;font-size:14px;color:#000000;} | ||
73 | -.location .n{background:none;} | ||
74 | -.location .n .w{padding:0px 0px 0px 10px;} | ||
75 | -.location .row sup{font-size:9px;font-weight:normal;} | ||
76 | - | ||
77 | -.layout{padding-top:20px;} | ||
78 | -.leftbar{float:left;width:188px;} | ||
79 | -.rightbar1{float:right;width:188px;} | ||
80 | -.content {overflow:hidden;padding:0px 0px 0px 15px;} | ||
81 | -* html .content{height:1%;} | ||
82 | -.info{padding-top:20px;} | ||
83 | -.mt{margin-top:10px;} | ||
84 | -.mt2{margin-top:15px;} | ||
85 | -.mb{margin-bottom:10px;} | ||
86 | - | ||
87 | - .title,div.title a, | ||
88 | - div.leftbar div.audience form div.title {height:31px;line-height:31px;background:#5DB843 url('/img/title.jpg');color:#ffffff;text-align:center;font-size:12px;text-transform: uppercase;font-weight:bold;text-decoration:none;} | ||
89 | - div.leftbar div.audience form{ | ||
90 | - background: none repeat scroll 0 0 #F5F5F5; | ||
91 | - border-bottom: 4px solid #CACACA; | ||
92 | - margin:10px 0 ; | ||
93 | - } | ||
94 | - div.leftbar div.audience form div.title { | ||
95 | - padding:0; | ||
96 | - -webkit-border-radius: 5px 5px 0 0; | ||
97 | - -moz-border-radius: 5px 5px 0 0; | ||
98 | - border-radius: 5px 5px 0 0; | ||
99 | - } | ||
100 | - | ||
101 | - div.leftbar div.audience {margin: 10px 0; width:100%; padding:0;} | ||
102 | - | ||
103 | -div.title a {background:none;} | ||
104 | -.title .l{background:url('/img/t_l.jpg') left top no-repeat;} | ||
105 | -.title .r{background:url('/img/t_r.jpg') right top no-repeat;} | ||
106 | -.box{background:#F5F5F5;padding:5px;margin-top:3px;border-bottom:4px solid #CACACA;} | ||
107 | -.box5{background:#F5F5F5;padding:5px;border-bottom:4px solid #CACACA;border-top:4px solid #CACACA;} | ||
108 | -.box3{background:#F5F5F5;padding:5px;margin-top:3px;border-bottom:4px solid #CACACA;} | ||
109 | -.box4{padding:0px;margin-top:3px;border-bottom:4px solid #CACACA;border-top:1px solid #CACACA;border-left:1px solid #CACACA;border-right:1px solid #CACACA;text-align:center;padding-bottom:5px;} | ||
110 | -.box ul{list-style-type:none;margin:0px;padding:0px;} | ||
111 | -.box ul li{background:url('/img/li.jpg') left 7px no-repeat;padding:3px 0px 3px 20px;border-bottom:1px solid #DADADA;} | ||
112 | -.box ul.links{padding:3px 0px 3px 0px;} | ||
113 | -.box ul.links li{background:url('/img/li2.jpg') left 7px no-repeat;padding:3px 0px 3px 13px;} | ||
114 | -.box ul.links a{font-size:10px;color:#A2A2A2;} | ||
115 | -.box a:visited,.box a:link{color:#747474;font-weight:normal;font-size:12px;text-transform: uppercase;text-decoration:none;} | ||
116 | -.box a:hover{color:#F36420;} | ||
117 | -.search2{background:#F4F2F3;} | ||
118 | -.search2 .l{background:url('/img/c_1.jpg') left top no-repeat;} | ||
119 | -.search2 .r{background:url('/img/c_2.jpg') right top no-repeat;} | ||
120 | -.search2 .lb{background:url('/img/c_4.jpg') left bottom no-repeat;} | ||
121 | -.search2 .rb{background:url('/img/c_3.jpg') right bottom no-repeat;} | ||
122 | -.search2 .w{padding:7px;min-height:50px;} | ||
123 | -* html .search2 .w{height:50px;} | ||
124 | -.search2 table{text-align:left;} | ||
125 | -.search2 select{width:100px;margin-right:10px;} | ||
126 | -.search{background:url('/img/search.jpg') repeat-x;padding:0px;text-align:center;} | ||
127 | -.search .l{background:url('/img/s_l.jpg') left top no-repeat;} | ||
128 | -.search .r{background:url('/img/s_r.jpg') right top no-repeat;} | ||
129 | -.search .w{padding:1px 5px 0px 5px;} | ||
130 | -.search select{width:120px;margin-right:10px;} | ||
131 | -.search input{margin-right:10px;} | ||
132 | - | ||
133 | -.akciya .row{background:#F5F5F5;width:175px;float:left;margin-right:19px;margin-bottom:19px;padding:20px 0px 20px 0px;border-top:1px solid #CACACA;border-bottom:4px solid #CACACA;height:200px;} | ||
134 | -.akciya .n{margin:0px;} | ||
135 | -.box2 a:visited,.box2 a:link{color:#747474;font-weight:normal;} | ||
136 | -.box2 a:hover{color:#F36420;} | ||
137 | -.cine{width:100px;background:#EE1C25;color:#ffffff;margin-top:5px;} | ||
138 | -.cine .l{background:url('/img/c_l.jpg') left top no-repeat;padding-left:5px;} | ||
139 | -.cine .r{background:url('/img/c_r.jpg') right top no-repeat;padding-right:8px;} | ||
140 | -.cine .w{height:24px;line-height:24px;background:url('/img/uah.gif') right center no-repeat;padding-right:12px;} | ||
141 | -.cine2{color:#EE1D23;} | ||
142 | - | ||
143 | -.rbk .row{width:180px;float:left;margin-right:17px;margin-bottom:10px;} | ||
144 | -.rbk .n{margin:0px;} | ||
145 | -.title2_2{height:31px;background:url('/img/title2.jpg') repeat-x;color:#5E655E;text-align:center;font-size:12px;font-weight:bold;text-transform: uppercase;} | ||
146 | - | ||
147 | -.title2{height:31px;line-height:31px;background:url('/img/title2.jpg') repeat-x;color:#5E655E;text-align:center;font-size:12px;font-weight:bold;text-transform: uppercase;} | ||
148 | -.title2 a:visited, .title2 a:link{font-size:12px;font-weight:bold;color: #5E655E;text-decoration: none;} | ||
149 | -.title2 a:hover {font-size:12px;font-weight:bold;color:#EE1C25;text-decoration: underline;} | ||
150 | -.title2 .l{background:url('/img/t2_l.jpg') left top no-repeat;height:31px;} | ||
151 | -.title2 .r{background:url('/img/t2_r.jpg') right top no-repeat;height:31px;} | ||
152 | -.box2{padding:10px 0px 10px 0px;} | ||
153 | -.box2 img{margin-right:10px;} | ||
154 | - | ||
155 | -.title3{height:31px;line-height:31px;text-indent:20px;letter-spacing: 2px;background:#5DB843 url('/img/title.jpg');color:#ffffff;font-size:10px;font-weight:bold;text-transform: uppercase;} | ||
156 | -.title3 .l{background:url('/img/t_l.jpg') left top no-repeat;} | ||
157 | -.title3 .r{background:url('/img/t_r.jpg') right top no-repeat;} | ||
158 | -.title3 .w{height:31px;line-height:31px;} | ||
159 | -.title3 h2,.title3 h1,.title3 .h1{color:#ffffff;font-size:13px;font-weight:bold;display:inline;} | ||
160 | -.tb1{font-size:12px;} | ||
161 | - | ||
162 | -.fotter{background:#F5F5F5;padding:15px;border-top:3px solid #CDCDCD;margin-top:20px;} | ||
163 | -.fotter .left{float:left;width:190px;font-size:11px;} | ||
164 | -.fotter .right{float:right;width:170px;font-size:11px;text-align:right;} | ||
165 | -.fotter .right a{font-size:11px;color:#969696;} | ||
166 | -.fotter .center{overflow:hidden;text-align:center;} | ||
167 | -.fotter ul{list-style-type:none;} | ||
168 | -.fotter li{display:inline;padding:0px 5px 0px 5px;font-size:12px;color:#464646;border-right:1px solid #464646;} | ||
169 | -.fotter li a{font-size:12px;color:#464646;text-decoration:none;} | ||
170 | -.fotter li a:hover{color:#F16623;} | ||
171 | -.fotter .n{border:none;} | ||
172 | - | ||
173 | - | ||
174 | -.date{color:#0B4B89;font-size:11px;} | ||
175 | -.pic{border:3px solid #E3E1E4;} | ||
176 | -.pic3{border:3px solid #E3E1E4;} | ||
177 | -.right{margin-right:5px;} | ||
178 | -.status{background:#FBFFBB;padding:5px;border:1px solid #EA4902;margin:3px 0px 3px 0px;} | ||
179 | -.picbox{float:left;width:245px;text-align:center;padding-bottom:10px;} | ||
180 | -.pager{padding:5px;} | ||
181 | -/* | ||
182 | - #inputArea | ||
183 | - { | ||
184 | - font-family: Arial, Sans-Serif; | ||
185 | - font-size: 13px; | ||
186 | - padding: 10px; | ||
187 | - } | ||
188 | - .activeField | ||
189 | - { | ||
190 | - background-image: none; | ||
191 | - background-color: #ffffff; | ||
192 | - border: solid 1px #0FAFBD; | ||
193 | - font-family: Arial, Sans-Serif; | ||
194 | - font-size: 13px; | ||
195 | - margin-bottom: 5px; | ||
196 | - display: block; | ||
197 | - padding: 2px; | ||
198 | - } | ||
199 | - .idle | ||
200 | - { | ||
201 | - border: solid 1px #0F75BD; | ||
202 | - background-image: url( '/img/gray_bg.png' ); | ||
203 | - background-repeat: repeat-x; | ||
204 | - background-position: top; | ||
205 | - background-color:#FFFFFF; | ||
206 | - font-family: Arial, Sans-Serif; | ||
207 | - font-size: 13px; | ||
208 | - margin-bottom: 5px; | ||
209 | - display: block; | ||
210 | - padding: 2px; | ||
211 | - | ||
212 | - } | ||
213 | - #inputArea .activeField,#inputArea .idle{width:450px;} | ||
214 | - | ||
215 | - | ||
216 | - | ||
217 | - div.tabs-client div { | ||
218 | - float: left; | ||
219 | - padding: 5px 10px; | ||
220 | - } | ||
221 | - | ||
222 | - div.tabs-client {border-bottom:1px solid #075cb6; height:30px;} | ||
223 | - div.tabs-client div {height: 15px; padding-top: 10px; color:#fff; font-size:10px; text-transform:uppercase; cursor:pointer; } | ||
224 | - div.tabs-client .active { background-image:url('/img/active.png'); background-repeat:no-repeat;} | ||
225 | - div.tabs-client .unactive { background-image:url('/img/unactive.png');background-repeat:no-repeat; color:#000;} | ||
226 | - | ||
227 | - div#client_new {font-size: 11px;} | ||
228 | - div#client_new .attention {margin:20px 0 30px 0;display: block;} | ||
229 | - div#client_new .mailing { display: table; float:left; margin:0; padding:0;} | ||
230 | - div#client_new .advice { display: block; margin-bottom:15px;} | ||
231 | - div#client_new .advice a {font-size: 11px;} | ||
232 | - | ||
233 | - div#client_old div.signup {box-shadow:none;} | ||
234 | - div#client_old div.signup div.col-1 {background:none;} | ||
235 | - | ||
236 | - | ||
237 | -*/ | ||
238 | - | ||
239 | - | ||
240 | - | ||
241 | -/* | ||
242 | -div#inputArea div.delivery { padding: 8px 0;} | ||
243 | - | ||
244 | -.submit{border:1px solid #C2C2C2;background:#E9E9E9 url('/img/sub.jpg') repeat-x;padding:0px 10px 1px 10px;height:20px;color:#41545F;font-family:Arial,verdana;font-size:11px;cursor:pointer;} | ||
245 | -.red{color:red;} | ||
246 | -.txtb{font-weight:bold;} | ||
247 | -.txtr{font-size:14px;color:#FFF36D;font-weight:bold;} | ||
248 | -.txty{color:#FF0000;font-size:16px;font-weight:bold;} | ||
249 | -.name1{padding:5px 0px 0px 0px;height:50px;} | ||
250 | -.name2{padding:5px 0px 0px 0px;height:50px;} | ||
251 | -select{font-size:11px;color:#898989;} | ||
252 | -.brend1{color:#61BB49;} | ||
253 | -.basket{padding-bottom:5px;margin-bottom:10px;background:url('/img/t1.jpg') bottom repeat-x;text-align:left;} | ||
254 | - | ||
255 | -#basket{display:none;} | ||
256 | -#h_toggle{float:left;padding:0px;margin:0px;width:43px;cursor:pointer;} | ||
257 | -#h_toggle .t{background:url('/img/trightbasket.png') top no-repeat;width:43px;height:6px;font-size:0px;} | ||
258 | -#h_toggle .b{background:url('/img/brightbasket.png') top no-repeat;width:43px;height:18px;} | ||
259 | -#h_toggle .w{background:url('/img/bgrightbasket.png') repeat-y;} | ||
260 | -#h_toggle .txt{background:url('/img/txtbasket.jpg') center no-repeat;height:117px;} | ||
261 | -#horizontal_slide{width:0px;display:none;background:#ffffff;padding:0px;margin:0px;float:left;min-height:125px;} | ||
262 | -* html #horizontal_slide{height:141px;} | ||
263 | -#horizontal_slide .w{padding: 30px 20px 0;font-size:14px;font-weight:bold;} | ||
264 | -#h_toggle2{clear:both;float:left;padding:0px;margin:0px;width:43px;height:80px;cursor:pointer;background:blue;} | ||
265 | -#horizontal_slide2{float:left;height:80px;background:red;} | ||
266 | -*/ | ||
267 | -.stbsk{padding:25px 0px 0px 0px;float:left;width:250px;text-align:left;text-transform: uppercase;} | ||
268 | -.fon1{height:32px;line-height:32px;padding:0px 20px 0px 20px;color:#0A61AF;font-size:16px;} | ||
269 | -.row3{text-align:center;padding:5px 0px 5px 0px;} | ||
270 | -.banner{text-align:center;padding-top:10px;} | ||
271 | -.banner_t{text-align:center;margin:10px 0px 10px 0px;} | ||
272 | -.phn1{font-size:14px;color:#60BB46;} | ||
273 | -.phncod{font-size:12px;color:#0055A5;} | ||
274 | - | ||
275 | -a.knopka1:visited, a.knopka1:link,a.knopka1:hover{display:inline-block;font-size:11px;background:url('/img/b1.jpg') repeat-x;height:25px;line-height:25px;width:85px;text-align:center;font-weight:bold;color: #ffffff;text-decoration: none;margin-right:5px;} | ||
276 | -a.knopka2:visited, a.knopka2:link,a.knopka2:hover{display:inline-block;font-size:11px;background:url('/img/b2.jpg') repeat-x;height:25px;line-height:25px;width:85px;text-align:center;font-weight:bold;color: #ffffff;text-decoration: none;margin-right:5px;} | ||
277 | - | ||
278 | -.pager{background:#F8F8F8;border-top:1px dashed #CCCCCC;border-bottom:1px dashed #CCCCCC;padding:7px;font-weight:normal;margin-bottom:5px;} | ||
279 | -.link_class{border:1px solid #CCCCCC;background:#EAEAEA;padding-left:3px;padding-right:3px;padding-top:2px;padding-bottom:3px;color:#993300;font-weight:bold;text-decoration: none;font-size:12px;} | ||
280 | -.link_class_active{border:1px solid #E7CFC3;background:#F3E7E1;padding-left:3px;padding-right:3px;padding-top:2px;padding-bottom:3px;color:#757575;font-weight:bold;text-decoration: underline;font-size:12px;} | ||
281 | -.topic{border:1px solid #D1D1D1;background:#EDEDED;padding:5px;} | ||
282 | -/* .filter{padding:5px;text-align:center;} | ||
283 | - */ | ||
284 | -/* ----------------IMAGE SLIDER------------- */ | ||
285 | -#SlideItMoo_outer { | ||
286 | - width:680px; | ||
287 | - margin:0px auto 0px; | ||
288 | - display:block; | ||
289 | - position:relative; | ||
290 | - padding:0px 26px 0px 13px; | ||
291 | -} | ||
292 | -/* create custom forward-backward buttons for this container */ | ||
293 | -#SlideItMoo_outer .SlideItMoo_forward, | ||
294 | -#SlideItMoo_outer .SlideItMoo_back{ | ||
295 | - display:block; | ||
296 | - position:absolute; | ||
297 | - cursor:pointer; | ||
298 | - width:25px; | ||
299 | - height:250px; | ||
300 | - bottom:0px; | ||
301 | - right:0px; | ||
302 | - background:url(img/slideitmoo_forward.jpg) no-repeat center; | ||
303 | -} | ||
304 | -#SlideItMoo_outer .SlideItMoo_back { | ||
305 | - left:0px; | ||
306 | - background:url(img/slideitmoo_back.jpg) no-repeat center; | ||
307 | -} | ||
308 | - | ||
309 | -/* the width is set to show the number of thumbnails that will be visible */ | ||
310 | -#SlideItMoo_inner{ | ||
311 | - position:relative ; | ||
312 | - overflow:hidden ; | ||
313 | - width:680px ; /* set a display width to make the slider look good in case js is disabled */ | ||
314 | - margin:0px auto 0px; | ||
315 | - padding:0px 0px 0px; | ||
316 | -} | ||
317 | -/* the thumbnails container; set a width on it so everything will be fine */ | ||
318 | -#SlideItMoo_items { | ||
319 | - display:block; | ||
320 | - position:relative; | ||
321 | -} | ||
322 | -/* single element design */ | ||
323 | -#SlideItMoo_items div.SlideItMoo_element { | ||
324 | - display:block; | ||
325 | - position:relative; | ||
326 | - float:left; | ||
327 | - margin:0px 8px 0px; | ||
328 | - font-size:11px; | ||
329 | - width:153px; | ||
330 | - text-align:center; | ||
331 | -} | ||
332 | -#SlideItMoo_items a { padding:0px; margin:3px 0px 3px; clear:both; display:block; padding:2px; } | ||
333 | -#SlideItMoo_items a img{ border:3px solid #E3E1E4; } | ||
334 | -/* ----------------IMAGE SLIDER------------- */ | ||
335 | -#SlideItMoo_outer2 { | ||
336 | - width:680px; | ||
337 | - margin:0px auto 0px; | ||
338 | - display:block; | ||
339 | - position:relative; | ||
340 | - padding:0px 26px 0px 13px; | ||
341 | -} | ||
342 | -/* create custom forward-backward buttons for this container */ | ||
343 | -#SlideItMoo_outer2 .SlideItMoo_forward, | ||
344 | -#SlideItMoo_outer2 .SlideItMoo_back{ | ||
345 | - display:block; | ||
346 | - position:absolute; | ||
347 | - cursor:pointer; | ||
348 | - width:25px; | ||
349 | - height:250px; | ||
350 | - bottom:0px; | ||
351 | - right:0px; | ||
352 | - background:url(img/slideitmoo_forward.jpg) no-repeat center; | ||
353 | -} | ||
354 | -#SlideItMoo_outer2 .SlideItMoo_back { | ||
355 | - left:0px; | ||
356 | - background:url(img/slideitmoo_back.jpg) no-repeat center; | ||
357 | -} | ||
358 | - | ||
359 | -/* the width is set to show the number of thumbnails that will be visible */ | ||
360 | -#SlideItMoo_inner2{ | ||
361 | - position:relative ; | ||
362 | - overflow:hidden ; | ||
363 | - width:680px ; /* set a display width to make the slider look good in case js is disabled */ | ||
364 | - margin:0px auto 0px; | ||
365 | - padding:0px 0px 0px; | ||
366 | -} | ||
367 | -/* the thumbnails container; set a width on it so everything will be fine */ | ||
368 | -#SlideItMoo_items2 { | ||
369 | - display:block; | ||
370 | - position:relative; | ||
371 | -} | ||
372 | -/* single element design */ | ||
373 | -#SlideItMoo_items2 div.SlideItMoo_element2 { | ||
374 | - display:block; | ||
375 | - position:relative; | ||
376 | - float:left; | ||
377 | - margin:0px 8px 0px; | ||
378 | - font-size:11px; | ||
379 | - width:153px; | ||
380 | - text-align:center; | ||
381 | -} | ||
382 | -#SlideItMoo_items2 a { padding:0px; margin:3px 0px 3px; clear:both; display:block; padding:2px; } | ||
383 | -#SlideItMoo_items2 a img{ border:3px solid #E3E1E4; } | ||
384 | -.products{width:774px;} | ||
385 | -.products .row{border-left:1px solid #CDCDCD;border-right:1px solid #CDCDCD;border-bottom:4px solid #C8C8C8;margin-bottom:10px;} | ||
386 | -.products .row .wrp{padding:5px;} | ||
387 | -.products .pr_t{height:25px;line-height:25px;background:url('/img/prbg.jpg') repeat-x;text-transform: uppercase;color:#419B29;font-weight:bold;text-indent: 20px;} | ||
388 | -.products .pr_t .l{background:url('/img/prl.jpg') left top no-repeat;} | ||
389 | -.products .pr_t .r{background:url('/img/prr.jpg') right top no-repeat;} | ||
390 | -.products .infob{overflow:hidden ;padding:0px 10px 0px 10px;background:url('/img/tk.jpg') right repeat-y;} | ||
391 | -* html .products .infob{height:1%;} | ||
392 | -.products .infor{float:right;width:180px;padding-top:30px;} | ||
393 | -.products .infob p{padding-top:10px;text-indent: 10px;} | ||
394 | -/* | ||
395 | -.bgcontact{background:url('/img/bgcontact.jpg');width:363px;height:136px;font-weight:bold;padding:0px 10px 0px 0px;} | ||
396 | -.block_info_item2,.item_news{border-bottom:1px solid #C8C8C8;padding-bottom:5px;margin-bottom:5px;} | ||
397 | -.perPage{text-align:right;padding:5px 0px 5px 0px;} | ||
398 | -.item_article{float:left;width:375px;margin-right:10px;margin-bottom:5px;background:#F8F8F8;min-height:160px;padding:3px;border-bottom:4px solid #C8C8C8;} | ||
399 | -* html .item_article{height:160px;} | ||
400 | -.item_article ul{margin-left:20px;} | ||
401 | -.imn{margin:0px;} | ||
402 | -.newsinfos{display:block;height:105px;} | ||
403 | -.bots{margin-top:15px;} | ||
404 | -.bots a{display:inline-block;width:158px;height:31px;line-height:31px;text-align:center;background:#DCDCDC url('/img/bt1.jpg') no-repeat;} | ||
405 | -.bot_content{padding:5px;border:2px solid #CACACA;} | ||
406 | -.box_pic{text-align:center;float:left;width:200px;} | ||
407 | -.feature{display:none;} | ||
408 | -.products_list_row{width:153px;float:left;margin:0px 19px 0px 19px;} | ||
409 | -.list_rubric{color:#3D946A;font-size:14px;padding-top:10px;} | ||
410 | -#fly_banner{position:absolute;top:30%;left:35%;} | ||
411 | -#compare{clear:both;display:none;} | ||
412 | -#compare span{display:none;} | ||
413 | -#compare a{display:block;width:43px;height:144px;background:url('/img/compare.jpg');} | ||
414 | - | ||
415 | -.jdom{color:red;} | ||
416 | -.box_brend{float:left;width:155px;height:100px;text-align:center;} | ||
417 | -#vertical_slide{display:none;} | ||
418 | -.pic_row{height:160px;} | ||
419 | -#share42 { | ||
420 | - position: fixed1; | ||
421 | - z-index: 1000; | ||
422 | - margin-left1: -70px; | ||
423 | - right:0px; | ||
424 | - margin-top2:450px; | ||
425 | - padding: 6px 6px 0; | ||
426 | - background: #FFF; | ||
427 | - border: 1px solid #E9E9E9; | ||
428 | - -moz-border-radius: 4px; | ||
429 | - border-radius: 4px; margin-bottom:5px; | ||
430 | -} | ||
431 | -* html #share42 {display: none} | ||
432 | -#share42:hover { | ||
433 | - background: #F6F6F6; | ||
434 | - border: 1px solid #D4D4D4; | ||
435 | - -webkit-box-shadow: 0 0 5px #DDD; | ||
436 | - -moz-box-shadow: 0 0 5px #DDD; | ||
437 | - box-shadow: 0 0 5px #DDD; | ||
438 | -} | ||
439 | -#share42 a {opacity: 0.5} | ||
440 | -#share42:hover a {opacity: 0.7} | ||
441 | -#share42 a:hover {opacity: 1} | ||
442 | -#share42 img {margin: 0 !important; padding: 0 !important; border: none !important;} | ||
443 | - | ||
444 | -.hr1{background:url('/img/h.jpg') top repeat-x;padding:5px 0px;} | ||
445 | - | ||
446 | -.block3{float:left;margin:0px 80px 20px 80px;} | ||
447 | -.bn3{margin:0px;} | ||
448 | -*/ | ||
449 | \ No newline at end of file | 0 | \ No newline at end of file |
1 | - | ||
2 | - div.window {width:1000px;margin: 0 auto; padding:0;} | ||
3 | - | ||
4 | - /* ========================== */ | ||
5 | - /* =========== top ========== */ | ||
6 | - /* ========================== */ | ||
7 | - | ||
8 | - div.top {height:245px;} | ||
9 | - div.top div.head {height:189px; background: url('/img/stock/vasya.png'); background-position: 460px 0px; background-repeat:no-repeat;} | ||
10 | - div.top div.head div.inside {height:155px;} | ||
11 | - div.top div.head div.inside div.logo {width:261px; height:113px;background: url('/img/stock/logo.jpg'); margin:25px 0 0;} | ||
12 | - div.top div.head div.menu .active a {color:#a1a1a1;} | ||
13 | - div.top div.head div.menu .active { | ||
14 | - background: #a1a1a1; /* Old browsers */ | ||
15 | - /* IE9 SVG, needs conditional override of 'filter' to 'none' */ | ||
16 | - background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkYmRiZGIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); | ||
17 | - background: -moz-linear-gradient(top, #ffffff 0%, #dbdbdb 100%); /* FF3.6+ */ | ||
18 | - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#dbdbdb)); /* Chrome,Safari4+ */ | ||
19 | - background: -webkit-linear-gradient(top, #ffffff 0%,#dbdbdb 100%); /* Chrome10+,Safari5.1+ */ | ||
20 | - background: -o-linear-gradient(top, #ffffff 0%,#dbdbdb 100%); /* Opera 11.10+ */ | ||
21 | - background: -ms-linear-gradient(top, #ffffff 0%,#dbdbdb 100%); /* IE10+ */ | ||
22 | - background: linear-gradient(top, #ffffff 0%,#dbdbdb 100%); /* W3C */ | ||
23 | - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dbdbdb',GradientType=0 ); /* IE6-8 */ | ||
24 | - } | ||
25 | - div.top div.head div.menu {height:35px; text-align:center;} | ||
26 | - div.top div.head div.menu ul {display: table; margin: auto; } | ||
27 | - div.top div.head div.menu ul li {list-style: none;margin: 0 5px; background:#59b43f; } | ||
28 | - div.top div.head div.menu ul a {text-decoration:none; text-transform:uppercase; display: block; padding: 10px 20px; font-size:12px;color: #FFFFFF;} | ||
29 | - div.top div.head div.menu .item {float:left; } | ||
30 | - div.top div.filter { | ||
31 | - height:55px; | ||
32 | - background:#989898; | ||
33 | - /* IE9 SVG, needs conditional override of 'filter' to 'none' */ | ||
34 | - background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2QzZDNkMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM3ZjdmN2YiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); | ||
35 | - background: -moz-linear-gradient(top, #d3d3d3 0%, #7f7f7f 100%); /* FF3.6+ */ | ||
36 | - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d3d3d3), color-stop(100%,#7f7f7f)); /* Chrome,Safari4+ */ | ||
37 | - background: -webkit-linear-gradient(top, #d3d3d3 0%,#7f7f7f 100%); /* Chrome10+,Safari5.1+ */ | ||
38 | - background: -o-linear-gradient(top, #d3d3d3 0%,#7f7f7f 100%); /* Opera 11.10+ */ | ||
39 | - background: -ms-linear-gradient(top, #d3d3d3 0%,#7f7f7f 100%); /* IE10+ */ | ||
40 | - background: linear-gradient(top, #d3d3d3 0%,#7f7f7f 100%); /* W3C */ | ||
41 | - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d3d3d3', endColorstr='#7f7f7f',GradientType=0 ); /* IE6-8 */ | ||
42 | - } | ||
43 | - div.top div.filter div.filters-block{margin-left: 55px;} | ||
44 | - div.top div.filter div.filters-block span, | ||
45 | - div.top div.filter div.filters-block div {float:left; margin: 15px;} | ||
46 | - div.top div.filter div.filters-block select { | ||
47 | - border:none; | ||
48 | - padding:4px 8px; | ||
49 | - -webkit-border-radius: 8px; | ||
50 | - -moz-border-radius: 8px; | ||
51 | - border-radius: 8px; | ||
52 | - } | ||
53 | - | ||
54 | - div.top div.filter div.discount select {width:115px;} | ||
55 | - div.top div.filter div.name select, | ||
56 | - div.top div.filter div.manufacture select {width:240px;} | ||
57 | - div.top div.filter div.filters-block .border { | ||
58 | - border:1px solid #fff; | ||
59 | - -webkit-border-radius: 8px; | ||
60 | - -moz-border-radius: 8px; | ||
61 | - border-radius: 8px; | ||
62 | - } | ||
63 | - | ||
64 | - /* ========================== */ | ||
65 | - /* ========= center ========= */ | ||
66 | - /* ========================== */ | ||
67 | - | ||
68 | - div.center {padding:13px; background: url('/img/stock/bg_transpered.png'); } | ||
69 | - div.mcol-1 {width:180px; float:left; vertical-align:top;} | ||
70 | - div.center div.mcol-1 div.title { text-transform:uppercase; display: block; padding: 11px 0px; font-size:12px;color: #FFFFFF; text-align:center; background:#59b43f;} | ||
71 | - div.mcol-1 div.menu ul li.sub a {text-decoration:none;color:#464646;font-size:11px;} | ||
72 | - div.center div.mcol-1 div.menu { | ||
73 | - padding: 5px 10px; | ||
74 | - margin-bottom:10px; | ||
75 | - background: #ffffff; /* Old browsers */ | ||
76 | - /* IE9 SVG, needs conditional override of 'filter' to 'none' */ | ||
77 | - background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijc0JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkYWRhZGEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); | ||
78 | - background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 74%, #dadada 100%); /* FF3.6+ */ | ||
79 | - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(74%,#ffffff), color-stop(100%,#dadada)); /* Chrome,Safari4+ */ | ||
80 | - background: -webkit-linear-gradient(top, #ffffff 0%,#ffffff 74%,#dadada 100%); /* Chrome10+,Safari5.1+ */ | ||
81 | - background: -o-linear-gradient(top, #ffffff 0%,#ffffff 74%,#dadada 100%); /* Opera 11.10+ */ | ||
82 | - background: -ms-linear-gradient(top, #ffffff 0%,#ffffff 74%,#dadada 100%); /* IE10+ */ | ||
83 | - background: linear-gradient(top, #ffffff 0%,#ffffff 74%,#dadada 100%); /* W3C */ | ||
84 | - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dadada',GradientType=0 ); /* IE6-8 */ | ||
85 | - | ||
86 | - | ||
87 | - } | ||
88 | - div.center div.mcol-1 div.menu ul {margin:0px;padding:0px;} | ||
89 | - div.center div.mcol-1 div.menu li { text-transform:uppercase; margin: 0px 10px; padding: 6px 0 ;font-size:11px; font-weight:bold;color: #000; } | ||
90 | - div.center div.mcol-1 div.banner-left img {width:180px;} | ||
91 | - div.mcol-2 {width:775px; float:left; margin-left: 16px;background:#FFFFFF;} | ||
92 | - div.center div.mcol-2 div.banner-home {width:770px;height:280px; vertical-align:middle; text-align:center;} | ||
93 | - div.center div.mcol-2 div.banner-center {width:770px;height:110px; vertical-align:middle; text-align:center; margin:25px 0;} | ||
94 | - div.center div.content {} | ||
95 | - | ||
96 | - /* ========================== */ | ||
97 | - /* ======== category ======== */ | ||
98 | - /* ========================== */ | ||
99 | - div.mcol-2 div.category-block {padding: 10px;} | ||
100 | - div.mcol-2 div.category-block div.category { | ||
101 | - margin:5px; | ||
102 | - display: block; | ||
103 | - float: left; | ||
104 | - height: 60px; | ||
105 | - width: 240px; | ||
106 | - background: #60bb46; /* Old browsers */ | ||
107 | - /* IE9 SVG, needs conditional override of 'filter' to 'none' */ | ||
108 | - background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzYwYmI0NiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzZjk3MjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); | ||
109 | - background: -moz-linear-gradient(top, #60bb46 0%, #3f9726 100%); /* FF3.6+ */ | ||
110 | - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#60bb46), color-stop(100%,#3f9726)); /* Chrome,Safari4+ */ | ||
111 | - background: -webkit-linear-gradient(top, #60bb46 0%,#3f9726 100%); /* Chrome10+,Safari5.1+ */ | ||
112 | - background: -o-linear-gradient(top, #60bb46 0%,#3f9726 100%); /* Opera 11.10+ */ | ||
113 | - background: -ms-linear-gradient(top, #60bb46 0%,#3f9726 100%); /* IE10+ */ | ||
114 | - background: linear-gradient(top, #60bb46 0%,#3f9726 100%); /* W3C */ | ||
115 | - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#60bb46', endColorstr='#3f9726',GradientType=0 ); /* IE6-8 */ | ||
116 | - } | ||
117 | - | ||
118 | - div.category-block div.category a div.col-1, | ||
119 | - div.category-block div.category a div.col-2 { | ||
120 | - height:60px; | ||
121 | - float: left; | ||
122 | - word-wrap: normal; | ||
123 | - } | ||
124 | - div.category-block div.category a {color:yellow; text-decoration:none;} | ||
125 | - div.category-block div.category a div.col-1 {width:85px;} | ||
126 | - div.category-block div.category a div.col-1 img {padding-left:5px;} | ||
127 | - div.category-block div.category a div.col-2 {width:150px;} | ||
128 | - div.category-block div.category a div.col-1 div, | ||
129 | - div.category-block div.category a div.col-2 div {height:60px;} | ||
130 | - | ||
131 | - /* ========================== */ | ||
132 | - /* ========= bottom ========= */ | ||
133 | - /* ========================== */ | ||
134 | - | ||
135 | - div.bottom {height:65px;padding:13px; font-size:11px;color: #FFFFFF; } | ||
136 | - div.bottom a { font-size:11px;color: #FFFFFF; } | ||
137 | - div.bottom div.copyright {width:180px; display: table-cell; vertical-align:middle; height: 60px;} | ||
138 | - div.bottom div.madeby {width:770px;height: 60px; display: table-cell; vertical-align:middle; text-align:right;} | ||
139 | - body,BODY {padding:0; margin:0; background: url('/img/stock/bg.jpg'); background-position: top center; background-attachment:fixed; color: #3C3C3C; font-family: Arial,tahoma; | ||
140 | - font-size: 12px;} | ||
141 | - .clear {} | ||
142 | - | ||
143 | - /* ========================== */ | ||
144 | - /* ======== general ========= */ | ||
145 | - /* ========================== */ | ||
146 | - | ||
147 | - .radius-8 { | ||
148 | - -webkit-border-radius: 8px 8px 0 0; | ||
149 | - -moz-border-radius: 8px 8px 0 0; | ||
150 | - border-radius: 8px 8px 0 0; | ||
151 | - } | ||
152 | - | ||
153 | - .radius-8-full { | ||
154 | - -webkit-border-radius: 8px; | ||
155 | - -moz-border-radius: 8px; | ||
156 | - border-radius: 8px; | ||
157 | - } | ||
158 | - | ||
159 | - .shadow-st { | ||
160 | - -webkit-box-shadow: #000 1px -5px 12px -5px; | ||
161 | - -moz-box-shadow: #000 1px -5px 12px -5px; | ||
162 | - box-shadow: #000 1px -5px 12px -5px; | ||
163 | - } | ||
164 | - .shadow-center { | ||
165 | - -webkit-box-shadow: #000 0 4px 20px -3px ; | ||
166 | - -moz-box-shadow: #000 0 4px 20px -3px ; | ||
167 | - box-shadow: #000 0 4px 20px -3px ; | ||
168 | - } |
1 | -html, body, div, span, | ||
2 | -h1, h2, h3, h4, h5, h6, p, | ||
3 | -a, em, img, strong, | ||
4 | -ol, ul, li, | ||
5 | -table, tr, th, td, | ||
6 | -form { | ||
7 | - margin: 0; | ||
8 | - padding: 0; | ||
9 | - border: 0; | ||
10 | - outline: 0; | ||
11 | - font-size: 100%; | ||
12 | - background: transparent; | ||
13 | -} | ||
14 | -table { | ||
15 | - border-collapse: collapse; | ||
16 | - border-spacing: 0; | ||
17 | -} | ||
18 | -input, button{ | ||
19 | - overflow: visible; | ||
20 | -} | ||
21 | -html { | ||
22 | - overflow: auto; | ||
23 | -} | ||
24 | -html, body { | ||
25 | - height: 100%; | ||
26 | - min-height: 100%; | ||
27 | -} | ||
28 | -body { | ||
29 | - font: normal 12px 'Segoe UI', Tahoma, Verdana, Arial, Helvetica, sans-serif; | ||
30 | - line-height: 1.2; | ||
31 | - color: #1e2022; | ||
32 | - text-align: center; | ||
33 | - background: #fcfcfc; | ||
34 | -} | ||
35 | -p { | ||
36 | - padding: 0 0 10px; | ||
37 | -} | ||
38 | -ul { | ||
39 | - padding: 0 0 0 16px; | ||
40 | -} | ||
41 | -li { | ||
42 | - padding: 0 0 8px; | ||
43 | -} | ||
44 | -a { | ||
45 | - text-decoration: none; | ||
46 | - color: #005ace; | ||
47 | -} | ||
48 | -a:hover { | ||
49 | - text-decoration: underline; | ||
50 | - color: #39f; | ||
51 | -} | ||
52 | -.clear { display: inline-block; } | ||
53 | -.clear:after { | ||
54 | - content: "."; | ||
55 | - display: block; | ||
56 | - height: 0; | ||
57 | - clear: both; | ||
58 | - visibility: hidden; | ||
59 | -} | ||
60 | -* html .clear { height: 1%; } | ||
61 | -.clear { display: block; } | ||
62 | -.none, | ||
63 | -.hidden { | ||
64 | - display: none; | ||
65 | -} | ||
66 | -.page { | ||
67 | - position: relative; | ||
68 | - width: 100%; | ||
69 | - min-width: 750px; | ||
70 | - min-height: 100%; | ||
71 | -} | ||
72 | -* html .page { | ||
73 | - height: 100%; | ||
74 | -} | ||
75 | -.page .header { | ||
76 | - border-bottom: 1px solid #0f0f14; | ||
77 | - width: 100%; | ||
78 | - height: 49px; | ||
79 | - text-align: left; | ||
80 | - background: #363b47 url('../img/common/top_bg.gif') 0 0 repeat-x; | ||
81 | -} | ||
82 | -.page .header .company-logo { | ||
83 | - float: right; | ||
84 | - display: block; | ||
85 | - margin: 5px 10px 0 0; | ||
86 | - width: 115px; | ||
87 | - height: 38px; | ||
88 | - overflow: hidden; | ||
89 | - text-indent: -9999px; | ||
90 | - background: transparent url('../img/common/def_parallels_logo.gif') 0 0 no-repeat; | ||
91 | -} | ||
92 | -.page .header .header-area { | ||
93 | - height: 49px; | ||
94 | -} | ||
95 | -.page .header h1 { | ||
96 | - float: left; | ||
97 | - width: 156px; | ||
98 | - height: 49px; | ||
99 | - text-align: left; | ||
100 | -} | ||
101 | -.page .header h1 a { | ||
102 | - display: block; | ||
103 | - width: 210px; | ||
104 | - height: 49px; | ||
105 | - overflow: hidden; | ||
106 | - text-indent: -9999px; | ||
107 | - background: url('../img/common/def_plesk_logo.gif') no-repeat; | ||
108 | -} | ||
109 | -.page .header .header-text { | ||
110 | - float: right; | ||
111 | - font-size: 11px; | ||
112 | -} | ||
113 | -.page .header .header-text a { | ||
114 | - float: left; | ||
115 | - margin: 11px 13px 0 0; | ||
116 | - color: #f1f1f1; | ||
117 | - text-decoration: none; | ||
118 | - font-size: 11px; | ||
119 | -} | ||
120 | -.page .header .header-text a.txt-banner { | ||
121 | - margin-right: 10px; | ||
122 | -} | ||
123 | -.page .header .header-text a strong { | ||
124 | - font-weight: normal; | ||
125 | -} | ||
126 | -.page .header .header-text a.top-copyright { | ||
127 | - text-align: right; | ||
128 | -} | ||
129 | -.wrapper { | ||
130 | - margin: 0 auto; | ||
131 | - padding: 40px 0 80px; | ||
132 | - width: 734px; | ||
133 | - text-align: left; | ||
134 | -} | ||
135 | -.wrapper .container { | ||
136 | - border: 1px solid #b8c1d0; | ||
137 | - margin-bottom: 12px; | ||
138 | - padding: 6px; | ||
139 | - background: #fff; | ||
140 | -} | ||
141 | -.wrapper .content { | ||
142 | - background: #fff url('../img/common/content_bg.gif') 0 0 repeat-y; | ||
143 | -} | ||
144 | -.wrapper .content .description { | ||
145 | - padding: 0 15px 0 190px; | ||
146 | - min-height: 229px; | ||
147 | - font-size: 12px; | ||
148 | - background: transparent url('../img/common/banner.jpg') 0 0 no-repeat; | ||
149 | -} | ||
150 | -* html .wrapper .content .description { | ||
151 | - height: 229px; | ||
152 | -} | ||
153 | -.wrapper .content h2 { | ||
154 | - margin: 0 0 10px; | ||
155 | - padding: 10px 0 3px; | ||
156 | - font-size: 18px; | ||
157 | - font-weight: normal; | ||
158 | - color: #039; | ||
159 | -} | ||
160 | -.wrapper .content .hr { | ||
161 | - border-top: 1px solid #8b919f; | ||
162 | - margin-top: 5px; | ||
163 | - padding-top: 5px; | ||
164 | -} | ||
165 | -.wrapper .promo, | ||
166 | -.wrapper .test-pages { | ||
167 | - margin-bottom: 12px; | ||
168 | -} | ||
169 | -.promo .block-area, | ||
170 | -.test-pages .block-area { | ||
171 | - border: 1px solid #b8c1d0; | ||
172 | - background: #fff; | ||
173 | -} | ||
174 | -.wrapper .promo h3, | ||
175 | -.wrapper .test-pages h3 { | ||
176 | - padding: 0 0 6px; | ||
177 | - font-size: 12px; | ||
178 | - font-weight: normal; | ||
179 | - color: #039; | ||
180 | -} | ||
181 | -.wrapper .test-pages p { | ||
182 | - padding: 10px; | ||
183 | -} | ||
184 | -.wrapper .two-col .test-pages, | ||
185 | -.wrapper .two-col .promo { | ||
186 | - float: left; | ||
187 | - width: 362px; | ||
188 | -} | ||
189 | -.wrapper .two-col .promo { | ||
190 | - margin-left: 10px; | ||
191 | -} | ||
192 | -.promo .promo-block { | ||
193 | - margin: 10px 10px 0; | ||
194 | -} | ||
195 | -.promo .promo-block a.box { | ||
196 | - float: left; | ||
197 | - margin: 0 0 0 -105px; | ||
198 | -} | ||
199 | -.promo .promo-block div { | ||
200 | - border-bottom: 1px solid #ebebeb; | ||
201 | - margin-bottom: 10px; | ||
202 | - padding: 0 0 10px 105px; | ||
203 | -} | ||
204 | -.promo .promo-block h4 { | ||
205 | - font-size: 20px; | ||
206 | - padding: 4px 0 8px; | ||
207 | -} | ||
208 | -.promo .promo-block h4 span { | ||
209 | - display: block; | ||
210 | - margin-bottom: -5px; | ||
211 | - font-size: 14px; | ||
212 | - font-weight: normal; | ||
213 | -} | ||
214 | -.promo .promo-block h4 a { | ||
215 | - text-decoration: none; | ||
216 | - color: #1e2022; | ||
217 | -} | ||
218 | -.promo .promo-block a.more { | ||
219 | - padding: 2px 0 3px 24px; | ||
220 | - line-height: 19px; | ||
221 | - font-size: 12px; | ||
222 | - font-weight: bold; | ||
223 | - color: #616161; | ||
224 | - background: transparent url('../img/common/arrow.gif') 0 0 no-repeat; | ||
225 | -} | ||
226 | -.promo .promo-block h4 a:hover, | ||
227 | -.promo .promo-block a.more:hover { | ||
228 | - text-decoration: none; | ||
229 | - color: #39f; | ||
230 | -} | ||
231 | -.promo ul { | ||
232 | - margin: 0 10px 5px; | ||
233 | - padding: 0 0 0 16px; | ||
234 | -} | ||
235 | -.promo ul li { | ||
236 | - padding-bottom: 5px; | ||
237 | -} | ||
238 | -.page .footer { | ||
239 | - position: absolute; | ||
240 | - left: 0; | ||
241 | - bottom: 0; | ||
242 | - border-top: 1px solid #9db6c5; | ||
243 | - width: 100%; | ||
244 | - min-width: 300px; | ||
245 | - height: 69px; | ||
246 | - background: #f1fbfe url('../img/common/footer_bg.gif') 0 0 repeat-x; | ||
247 | -} | ||
248 | -.page .footer-area { | ||
249 | - height: 69px; | ||
250 | - font-size: 11px; | ||
251 | - text-align: left; | ||
252 | - color: #000; | ||
253 | - background: url('../img/common/footer_right_bg.png') 100% 0 no-repeat; | ||
254 | -} | ||
255 | -.page .footer a { | ||
256 | - color: #06c; | ||
257 | - text-decoration: none; | ||
258 | -} | ||
259 | -.page .footer a:hover { | ||
260 | - color: #39f; | ||
261 | - text-decoration: underline; | ||
262 | -} | ||
263 | -.page .footer .description { | ||
264 | - margin: 0; | ||
265 | - padding: 8px 10px 0; | ||
266 | -} | ||
267 | -.icons-area { | ||
268 | - padding: 0 0 0 15px; | ||
269 | -} | ||
270 | -.icon { | ||
271 | - display: -moz-inline-box; | ||
272 | - display: inline-block; | ||
273 | - overflow: visible; | ||
274 | - border: 0; | ||
275 | - margin: 0 5px 12px 0; | ||
276 | - height: 32px; | ||
277 | - font: normal 11px 'Segoe UI', Tahoma, Verdana, Arial, Helvetica, sans-serif; | ||
278 | - text-decoration: none; | ||
279 | - vertical-align: top; | ||
280 | - color: #000; | ||
281 | - background-color: transparent; | ||
282 | - background-position: 0 0; | ||
283 | - background-repeat: no-repeat; | ||
284 | -} | ||
285 | -.icon:hover { | ||
286 | - text-decoration: none; | ||
287 | - color: #000; | ||
288 | -} | ||
289 | -.icon span { | ||
290 | - display: block; | ||
291 | - padding: 0 0 0 38px; | ||
292 | - height: 32px; | ||
293 | - width: 70px; | ||
294 | - line-height: 32px; | ||
295 | - cursor: pointer; | ||
296 | -} | ||
297 | -#asp { background-image: url('../img/glyph/btn_asp_bg.gif'); } | ||
298 | -#aspnet { background-image: url('../img/glyph/btn_aspdotnet_bg.gif'); } | ||
299 | -#coldfusion { background-image: url('../img/glyph/btn_coldfusion_bg.gif'); } | ||
300 | -#perl { background-image: url('../img/glyph/btn_perl_bg.gif'); } | ||
301 | -#php { background-image: url('../img/glyph/btn_php_bg.gif'); } | ||
302 | -#python { background-image: url('../img/glyph/btn_python_bg.gif'); } | ||
303 | -#ssi { background-image: url('../img/glyph/btn_ssi_bg.gif'); } | ||
304 | -#fcgi { background-image: url('../img/glyph/btn_fast_cgi_bg.gif'); } | ||
305 | -#miva { background-image: url('../img/glyph/btn_miva_bg.gif'); } | ||
306 | -.test { | ||
307 | - width: 680px; | ||
308 | -} | ||
309 | -.test .pathbar { | ||
310 | - color: #7b7b7b; | ||
311 | -} | ||
312 | -.test .pathbar a { | ||
313 | - text-decoration: underline; | ||
314 | - color: #7b7b7b; | ||
315 | -} | ||
316 | -.test .pathbar a:hover { | ||
317 | - color: #39f; | ||
318 | -} | ||
319 | -.test h2 { | ||
320 | - margin: 10px 0; | ||
321 | - font-size: 17px; | ||
322 | - font-weight: normal; | ||
323 | -} | ||
324 | -.test .tab-content { | ||
325 | - border: 1px solid #8b919f; | ||
326 | - padding: 10px; | ||
327 | -} | ||
328 | -fieldset { | ||
329 | - border: 1px solid #b8c1d0; | ||
330 | - margin: 0; | ||
331 | - padding: 0 10px 10px; | ||
332 | -} | ||
333 | -legend { | ||
334 | - margin: 0; | ||
335 | - padding: 0 2px 5px; | ||
336 | - vertical-align: middle; | ||
337 | - font-weight: bold; | ||
338 | - color: #002c61; | ||
339 | -} | ||
340 | -.form-fields { | ||
341 | - padding-top: 6px; | ||
342 | -} | ||
343 | -.formFields { | ||
344 | - margin: 5px 0; | ||
345 | -} | ||
346 | -.formFields, | ||
347 | -.formFields input, | ||
348 | -.formFields select, | ||
349 | -.formFields textarea { | ||
350 | - font: normal 11px 'Segoe UI', Tahoma, Verdana, Arial, Helvetica, sans-serif; | ||
351 | -} | ||
352 | -.formFields td.name { | ||
353 | - padding: 0 10px 10px 0; | ||
354 | - width: 200px; | ||
355 | - vertical-align: top; | ||
356 | - font-weight: bold; | ||
357 | -} | ||
358 | -.buttonsContainer { | ||
359 | - margin-top: 10px; | ||
360 | - text-align: right; | ||
361 | -} | ||
362 | -.buttonsContainer .commonButton { | ||
363 | - display: inline; | ||
364 | - margin-left: 14px; | ||
365 | -} | ||
366 | -.buttonsContainer .commonButton span { | ||
367 | - display: none; | ||
368 | -} | ||
369 | -.buttonsContainer .commonButton button { | ||
370 | - border: 0; | ||
371 | - width: 91px; | ||
372 | - height: 21px; | ||
373 | - text-align: center; | ||
374 | - white-space: nowrap; | ||
375 | - cursor: pointer; | ||
376 | - font: normal 11px 'Segoe UI', Tahoma, Verdana, Arial, Helvetica, sans-serif; | ||
377 | - background: transparent url('../img/glyph/btn_bg.gif') 0 0 no-repeat; | ||
378 | -} | ||
379 | -.commonButton button[disabled] { | ||
380 | - color: #999; | ||
381 | - background-image: url('../img/glyph/btn_bg-disabled.gif'); | ||
382 | -} | ||
383 | -#bid-ok button { | ||
384 | - padding-left: 8px; | ||
385 | - background-image: url('../img/glyph/btn_ok_bg.gif'); | ||
386 | -} | ||
387 | -.commonButton button:hover { | ||
388 | - background-position: 0 -21px; | ||
389 | -} | ||
390 | -.commonButton button[disabled]:hover { | ||
391 | - background-position: 0 0; | ||
392 | -} | ||
393 | -.testRelults#testFailed { | ||
394 | - border: 1px solid #ccc; | ||
395 | - margin: 0 0 10px; | ||
396 | - padding: 10px 10px 10px 32px; | ||
397 | - background: #fde9e5 url('../img/icons/fail.gif') 10px 11px no-repeat; | ||
398 | -} | ||
399 | -.testRelults#testSuccessful { | ||
400 | - border: 1px solid #ccc; | ||
401 | - margin: 0 0 10px; | ||
402 | - padding: 10px 32px; | ||
403 | - background: #bff7b4 url('../img/icons/success.gif') 10px 11px no-repeat; | ||
404 | -} | ||
405 | -.testResult { | ||
406 | - font-weight: bold; | ||
407 | -} | ||
408 | -.test-data { | ||
409 | - text-align: left; | ||
410 | -} | ||
411 | -.test-data table { | ||
412 | - border-collapse: collapse; | ||
413 | - margin-bottom: 10px; | ||
414 | - width: 100%; | ||
415 | - color: #000; | ||
416 | - background-color: white; | ||
417 | -} | ||
418 | -.test-data table th, | ||
419 | -.test-data table td { | ||
420 | - padding: 4px 6px; | ||
421 | -} | ||
422 | -.test-data tr.subhead { | ||
423 | - background-color: #ccc; | ||
424 | -} | ||
425 | -.test-data th.alt { | ||
426 | - color: white; | ||
427 | - background-color: black; | ||
428 | -} | ||
429 | -.test-data tr.alt { | ||
430 | - background-color: #eee; | ||
431 | -} | ||
432 | \ No newline at end of file | 0 | \ No newline at end of file |
1 | -#tabs { | ||
2 | - float: none; | ||
3 | - margin-bottom: -1px; | ||
4 | - padding: 0 14px; | ||
5 | - position: relative; | ||
6 | - width: auto; | ||
7 | - line-height: normal; | ||
8 | - white-space: nowrap; | ||
9 | - background: none; | ||
10 | -} | ||
11 | -#tabs ul { | ||
12 | - margin: 0; | ||
13 | - padding: 0; | ||
14 | - list-style: none; | ||
15 | -} | ||
16 | -#tabs li { | ||
17 | - display: -moz-inline-box; | ||
18 | - display: inline-block; | ||
19 | - border: 1px solid #7f828b; | ||
20 | - margin-left: -3px; | ||
21 | - padding: 0; | ||
22 | - vertical-align: bottom; | ||
23 | -} | ||
24 | -#tabs li a, | ||
25 | -#tabs li a:hover { | ||
26 | - display: block; | ||
27 | - padding: 0 0 0 1px; | ||
28 | - text-decoration: none; | ||
29 | - color: #000; | ||
30 | - background: #e9e9e9 url('../img/icons/tabs/tabs_bg.png') 0 0 no-repeat; | ||
31 | -} | ||
32 | -#tabs li a span { | ||
33 | - display: block; | ||
34 | - padding: 0 5px 0 4px; | ||
35 | - height: 17px; | ||
36 | - line-height: 17px; | ||
37 | - cursor: pointer; | ||
38 | - background: url('../img/icons/tabs/tabs_bg.png') 100% 0 no-repeat; | ||
39 | -} | ||
40 | -#tabs #current { | ||
41 | - border-bottom: 1px solid #fcfcfc; | ||
42 | - margin: 0 -1px 0 -4px; | ||
43 | -} | ||
44 | -*:first-child+html #tabs #current { margin: 0 -1px; } | ||
45 | -* html #tabs #current { margin: 0 -1px; } | ||
46 | -#tabs #current span { | ||
47 | - padding: 1px 5px; | ||
48 | - background: #fcfcfc; | ||
49 | -} | ||
50 | \ No newline at end of file | 0 | \ No newline at end of file |