File size: 78,703 Bytes
a01128b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "">
<html class="js" dir="ltr" version="XHTML+RDFa 1.0" xml:lang="en" xmlns="">
<head>
<style>
/**
* @package Gantry Template Framework - RocketTheme
* @version @VERSION@ @BUILD_DATE@
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 - @COPYRIGHT_YEAR@ RocketTheme, LLC
* @license http://www.rockettheme.com/legal/license.php RocketTheme Proprietary Use License
*/
/* Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin: 0;padding: 0;border: 0;outline: 0;font-size: 100%;vertical-align: baseline;background: transparent;}
/* theme adjustments by firefrog */
.views-field.views-field-title .views-label.views-label-title {
font-size: 1.5em;
}
.views-field.views-field-title .field-content {
font-size: 1.5em;
}
/* Grid Container */
.rt-container {margin: 0 auto;width: 960px;}
body {min-width: 960px;}
/* Grid Block */
.rt-block {padding: 15px;margin-bottom: 10px;position: relative;}
#rt-content-top .rt-alpha, #rt-content-bottom .rt-alpha {margin-left: 0;}
#rt-content-top .rt-omega, #rt-content-bottom .rt-omega {margin-right: 0;}
/* Layout */
#rt-logo {width: 185px;height: 115px;display: block;}
#rt-content-top, #rt-content-bottom {overflow: hidden;}
#rocket {display: block;width: 110px;height: 15px;margin: 0 auto;}
#rt-copyright {text-align: center;}
/* Menu */
#rt-menu .rt-container {background: #666;height: 3em;}
#rt-menu ul.menu {list-style: none;margin: 0 10px;padding: 0;}
#rt-menu ul.menu li {float: left;padding: 0;background: none;}
#rt-menu ul.menu li a {font-weight: bold;line-height: 3em;display: block;padding: 0 15px;font-size: 1em;}
#rt-menu ul.menu ul {display: none;}
/* Typography */
body {font-size: 12px;line-height: 1.7em;font-family: Helvetica,Arial, Sans-Serif;}
body.font-size-is-xlarge {font-size: 15px;line-height: 1.7em;}
body.font-size-is-large {font-size: 14px;line-height: 1.7em;}
body.font-size-is-default {font-size: 12px;line-height: 1.7em;}
body.font-size-is-small {font-size: 11px;line-height: 1.7em;}
body.font-size-is-xsmall {font-size: 10px;line-height: 1.7em;}
form {margin: 0;padding: 0;}
p {margin: 0 0 15px 0;}
h1, h2, h3, h4, h5 {margin: 15px 0;line-height: 1.1em;}
h1 {font-size: 260%;}
h2 {font-size: 200%;}
h3 {font-size: 175%;}
h4 {font-size: 120%;}
h5 {font-size: 120%;}
h2.title {font-size: 170%;letter-spacing: -1px;line-height: 1em;}
a {text-decoration: none;outline: none;}
code {color: #000;margin: -1px 0 0 0;font: 10px Courier;}
blockquote {font: italic 16px/22px Georgia, Serif;}
.left-1, .left-2, .left-3, .left-4, .left-5, .left-6, .left-7, .left-8, .left-9, .left-10, .right-11 {float: left;margin-right: 50px;margin-bottom: 15px;display: inline;position: relative;}
.right-1, .right-2, .right-3, .right-4, .right-5, .right-6, .right-7, .right-8, .right-9, .right-10, .right-11 {float: right;margin-left: 50px;margin-bottom: 15px;display: inline;position: relative;}
.date-block {padding: 15px;}
/* Lists */
ul,ol {padding-left:15px;}
ul li {padding: 0;margin: 0;}
ul li a {font-size: 1.2em;line-height: 1.8em;}
ul ul {margin-left: 25px;padding: 5px 0;}
ul li.author {margin: 0;letter-spacing: 1px;list-style: none;font-weight: bold;text-align: right;}
ul li.date {margin: 0;letter-spacing: 1px;list-style: none;text-align: right;font-weight: bold;}
ul li.comments {list-style: none;text-align: right;font-weight: bold;}
ul li.author span, ul li.date span, ul li.comments span {display: block;font-weight: normal;margin-bottom: 10px;line-height: 1em;}
/* RTL */
body.rtl {direction: rtl;}
body.rtl #rt-menu ul.menu {float: right;}
body.rtl #rt-menu ul.menu li {float: right;}
/* Style */
html,body {margin-bottom:1px;}
body {background: #ddd;color: #444;}
h1, h2, h3, h4, h5, h6, legend {color: #000;}
#rt-header h2, #rt-bottom h2 {color: #aaa}
#rt-header, #rt-bottom {color: #aaa;}
.rt-container {background: #fff;}
a {color: #cc0000;}
a:hover {color: #000;}
#rt-header .rt-container {background: #000 url(../images/header-assets.png) 50% -363px repeat-x;}
#rt-logo {background: url(../images/header-assets.png) 0 0 no-repeat;}
#rt-menu ul.menu li a {color: #fff;}
#rt-menu ul.menu li a:hover {background: #444;color: #fff;}
#rt-menu ul.menu li.active a, #rt-menu ul.menu li.active a:hover {background: #fff;color: #000;}
#rt-bottom .rt-container {background: #000 url(../images/header-assets.png) 50% -363px repeat-x;border-top: 4px solid #666;}
#rt-footer .rt-container, #rt-copyright .rt-container {background: #666;}
#rt-footer, #rt-copyright {color: #ccc;}
#rt-footer h2 {color: #fff;}
#rt-sidebar-a {background-color:#e0e0e0;}
#rt-sidebar-b {background-color:#e9e9e9;}
#rt-sidebar-c {background-color:#f0f0f0;}
#rocket {background: url(../images/rocket.png) 0 0 no-repeat;}
/* Clear Set */
html body * span.clear, html body * div.clear, html body * li.clear, html body * dd.clear {background: none;border: 0;clear: both;display: block;float: none;font-size: 0;list-style: none;margin: 0;padding: 0;overflow: hidden;visibility: hidden;width: 0;height: 0;}
.clearfix:after {clear: both;content: '.';display: block;visibility: hidden;height: 0;}
.clearfix {display: inline-block;}
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* Debug only */
#debug #rt-main {overflow:hidden;border-bottom: 4px solid #666; margin-top:15px;position:relative}
#debug .status {position: absolute;background:#333;opacity:.3;padding:0px 15px;z-index:10000;color:#fff;font-weight:bold;font-size:150%}
/**
* @version 3.1.17 September 8, 2011
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 - 2011 RocketTheme, LLC
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
*/
/* 12 Grid */
.rt-grid-1, .rt-grid-2, .rt-grid-3, .rt-grid-4, .rt-grid-5, .rt-grid-6, .rt-grid-7, .rt-grid-8, .rt-grid-9, .rt-grid-10, .rt-grid-11, .rt-grid-12 {display: inline;float: left;position: relative;margin-left: 10px;margin-right: 10px;}
.rt-container .rt-grid-1 {width: 60px;}
.rt-container .rt-grid-2 {width: 140px;}
.rt-container .rt-grid-3 {width: 220px;}
.rt-container .rt-grid-4 {width: 300px;}
.rt-container .rt-grid-5 {width: 380px;}
.rt-container .rt-grid-6 {width: 460px;}
.rt-container .rt-grid-7 {width: 540px;}
.rt-container .rt-grid-8 {width: 620px;}
.rt-container .rt-grid-9 {width: 700px;}
.rt-container .rt-grid-10 {width: 780px;}
.rt-container .rt-grid-11 {width: 860px;}
.rt-container .rt-grid-12 {width: 940px;}
/* Grid Push */
.rt-container .rt-push-1 {left: 80px;}
.rt-container .rt-push-2 {left: 160px;}
.rt-container .rt-push-3 {left: 240px;}
.rt-container .rt-push-4 {left: 320px;}
.rt-container .rt-push-5 {left: 400px;}
.rt-container .rt-push-6 {left: 480px;}
.rt-container .rt-push-7 {left: 560px;}
.rt-container .rt-push-8 {left: 640px;}
.rt-container .rt-push-9 {left: 720px;}
.rt-container .rt-push-10 {left: 800px;}
.rt-container .rt-push-11 {left: 880px;}
/* Grid Pull */
.rt-container .rt-pull-1 {left: -80px;}
.rt-container .rt-pull-2 {left: -160px;}
.rt-container .rt-pull-3 {left: -240px;}
.rt-container .rt-pull-4 {left: -320px;}
.rt-container .rt-pull-5 {left: -400px;}
.rt-container .rt-pull-6 {left: -480px;}
.rt-container .rt-pull-7 {left: -560px;}
.rt-container .rt-pull-8 {left: -640px;}
.rt-container .rt-pull-9 {left: -720px;}
.rt-container .rt-pull-10 {left: -800px;}
.rt-container .rt-pull-11 {left: -880px;}
/* Prefix for left nudging */
.rt-container .rt-prefix-1 {padding-left:80px;}
.rt-container .rt-prefix-2 {padding-left:160px;}
.rt-container .rt-prefix-3 {padding-left:240px;}
.rt-container .rt-prefix-4 {padding-left:320px;}
.rt-container .rt-prefix-5 {padding-left:400px;}
.rt-container .rt-prefix-6 {padding-left:480px;}
.rt-container .rt-prefix-7 {padding-left:560px;}
.rt-container .rt-prefix-8 {padding-left:640px;}
.rt-container .rt-prefix-9 {padding-left:720px;}
.rt-container .rt-prefix-10 {padding-left:800px;}
.rt-container .rt-prefix-11 {padding-left:880px;}
/* Extras */
.left-1, .right-1 {width: 30px;}
.left-2, .right-2 {width: 110px;}
.left-3, .right-3 {width: 190px;}
.left-4, .right-4 {width: 270px;}
.left-5, .right-5 {width: 350px;}
.left-6, .right-6 {width: 430px;}
.left-7, .right-7 {width: 510px;}
.left-8, .right-8 {width: 590px;}
.left-9, .right-9 {width: 670px;}
.left-10, .right-10 {width: 750px;}
.left-11, .right-11 {width: 830px;}
/**
* @package Gantry Template Framework - RocketTheme
* @version @VERSION@ @BUILD_DATE@
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 - @COPYRIGHT_YEAR@ RocketTheme, LLC
* @license http://www.rockettheme.com/legal/license.php RocketTheme Proprietary Use License
*/
/* Headings */
.rt-joomla h1 {letter-spacing: -2px;}
.rt-joomla h2, .rt-joomla h3, .rt-joomla h4, .rt-joomla h5 {letter-spacing: -1px;}
.componentheading {font-weight: bold;display: block;margin-bottom: 15px;}
.contentheading {font-size: 140%;font-weight: bold;margin-bottom: 15px;display: block;}
/* Section Tables */
.sectiontableheader {font-weight: bold;padding: 3px;line-height: 25px;text-align: left;}
.sectiontablefooter {padding-bottom: 8px;}
tr.sectiontableentry0 td, tr.sectiontableentry1 td, tr.sectiontableentry2 td, td.sectiontableentry0, td.sectiontableentry1, td.sectiontableentry2 {text-align: left;padding: 6px 5px;vertical-align: middle;}
tr.sectiontableentry0 td, td.sectiontableentry0, tr.sectiontableentry1 td, td.sectiontableentry1, tr.sectiontableentry2 td, td.sectiontableentry2 {height: 30px;}
.contentpane, .contentpaneopen {width: 100%;}
/* Column Layout */
.rt-joomla .float-left {float: left;}
.rt-joomla .float-right {float: right;}
.rt-joomla .width25 {width: 24.999%;}
.rt-joomla .width33 {width: 33.333%;}
.rt-joomla .width50 {width: 49.999%;}
.rt-joomla .width100 {width: 100%;}
/* Blog Layout */
.rt-joomla .rt-blog .rt-description { margin: 10px 0px 15px 0px;padding-bottom: 20px;border-bottom: 1px #c8c8c8 dotted;}
.rt-joomla .rt-article {margin-bottom: 35px;}
.rt-joomla .rt-article-bg {padding-bottom: 5px;border-bottom: 1px #c8c8c8 dotted;}
.rt-joomla .multicolumns .rt-article {margin: 0px 15px 15px 15px;}
.rt-joomla .multicolumns .first .rt-article {margin-left: 0px;}
.rt-joomla .multicolumns .last .rt-article {margin-right: 0px;}
.rt-joomla .rt-article-links {margin: 10px 0px 10px 0px;}
/* Article Layout */
.rt-joomla h1.rt-article-title {width: auto;}
.rt-joomla span.edit {margin-left: 10px;float: left;}
.rt-joomla .rt-articleinfo {margin-bottom: 15px;}
.rt-joomla .rt-articleinfo span.modified, .rt-joomla .rt-articleinfo span.author, .rt-joomla .rt-articleinfo span.created, .rt-joomla .rt-articleinfo span.url {display: block;font-size: 95%;}
.rt-joomla .rt-articleinfo span.author {color: #969696;font-style: italic;}
.rt-joomla .rt-articleinfo span.created {font-weight: bold;}
.rt-joomla .rt-description {margin: 10px 0px 10px 0px;overflow: hidden;}
.rt-description img.left {margin-right: 15px;float: left;}
.rt-description img.right {margin-left: 15px;float: right;}
.rt-joomla .filter {margin: 10px 0px;}
.rt-joomla span.number {color: #969696;font-style: italic;}
.rt-joomla .rt-article-icons {width: 65px;overflow: hidden;float: right;}
.rt-joomla .icon {display:block;width:16px;height:16px;float: right;margin-left:3px;background-image: url(../images/typography.png);background-repeat: no-repeat;}
.rt-joomla .printscreen {display: none;}
.rt-joomla .print {background-position: 0 0;}
.rt-joomla .email {background-position: -16px 0;}
.rt-joomla .pdf {background-position: -32px 0;}
.rt-joomla .edit {background-position: -48px 0;margin-left: 0 !important;margin-right:5px;}
.rt-joomla .edit img {opacity: 0;}
.rt-joomla .rt-article-cat {font-weight: bold;margin-top: 15px;margin-bottom: 0;}
.rt-pagination {text-align: center;}
.rt-pagination .tab {display: inline-block;margin-right: 8px;}
.rt-pagination .tab .page-active {background: none;}
.rt-pagination .page-block {display: inline-block;margin-right: 4px;font-weight: bold;}
.rt-pagination .page-active, .rt-pagination .page-inactive {padding: 0 4px;}
.rt-pagination .page-inactive:hover {cursor: pointer;}
.rt-pagination .rt-results {margin-bottom: 5px;}
/* Editing */
.rt-joomla .edit-article fieldset {margin-bottom: 30px;}
.rt-joomla .edit-article fieldset div {overflow: hidden;margin-bottom: 5px;}
.rt-joomla .edit-article label.label-left {display: block;width: 150px;float: left;}
.rt-joomla .edit-article .save {margin: 0px;float: right;}
.rt-joomla .edit-article #editor-xtd-buttons {margin-bottom: 0px;overflow: hidden;}
.rt-joomla .edit-article #editor-xtd-buttons div {margin: 0px;}
.rt-joomla .edit-article #editor-xtd-buttons .button2-left {margin-right: 5px;}
.rt-joomla .edit-article #editor-xtd-buttons a:link, .rt-joomla .edit-article #editor-xtd-buttons a:visited, .rt-joomla .edit-article #editor-xtd-buttons a:hover {color: #323232;}
.rt-joomla .edit-article .inputbox, .rt-joomla .edit-article textarea {border: 1px solid #ddd;}
/* User */
#form-login .inputbox, #com-form-login .inputbox, #josForm .inputbox {border: 1px solid #ddd;font-size: 1.2em;padding: 2px;margin: 0;}
#com-form-login fieldset div, #josForm fieldset div {margin-bottom: 10px;}
#form-login ul {margin-top: 10px;}
#form-login p {margin-bottom: 10px;}
#form-login .user-greeting {font-weight: bold;font-size: 120%;margin-bottom: 15px;}
.rt-joomla .user label.label-left, .rt-joomla .user span.label-left {display: block;width: 130px;float: left;font-weight: bold;font-size: 120%;}
.col12 .rt-grid-2 #form-login .inputbox, .col12 .rt-grid-2 #user-login-form .form-text {width: 104px;}
.col12 .rt-grid-3 #form-login .inputbox, .col12 .rt-grid-3 #user-login-form .form-text {width: 184px;}
.col12 .rt-grid-4 #form-login .inputbox, .col12 .rt-grid-4 #user-login-form .form-text {width: 264px;}
.col12 .rt-grid-5 #form-login .inputbox, .col12 .rt-grid-5 #user-login-form .form-text {width: 344px;}
.col12 .rt-grid-6 #form-login .inputbox, .col12 .rt-grid-6 #user-login-form .form-text {width: 424px;}
.col12 .rt-grid-7 #form-login .inputbox, .col12 .rt-grid-7 #user-login-form .form-text {width: 504px;}
.col12 .rt-grid-8 #form-login .inputbox, .col12 .rt-grid-8 #user-login-form .form-text {width: 584px;}
.col12 .rt-grid-9 #form-login .inputbox, .col12 .rt-grid-9 #user-login-form .form-text {width: 664px;}
.col12 .rt-grid-10 #form-login .inputbox, .col12 .rt-grid-10 #user-login-form .form-text {width: 744px;}
.col12 .rt-grid-12 #form-login .inputbox, .col12 .rt-grid-12 #user-login-form .form-text {width: 904px;}
.col16 .rt-grid-2 #form-login .inputbox {width: 64px;}
.col16 .rt-grid-3 #form-login .inputbox {width: 124px;}
.col16 .rt-grid-4 #form-login .inputbox {width: 184px;}
.col16 .rt-grid-5 #form-login .inputbox {width: 244px;}
.col16 .rt-grid-6 #form-login .inputbox {width: 304px;}
.col16 .rt-grid-7 #form-login .inputbox {width: 364px;}
.col16 .rt-grid-8 #form-login .inputbox {width: 424px;}
.col16 .rt-grid-9 #form-login .inputbox {width: 484px;}
.col16 .rt-grid-10 #form-login .inputbox {width: 544px;}
.col16 .rt-grid-11 #form-login .inputbox {width: 604px;}
.col16 .rt-grid-12 #form-login .inputbox {width: 664px;}
.col16 .rt-grid-13 #form-login .inputbox {width: 724px;}
.col16 .rt-grid-14 #form-login .inputbox {width: 784px;}
.col16 .rt-grid-15 #form-login .inputbox {width: 844px;}
/* Contact */
.rt-joomla .contact h1 {margin-bottom: 0px;font-size: 250%;font-weight: normal;letter-spacing: -1px;}
.rt-joomla .contact h2 {margin-bottom: 10px;font-size: 120%;font-weight: normal;text-transform: uppercase;letter-spacing: 0px;}
.rt-joomla .contact .image {float: right;}
.rt-joomla .contact table {margin-bottom: 10px;}
.rt-joomla .contact label.label-top {display: block;}
.contact .icon {float: left; width: 40px;}
.contact .misc, .contact .webpage, .contact .mobile, .contact .email, .contact .telephone, .contact .fax, .contact .country, .contact .state, .contact .postcode, .contact .suburb, .contact .street-address {overflow: hidden;}
.contact .other .surround {margin-top: 5px;}
.contact .vcard {margin-top: 15px;}
.rt-joomla .contact .inputbox {border: 1px solid #ddd;font-size: 1.2em;padding: 2px;margin: 0;}
.rt-joomla .contact .label-top {display: block;font-weight: bold;font-size: 120%;}
.rt-joomla .contact fieldset div {margin-bottom: 10px;}
/* Weblinks */
.rt-joomla .weblinks fieldset div {overflow: hidden;}
.rt-joomla .weblinks label.label-left {display: block;width: 150px;float: left;}
/* Search */
.rt-joomla .search p.info {margin: 0px;color: #969696;font-style: italic;}
.rt-joomla .search span.highlight {background: #ffffaa;}
.rt-joomla .search_result {margin-top: 15px;}
.rt-joomla .search_result .inputbox {border: 1px solid #ddd;font-size: 1.2em;padding: 2px;margin: 0;}
.rt-joomla .search_result fieldset.word label {display: block;width: 130px;float: left;font-weight: bold;font-size: 120%;}
.rt-joomla .search_result fieldset {margin-bottom: 15px;}
.rt-joomla .search_result .phrase legend, .rt-joomla .search_result .only legend {line-height: 30px;font-weight: bold;}
/* Polls */
dl.poll dt {padding-top: 8px;text-transform: uppercase;font-size: 90%;}
dl.poll dd {font-weight: bold;padding-bottom: 8px;border-bottom: 1px solid #eaeaea;font-size: 120%;}
poll .polls_color_1,.poll .polls_color_2,.poll .polls_color_3,.poll .polls_color_4,.poll .polls_color_5 {border: solid 1px;position: relative;}
.rt-poll h3 {border: solid 0;margin: 20px 0;}
.rt-poll .td_2 {width: 100px;}
.rt-poll .td_3 {width: 300px;}
.rt-poll form {margin: 20px 0;}
.rt-poll table {font-size: 1em;width: 100%;border: solid 0;position: relative;}
.rt-poll table .td_1 {width: 30px;}
.rt-poll table caption {color: #93246F;font-size: 1em;font-weight: bold;margin: 10px 0;text-align:left;}
.rt-poll td {border: solid 1px #eaeaea;padding: 2px 5px;}
.rt-poll td.line {width: 300px;}
.rt-poll th {background: #eee;border: solid 1px #ddd;text-transform: uppercase;}
.rt-poll .question {font-weight: bold;font-size: 110%;}
.rt-poll .rt-pollrow {padding: 6px 0 8px 0;font-size: 110%;}
.rt-poll .rt-pollbuttons {padding: 0;overflow: hidden;margin-top: 20px;}
.rt-poll .readon {float: left;margin-right: 5px;}
/* Newsflash */
.module-newsflash {overflow: hidden;}
.module-newsflash .rt-article {padding-bottom: 15px;overflow: hidden;}
.module-newsflash .last {padding-bottom: 0px;}
/* Other */
.rt-joomla .categorylist input {border: 1px solid #ddd;font-size: 1.2em;padding: 2px;margin: 0;}
.rt-joomla th {padding: 5px;background: #ebebeb;border-bottom: 2px solid #ddd;font-weight : bold;}
.rt-joomla tr.even td {padding: 5px;background: #f0f0f0;border-bottom: 1px solid #ddd;}
.rt-joomla tr.odd td {padding: 5px;background: #fafafa;border-bottom: 1px solid #ddd;}
.rt-breadcrumb-surround {margin: 0;display: block;position:relative;overflow: hidden;height: 20px;padding: 15px 25px;}
/* Tooltips */
.tool-tip {float: left;background: #ffc;border: 1px solid #D4D5AA;padding: 5px;max-width: 200px;color: #323232;}
.tool-title {padding: 0;margin: 0;font-size: 100%;font-weight: bold;margin-top: -15px;padding-top: 15px;padding-bottom: 5px;background: url(../../system/images/selector-arrow.png) no-repeat;}
.tool-text {font-size: 100%;margin: 0;}
/* System Messages */
/* OpenID icon style */
input.system-openid, input.com-system-openid { background: url(http://openid.net/images/login-bg.gif) no-repeat;background-color: #fff;background-position: 0 50%;color: #000;padding-left: 18px;}
/* Unpublished */
.system-unpublished {background: #e8edf1;border-top: 4px solid #c4d3df;border-bottom: 4px solid #c4d3df;
}
/* System Messages */
#system-message { margin-bottom: 10px; padding: 0;}
#system-message dt { font-weight: bold; }
#system-message dd { margin: 0; font-weight: bold; }
#system-message dd ul { background: #BFD3E6; color: #0055BB; margin: 10px 0 10px 0; list-style: none; padding: 10px; border: 2px solid #84A7DB;}
/* System Standard Messages */
#system-message dt.message { display: none; }
/* System Error Messages */
#system-message dt.error { display: none; }
#system-message dd.error ul { color: #c00; background-color: #EBC8C9; border: 2px solid #DE7A7B;}
/* System Notice Messages */
#system-message dt.notice { display: none; }
#system-message dd.notice ul { color: #A08B4C; background: #F5ECC1; border: 2px solid #F0DC7E;}
/* Debug */
#system-debug { color: #ccc; background-color: #fff; padding: 10px; margin: 10px; }
#system-debug div { font-size: 11px;}
/**
* @package Quasar Template - RocketTheme
* @version 1.5.3 June 10, 2010
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 - 2010 RocketTheme, LLC
* @license http://www.rockettheme.com/legal/license.php RocketTheme Proprietary Use License
*/
/* Core */
body {background: #fff;color: #999;}
a:hover {color: #fff;}
h1, h2, h3, h4, h5 {color: #ccc;}
/* Top */
#rt-top {background: #0f0f0f url(../images/backgrounds/style1/header-bg.png) 100% 0;}
#rt-top .search .inputbox, #rt-top .form-item .form-text {background: url(../images/backgrounds/style1/search-bg.png) 0 0 no-repeat;color: #999;}
#rt-top .title span {color: #ccc;}
/* Header */
#rt-logo {background: url(../images/logo/style1/logo.png) 0 0 no-repeat;}
#rt-header {background: #0f0f0f url(../images/backgrounds/style1/header-bg.png) 100% 0;}
#rt-header2 {background: url(../images/backgrounds/style1/header-div.png) 50% 100% repeat-x;}
#rt-header3 {background: url(../images/backgrounds/style1/header-div.png) 50% 0 repeat-x;}
.backgroundlevel-high #rt-header4, .backgroundlevel-med #rt-header4 {background: url(../images/backgrounds/style1/header-underlay.png) 50% 0 no-repeat;}
#rt-header .title span {color: #ccc;}
/* Top Menu */
#rt-header ul.menu li > a, #rt-header ul.menu li > .separator {color: #999;}
#rt-header ul.menu li.active > a, #rt-header ul.menu li:hover > a, #rt-header ul.menu li.active > .separator, #rt-header ul.menu li:hover > .separator {background: url(../images/menus/style1/menutab-r.png) 100% 0 no-repeat;color: #fff;}
#rt-header ul.menu li.active > a span, #rt-header ul.menu li:hover > a span, #rt-header ul.menu li.active > .separator span, #rt-header ul.menu li:hover > .separator span {background: url(../images/menus/style1/menutab-l.png) 0 0 no-repeat;}
/* Menu Dropdowns */
#rt-header li ul {background: #222;border: 1px solid #333;}
/* Showcase */
#rt-showcase {background: #0f0f0f url(../images/backgrounds/style1/header-bg.png) 100% 0;color: #aaa;}
#rt-showcase .showcase-title {color: #999;text-shadow: -1px -2px #000;}
#rt-showcase .showcase-title span {text-shadow: -1px -2px #000;}
#rt-showcase .title span {color: #ccc;}
/* Feature */
#rt-feature {background: #0f0f0f url(../images/backgrounds/style1/header-bg.png) 100% 0;}
#rt-feature .title span {color: #ccc;}
/* Main Body */
#rt-toptab {background: #0f0f0f url(../images/backgrounds/style1/header-bg.png) 100% 0;}
#rt-toptab .toptab {background: url(../images/body/style1/toptab-r.png) 100% 0 no-repeat;}
#rt-toptab .toptab2 {background: url(../images/body/style1/toptab-l.png) 0 0 no-repeat;color: #999;}
.backgroundlevel-high #rt-toptab .shadow, .backgroundlevel-med #rt-toptab .shadow {background: url(../images/backgrounds/style1/showcase-shadow.png) 50% 100% no-repeat;}
#rt-content-top {background: url(../images/body/style1/body-div.png) 50% 100% repeat-x;}
#rt-main-surround {background: #222 url(../images/backgrounds/style1/body-bg.png) 50% 0 repeat-x;}
#rt-main-surround .title span, #rt-main-surround .rt-article-title span {color: #ccc;}
#rt-main-surround .readon span, #rt-main-surround .readon .button {color: #999;}
#rt-main-surround .readon:hover span, #rt-main-surround .readon:hover .button {color: #fff;}
#form-login ul li a, #com-form-login ul li a, ul.rt-more-articles li a, .rt-section-list ul li a {background-image: url(../images/body/style1/arrows.png);background-repeat: no-repeat;}
/* Modules
.icon1 .module-icon, .icon2 .module-icon, .icon3 .module-icon, .icon4 .module-icon {background-image: url(../images/body/style1/module-icons.png);background-repeat: no-repeat;} */
/* new listing */
.new-listing {border:1px solid #3D9FD0;}
/* Side Menu */
#rt-main-surround ul.menu li {background: url(../images/body/style1/body-div.png) 50% 100% repeat-x;}
#rt-main-surround ul.menu li a, #rt-main-surround ul.menu li .separator, #rt-main-surround ul.menu li .item {background: url(../images/body/style1/arrows.png) 5px 10px no-repeat;color: #999;}
#rt-main-surround ul.menu li.active > a, #rt-main-surround ul.menu li > a:hover, #rt-main-surround ul.menu li.active > .separator {color: #fff;}
/* Bottom */
#rt-bottom {background: #699714 url(../images/backgrounds/style1/bottom-bg.png) 50% 0 repeat-x;color: #fff;}
#rt-bottom .title {color: #000;}
#rt-bottom .title span {color: #fff;}
#rt-bottom .readon span, #rt-bottom .readon .button {color: #597C16;}
#rt-bottom .readon:hover span, #rt-bottom .readon .button {color: #333;}
#rt-bottomtab {background: #222;}
#rt-bottomtab .bottomtab {background: url(../images/body/style1/bottomtab-r.png) 100% 0 no-repeat;}
#rt-bottomtab .bottomtab2 {background: url(../images/body/style1/bottomtab-l.png) 0 0 no-repeat;color: #fff;}
/* Footer */
#rt-footer {color: #666;}
#rt-footer a:hover {color: #000;}
#rt-footer .title {color: #777;}
#rt-footer .title span {color: #333;}
#rt-footer .readon span, #rt-footer .readon .button {color: #333;}
#rt-footer .readon:hover span, #rt-footer .readon:hover .button {color: #000;}
#rt-copyright {color: #999;}
#rt-copyright a:hover {color: #000;}
#rt-copyright .rt-container {border-top: 1px solid #ddd;}
#rocket, #gantry-logo {background: url(../images/body/style1/footer-assets.png) 0 0 no-repeat;}
/* Typography */
.readon {background: url(../images/body/style1/readon-r.png) 100% 0 no-repeat;}
.readon span, .readon .button {background: url(../images/body/style1/readon-l.png) 0 0 no-repeat;color: #999;}
.readon:hover span, .readon:hover .button {color: #fff;}
.rt-pagetitle {color: #ccc;}
#rt-accessibility a.small .button, #rt-accessibility a.large .button, #rt-accessibility a.small:hover .button, #rt-accessibility a.large:hover .button {background-image: url(../images/body/style1/fontsizer.png);background-repeat: no-repeat;}
.rokradios, .rokchecks, .rokradios-active, .rokchecks-active {background-image: url(../images/body/style1/inputs.png);}
#rt-breadcrumbs {background: #222;}
#breadcrumbs-home {background: url(../images/body/style1/typography.png) 0 -23px no-repeat;}
span.breadcrumbs img {background: url(../images/body/style1/arrows.png) 50% 4px no-repeat;}
/* Joomla Specific */
.rt-joomla .icon {background-image: url(../images/body/style1/typography.png);}
.rt-pollrow {background: url(../images/body/style1/body-div.png) 50% 100% repeat-x;}
.rt-joomla .categorylist input {border: 1px solid #555;background: #444;color: #ccc;}
#rt-main-surround .rt-joomla .inputbox {border: 1px solid #555;background: #444;color: #ccc;}
.rt-joomla .search_result .phrase legend, .rt-joomla .search_result .only legend {color: #999;}
.rt-joomla legend {color: #999;}
.rt-joomla label {color: #999;}
.rt-joomla-table {color: #999;}
.rt-joomla th {background: #444;border-bottom: 1px solid #555;}
.rt-joomla tr.even td {padding: 5px;background: #393939;border-bottom: 1px solid #555;}
.rt-joomla tr.odd td {padding: 5px;background: #292929;border-bottom: 1px solid #555;}
#form-login .inputbox, #com-form-login .inputbox, #josForm .inputbox {background: #444;border: 1px solid #555;color: #ccc;}
.rt-joomla .edit-article fieldset legend {color: #ccc;}
.rt-joomla .edit-article textarea {background: #444;border: 1px solid #555;color: #ccc;}
.rt-joomla .edit-article #editor-xtd-buttons a:link, .rt-joomla .edit-article #editor-xtd-buttons a:visited {color: #ccc;}
.rt-joomla .user {margin-top: 15px;}
.rt-joomla .user legend {color: #ccc;text-transform: none;margin-top: 15px;}
.button2-left a, .button2-right a, .button2-left span, .button2-right span {color: #ccc;}
.button2-left span, .button2-right span {color: #ccc;}
.button2-left a:hover, .button2-right a:hover {color: #fff !important;}
.button2-left {background: url(../images/system/dark/j_button2_left.png) no-repeat;color: #ccc;}
.button2-right {background: url(../images/system/dark/j_button2_right.png) 100% 0 no-repeat;color: #ccc;}
.button2-left .image {background: url(../images/system/dark/j_button2_image.png) 100% 0 no-repeat;}
.button2-left .readmore {background: url(../images/system/dark/j_button2_readmore.png) 100% 0 no-repeat;}
.button2-left .pagebreak {background: url(../images/system/dark/j_button2_pagebreak.png) 100% 0 no-repeat;}
.button2-left .blank {background: url(../images/system/dark/j_button2_blank.png) 100% 0 no-repeat;}
body .button2-left .linkmacro {background: url(../images/system/dark/j_button2_rokcandy.png) 100% 0 no-repeat;}
.button2-left .blank a {color: #ccc;}
/* RTL */
body.rtl #rt-top .search .inputbox {background: url(../images/backgrounds/style1/search-bg-rtl.png) 0 0 no-repeat;}
body.rtl #form-login ul li a, body.rtl #com-form-login ul li a, body.rtl ul.rt-more-articles li a, body.rtl .rt-section-list ul li a {background-image: url(../images/body/style1/arrows-rtl.png);}
body.rtl #rt-main-surround ul.menu li a, body.rtl #rt-main-surround ul.menu li .separator, body.rtl #rt-main-surround ul.menu li .item {background: url(../images/body/style1/arrows-rtl.png) 100% 10px no-repeat;}
body.rtl span.breadcrumbs img {background: url(../images/body/style1/arrows-rtl.png) 50% 4px no-repeat;}
body.rtl .readon {background: url(../images/body/style1/readon-r-rtl.png) 100% 0 no-repeat;}
body.rtl .readon span, body.rtl .readon .button {background: url(../images/body/style1/readon-l-rtl.png) 0 0 no-repeat;}
/**
* @package Quasar Template - RocketTheme
* @version 1.5.3 June 10, 2010
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 - 2010 RocketTheme, LLC
* @license http://www.rockettheme.com/legal/license.php RocketTheme Proprietary Use License
*/
/* Core */
body {font-family: Helvetica,Arial,sans-serif;min-width: 960px;}
.font-family-optima {font-family: Optima, Lucida, 'MgOpen Cosmetica', 'Lucida Sans Unicode', sans-serif;}
.font-family-geneva {font-family: Geneva, Tahoma, "Nimbus Sans L", sans-serif;}
.font-family-helvetica {font-family: Helvetica, Arial, FreeSans, sans-serif;}
.font-family-lucida {font-family: "Lucida Grande",Helvetica,Verdana,sans-serif;}
.font-family-georgia {font-family: Georgia, sans-serif;}
.font-family-trebuchet {font-family: "Trebuchet MS", sans-serif;}
.font-family-palatino {font-family: "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", Times, serif;}
#rt-menu .rt-container, #rt-top .rt-container, #rt-showcase .rt-container, #rt-feature .rt-container, #rt-main .rt-container, #rt-bottom .rt-container, #rt-footer .rt-container, #rt-copyright .rt-container, #rt-maintop .rt-container, #rt-mainbottom .rt-container, #rt-breadcrumbs .rt-container, #rt-header .rt-container, #rt-toptab .rt-container, #rt-bottomtab .rt-container {background: transparent;}
.title {font-weight: normal;}
ul {list-style: none;padding-left: 0;}
ul li {list-style: square;margin-left: 15px;}
/* Top */
#rt-top .search .inputbox, #rt-top .form-item .form-text {width: 236px;height: 20px;line-height: 16px;border: 0;padding: 3px 0 0 5px;}
#rt-top .search, #rt-top .container-inline {text-align: right;}
/* Header */
#rt-header {position: relative;z-index: 2;}
#rt-header .rt-block {margin-bottom: 0;}
#rt-header4 {padding: 5px 0;}
#rt-logo {width: 236px;height: 49px;display: block;}
/* Top Menu */
#rt-header ul {margin: 0;padding: 0;float: right;position: relative;z-index: 1000;}
#rt-header ul li {padding: 0;margin-left: 4px;margin-bottom: 4px;list-style: none;float: left;position: relative;}
#rt-header ul li a, #rt-header ul li .separator {display: block;height: 29px;line-height: 28px;margin-left: 8px;cursor: pointer;z-index: 100;position: relative;}
#rt-header ul li a span, #rt-header ul li .separator span {display: block;padding: 0 10px;height: 29px;line-height: 28px;margin-left: -8px;font-size: 14px;}
#rt-header li ul li.parent {background: url(../images/parent.png) 97% 12px no-repeat;}
/* Menu Dropdowns */
#rt-header li ul {position:absolute;width:200px;top:-999em;left: auto;padding: 10px 0;}
#rt-header li ul ul {margin: 0;}
#rt-header li:hover ul ul, #rt-header li:hover ul ul ul, #rt-header li:hover ul ul ul ul {top:-999em;left: auto;}
#rt-header li li {margin: 0;padding: 0 10px 0 18px;height:auto;width:172px;}
#rt-header li li a, #rt-header li li.active a, #rt-header li li a:hover, #rt-header li li .separator, #rt-header li li.active .separator {margin:0;padding: 0;height: auto;float: none;width: auto;line-height:20px;display: block;}
#rt-header li li a span, #rt-header li li.active a span, #rt-header li li a:hover span, #rt-header li li .separator span, #rt-header li li.active .separator span {width: auto;display: block;line-height: 20px;text-transform: none;padding: 5px 5px 0 10px;}
#rt-header li li a, #rt-header li.active li a, #rt-header li li .separator, #rt-header li.active li .separator {font-weight:normal;}
#rt-header li:hover ul {left: 0;top: 29px;}
#rt-header li li:hover ul, #rt-header li li li:hover ul, #rt-header li li li li:hover ul {left:200px;top: -11px;}
/* Showcase */
#rt-showcase {position: relative;z-index: 1;}
#rt-showcase .showcase-title {font-size: 3.8em;line-height: 1em;font-weight: bold;margin-top: 15px;}
/* Main Body */
#rt-toptab .rt-block {padding: 15px 0 0 0;margin: 0;}
#rt-toptab .toptab, #rt-toptab .toptab2 {height: 34px;display: inline-block;}
#rt-toptab .toptab {margin-left: 25px;}
#rt-toptab .toptab2 {padding: 0 25px;line-height: 34px;font-size: 18px;margin-left: -25px;}
#rt-main-surround .rt-article-title {text-transform: none;margin: 0;display: block;font-size: 180%;letter-spacing: normal;}
#rt-sidebar-a, #rt-sidebar-b, #rt-sidebar-c {background-color: transparent;}
#rt-main-surround {overflow: hidden;}
#form-login ul li a, #com-form-login ul li a, ul.rt-more-articles li a, .rt-section-list ul li a {background-position: 0 2px;padding-left: 15px;}
#form-login ul li a:hover, #com-form-login ul li a:hover, ul.rt-more-articles li a:hover, .rt-section-list ul li a:hover {background-position: 0 -453px;}
/* Side Menus */
#rt-main-surround ul.menu {padding-left: 0;}
#rt-main-surround ul.menu li {list-style: none;margin-left: 0;}
#rt-main-surround ul.menu a, #rt-main-surround ul.menu .separator, #rt-main-surround ul.menu .item {display: block;text-indent: 0;overflow: hidden;font-size: 120%;font-weight: normal;padding: 4px 0 8px 20px;line-height: 1.8em;}
#rt-main-surround ul.menu li.active > a, #rt-main-surround ul.menu li.active > .separator, #rt-main-surround ul.menu li.active > .item {font-weight: bold;}
#rt-main-surround ul.menu li li {padding: 0;margin: 0;font-size: 95%;background: none;border: none;}
#rt-main-surround .menu .subtext em {line-height: 14px;}
#rt-main-surround .menu em {display: block;font-size:80%;font-style: normal;font-weight: normal;}
#rt-main-surround ul.menu li a:hover, #rt-main-surround ul.menu li .separator:hover, #rt-main-surround ul.menu li .item:hover, #rt-main-surround ul.menu li.active > a, #rt-main-surround ul.menu li.active > .separator, #rt-main-surround ul.menu li.active > .item {background-position: 5px -445px;}
/* Modules */
.module-title {margin: 15px 0;}
h2.title {display: block;letter-spacing: normal;line-height: 1em;margin: 0;}
.flush .rt-block {padding: 0;}
.icon1 .module-surround, .icon2 .module-surround, .icon3 .module-surround, .icon4 .module-surround {padding-left: 60px;position: relative;}
.module-icon {width: 45px;height: 41px;position: absolute;left: 0;top: 0;}
.icon1 .module-icon {background-position: 0 0;}
.icon2 .module-icon {background-position: 0 -44px;}
.icon3 .module-icon {background-position: 0 -87px;}
.icon4 .module-icon {background-position: 0 -129px;}
/* Bottom */
#rt-bottom .rt-container {border: 0;}
#rt-bottomtab .rt-block {padding: 15px 0 0 0;margin: 0;}
#rt-bottomtab .bottomtab, #rt-bottomtab .bottomtab2 {height: 34px;display: inline-block;}
#rt-bottomtab .bottomtab2 {padding: 0 25px;line-height: 34px;font-size: 18px;}
/* Footer */
#powered-by {margin:10px 0;}
#rocket {display:inline-block;width: 148px;height: 23px;margin:0 20px 0 5px;vertical-align:middle;}
#gantry-logo {display:inline-block;width: 102px;height: 27px;margin:0 10px 0 0px;vertical-align:middle;background-position: 0 -24px;}
#rt-copyright {text-align: left;}
#gantry-totop, #gantry-totop span {height: 34px;display: inline-block;position: absolute;bottom: 0;right: 0;cursor: pointer;}
#gantry-totop span {padding: 0 25px;line-height: 34px;text-align: center;white-space: nowrap;}
#gantry-resetsettings {margin-left:15px;margin-bottom:5px;display:block;float:left;}
/* Typography */
.readon {display: inline-block;margin-left: 8px;height: 30px;}
.readon span, .readon .button {display: block;margin-left: -8px;padding: 0 18px 0 10px;border: 0;font-size: 13px;cursor: pointer;height: 30px;line-height: 30px;float: left;}
.readon:hover {background-position: 100% -30px;}
.readon:hover span, .readon:hover .button {background-position: 0 -30px;}
#rt-bottom .readon {background-position: 100% -60px;}
#rt-bottom .readon span, #rt-bottom .readon .button {background-position: 0 -60px;}
#rt-bottom .readon:hover {background-position: 100% -90px;}
#rt-bottom .readon:hover span, #rt-bottom .readon:hover .button {background-position: 0 -90px;}
#rt-footer .readon {background-position: 100% -120px;}
#rt-footer .readon span, #rt-footer .readon .button {background-position: 0 -120px;}
#rt-footer .readon:hover {background-position: 100% -150px;}
#rt-footer .readon:hover span, #rt-footer .readon:hover .button {background-position: 0 -150px;}
#rt-accessibility .rt-desc {display: block;float: left;text-align: left;margin-right: 5px;font-size: 12px;font-weight: bold;}
#rt-accessibility #rt-buttons {float: left;}
#rt-accessibility .button {display: block;width: 14px;height: 8px;}
#rt-accessibility a.large .button {background-position: 0 0;margin-bottom: 4px;}
#rt-accessibility a.large:hover .button {background-position: -15px 0;}
#rt-accessibility a.small .button {background-position: 0 -11px;}
#rt-accessibility a.small:hover .button {background-position: -15px -11px;}
.rokradios, .rokchecks {padding: 1px 5px 7px 24px;line-height: 120%;}
.rokradios {background-position: 0 0;background-repeat: no-repeat;}
.rokradios-active {background-position: 0 -211px;background-repeat: no-repeat;}
.rokchecks {background-position: 0 -423px;background-repeat: no-repeat;}
.rokchecks-active {background-position: 0 -634px;background-repeat: no-repeat;}
.date-block .date {font-size: 110%;}
#rt-breadcrumbs {margin-top: 10px;}
#breadcrumbs-home {width: 15px;height: 15px;display: block;float: left;margin-top: 4px;}
#breadcrumbs h3, .leading_separator {display: none;}
span.breadcrumbs {display: block;font-size: 110%;font-weight: bold;overflow: hidden;}
span.breadcrumbs img {width: 12px;height: 23px;float: left;}
span.breadcrumbs a, span.no-link {padding: 0 10px;float: left;display: block;height: 23px;line-height: 20px;}
.floatleft {float: left;margin-right: 25px;margin-bottom: 25px;}
.floatright {float: right;margin-left: 25px;margin-bottom: 25px;}
/* RTL */
body.rtl #rt-top .search .inputbox {padding: 3px 5px 0 0;}
body.rtl #rt-top .search {text-align: right;}
body.rtl #rt-header ul {float: left;}
body.rtl #rt-header ul li {float: right;}
body.rtl #rt-header li ul li.parent {background: url(../images/parent-rtl.png) 5px 12px no-repeat;}
body.rtl #rt-header li ul {position:absolute;width:200px;top:-999em;left: auto;padding: 10px 0;}
body.rtl #rt-header li ul ul {margin: 0;}
body.rtl #rt-header li:hover ul ul, body.rtl #rt-header li:hover ul ul ul, body.rtl #rt-header li:hover ul ul ul ul {top:-999em;left: auto;}
body.rtl #rt-header li li {margin: 0;padding: 0 10px 0 18px;height:auto;width:172px;}
body.rtl #rt-header li li a, body.rtl #rt-header li li.active a, body.rtl #rt-header li li a:hover, body.rtl #rt-header li li .separator, body.rtl #rt-header li li.active .separator {margin:0;padding: 0;height: auto;float: none;width: auto;line-height:20px;display: block;}
body.rtl #rt-header li li a span, body.rtl #rt-header li li.active a span, body.rtl #rt-header li li a:hover span, body.rtl #rt-header li li .separator span, body.rtl #rt-header li li.active .separator span {width: auto;display: block;line-height: 20px;text-transform: none;padding: 5px 5px 0 10px;}
body.rtl #rt-header li li a, body.rtl #rt-header li.active li a, body.rtl #rt-header li li .separator, body.rtl #rt-header li.active li .separator {font-weight:normal;}
body.rtl #rt-header li:hover ul {top: 29px;right: 0;}
body.rtl #rt-header li li:hover ul, body.rtl #rt-header li li li:hover ul, body.rtl #rt-header li li li li:hover ul {top: -11px;right: 200px;}
body.rtl #form-login ul li a, body.rtl #com-form-login ul li a, body.rtl ul.rt-more-articles li a, body.rtl .rt-section-list ul li a {background-position: 100% 2px;padding-left: 15px;}
body.rtl #form-login ul li a:hover, body.rtl #com-form-login ul li a:hover, body.rtl ul.rt-more-articles li a:hover, body.rtl .rt-section-list ul li a:hover {background-position: 100% -453px;}
body.rtl #rt-main-surround ul.menu ul {margin-right: 25px;margin-left: 0;}
body.rtl #rt-main-surround ul.menu a, body.rtl #rt-main-surround ul.menu .separator, body.rtl #rt-main-surround ul.menu .item {padding: 4px 20px 8px 0;}
body.rtl #rt-main-surround ul.menu li a, body.rtl #rt-main-surround ul.menu li .separator, body.rtl #rt-main-surround ul.menu li .item {background-position: 100% 10px;}
body.rtl #rt-main-surround ul.menu li a:hover, body.rtl #rt-main-surround ul.menu li .separator:hover, body.rtl #rt-main-surround ul.menu li .item:hover, body.rtl #rt-main-surround ul.menu li.active > a, body.rtl #rt-main-surround ul.menu li.active > .separator, body.rtl #rt-main-surround ul.menu li.active > .item {background-position: 100% -445px;}
body.rtl .icon1 .module-surround, body.rtl .icon2 .module-surround, body.rtl .icon3 .module-surround, body.rtl .icon4 .module-surround {padding-left: 0;padding-right: 60px;}
body.rtl .module-icon {left: auto;right: 0;}
body.rtl #rocket {margin:0 5px 0 20px;}
body.rtl #gantry-logo {margin:0 0 0 10px;}
body.rtl #rt-copyright {text-align: right;}
body.rtl #gantry-totop, body.rtl #gantry-totop span {right: auto;left: 0;}
body.rtl #gantry-resetsettings {margin-left: 0;margin-right: 15px;float: right;}
body.rtl #rt-accessibility .rt-desc {float: right;text-align: right;margin-right: 0;margin-left: 5px;}
body.rtl #rt-accessibility #rt-buttons {float: right;}
body.rtl .rokradios, body.rtl .rokchecks {padding: 1px 24px 7px 5px;}
body.rtl .rokradios {background-position: 100% 0;}
body.rtl .rokradios-active {background-position: 100% -211px;}
body.rtl .rokchecks {background-position: 100% -423px;}
body.rtl .rokchecks-active {background-position: 100% -634px;}
body.rtl #breadcrumbs-home {float: right;}
body.rtl span.breadcrumbs img {float: right;}
body.rtl span.breadcrumbs a, body.rtl span.no-link {float: right;}
body.rtl .readon {margin-left: 14px;}
body.rtl .readon span, body.rtl .readon .button {margin-left: -14px;padding: 0 10px 0 18px;}
body.rtl .readon:hover {background-position: 100% -30px;}
body.rtl .readon:hover span, body.rtl .readon:hover .button {background-position: 0 -30px;}
/**
* @package Quasar Template - RocketTheme
* @version 1.5.3 June 10, 2010
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 - 2010 RocketTheme, LLC
* @license http://www.rockettheme.com/legal/license.php RocketTheme Proprietary Use License
*/
/* Bullet Styles */
ul.bullet-1, ul.bullet-2, ul.bullet-3, ul.bullet-4 {padding: 0 0 0 15px;}
ul.bullet-1 li, ul.bullet-2 li, ul.bullet-3 li, ul.bullet-4 li {list-style: none;padding: 0 0 3px 15px;margin: 0 0 5px;background: no-repeat 0 4px;}
ul.bullet-1 li a, ul.bullet-2 li a, ul.bullet-3 li a, ul.bullet-4 li a {font-size: 100%;line-height: 1.7;}
ul.bullet-1 li {background-image: url(../images/typography/bullet1.png);}
ul.bullet-2 li {background-image: url(../images/typography/bullet2.png);}
ul.bullet-3 li {background-image: url(../images/typography/bullet3.png);}
ul.bullet-4 li {background-image: url(../images/typography/bullet4.png);}
.cssstyle-style1 ul.bullet-1 li, .cssstyle-style3 ul.bullet-1 li, .cssstyle-style5 ul.bullet-1 li {background-image: url(../images/typography/bullet1-dark.png);}
.cssstyle-style1 ul.bullet-2 li, .cssstyle-style3 ul.bullet-2 li, .cssstyle-style5 ul.bullet-2 li {background-image: url(../images/typography/bullet2-dark.png);}
.cssstyle-style1 ul.bullet-3 li, .cssstyle-style3 ul.bullet-3 li, .cssstyle-style5 ul.bullet-3 li {background-image: url(../images/typography/bullet3-dark.png);}
.cssstyle-style1 ul.bullet-4 li, .cssstyle-style3 ul.bullet-4 li, .cssstyle-style5 ul.bullet-4 li {background-image: url(../images/typography/bullet4-dark.png);}
/* Emphasis Styles*/
em.color {font-style: italic;font-weight: bold;}
em.bold {font-size: 120%;font-weight: bold;line-height: 150%;font-style: normal;}
/* Drop Cap */
p.dropcap {overflow: hidden;}
span.dropcap {font-size: 400%;margin: 0 5px 0 0;line-height: 100%;color: #333;float: left;display: block;}
.cssstyle-style1 span.dropcap, .cssstyle-style3 span.dropcap, .cssstyle-style5 span.dropcap {color: #999;}
/* Notice Styles */
pre {background: #F9F1ED;border-bottom: 1px solid #DCD7D4;border-right: 1px solid #DCD7D4;color: #AC3400;font-style:italic;overflow: auto;padding: 10px;}
.cssstyle-style1 pre, .cssstyle-style3 pre, .cssstyle-style5 pre {background: #333;border-bottom: 1px solid #3a3a3a;border-right: 1px solid #3a3a3a;color: #bbb;}
.alert, .approved, .attention, .camera, .cart, .doc, .download, .media, .note, .notice {display: block;margin: 15px 0;background: repeat-x 0 100%;background-color: #FAFCFD;}
.typo-icon {display: block;padding: 8px 10px 0px 36px;margin: 15px 0;background: no-repeat 10px 12px;}
.alert {color: #D0583F;background-image: url(../images/typography/alert.png);border-bottom: 1px solid #F8C9BB;border-right: 1px solid #F8C9BB;}
.approved {color: #6CB656;background-image: url(../images/typography/approved.png);border-bottom: 1px solid #C1CEC1;border-right: 1px solid #C1CEC1;}
.attention {color: #E1B42F;background-image: url(../images/typography/attention.png);border-bottom: 1px solid #E4E4D5;border-right: 1px solid #E4E4D5;}
.camera {color: #55A0B4;background-image: url(../images/typography/camera.png);border-bottom: 1px solid #C9D5D8;border-right: 1px solid #C9D5D8;}
.cart {color: #559726;background-image: url(../images/typography/cart.png);border-bottom: 1px solid #D3D3D3;border-right: 1px solid #D3D3D3;}
.doc {color: #666666;background-image: url(../images/typography/doc.png);border-bottom: 1px solid #E5E5E5;border-right: 1px solid #E5E5E5;}
.download {color: #666666;background-image: url(../images/typography/download.png);border-bottom: 1px solid #D3D3D3;border-right: 1px solid #D3D3D3;}
.media {color: #8D79A9;background-image: url(../images/typography/media.png);border-bottom: 1px solid #DBE1E6;border-right: 1px solid #DBE1E6;}
.note {color: #B76F38;background-image: url(../images/typography/note.png);border-bottom: 1px solid #E6DAD2;border-right: 1px solid #E6DAD2;}
.notice {color: #6187B3;background-image: url(../images/typography/notice.png);border-bottom: 1px solid #C7CDDA;border-right: 1px solid #C7CDDA;}
.approved .typo-icon {background-image: url(../images/typography/approved-icon.png);}
.alert .typo-icon {background-image: url(../images/typography/alert-icon.png);}
.attention .typo-icon {background-image: url(../images/typography/attention-icon.png);}
.camera .typo-icon {background-image: url(../images/typography/camera-icon.png);}
.cart .typo-icon {background-image: url(../images/typography/cart-icon.png);}
.doc .typo-icon {background-image: url(../images/typography/doc-icon.png);}
.download .typo-icon {background-image: url(../images/typography/download-icon.png);}
.media .typo-icon {background-image: url(../images/typography/media-icon.png);}
.note .typo-icon {background-image: url(../images/typography/note-icon.png);}
.notice .typo-icon {background-image: url(../images/typography/notice-icon.png);}
/* Important Style*/
.important {border: 1px solid #E5E5E5;background: url(../images/typography/important.png) repeat-x 0 100%;padding: 15px;margin: 25px 0 10px 0;position: relative;}
span.important-title {background: #fff;color: #000;position: absolute;display: block;top: -0.8em;left: 10px;padding: 3px 8px;font-size: 120%;font-weight: bold;}
.cssstyle-style1 .important, .cssstyle-style3 .important, .cssstyle-style5 .important {background: none #333;border: none;color: #999;}
.cssstyle-style1 span.important-title, .cssstyle-style1 span.important-title, .cssstyle-style3 span.important-title, .cssstyle-style3 span.important-title, .cssstyle-style5 span.important-title, .cssstyle-style5 span.important-title {color: #999;background: #333;}
/* Inset Styles */
span.inset-left {float: left;margin-right: 20px;margin-bottom:20px;}
span.inset-right {float: right;margin-left: 20px;margin-bottom:20px;}
span.inset-right-title, span.inset-left-title {background: #fff;color: #000;position: absolute;display: block;top: -12px;left: 10px;padding: 3px 8px;font-size: 100%;font-weight: bold;}
span.inset-left, span.inset-right {display: block;padding: 12px 8px 8px 8px;width: 20%;font-size: 100%;font-style: italic;margin-top: 25px;position: relative;border: 1px solid #E5E5E5;background: url(../images/typography/important.png) repeat-x 0 100%;color: #333;text-align: center;}
.cssstyle-style1 span.inset-left, .cssstyle-style1 span.inset-right, .cssstyle-style3 span.inset-left, .cssstyle-style3 span.inset-right, .cssstyle-style5 span.inset-left, .cssstyle-style5 span.inset-right {background: none #333;border: none;color: #999;}
.cssstyle-style1 span.inset-left-title, .cssstyle-style1 span.inset-right-title, .cssstyle-style3 span.inset-left-title, .cssstyle-style3 span.inset-right-title, .cssstyle-style5 span.inset-left-title, .cssstyle-style5 span.inset-right-title {color: #999;background: #333;}
/* Image Style */
.cssstyle-style1 .img-demo, .cssstyle-style3 .img-demo, .cssstyle-style5 .img-demo {border: 2px solid #333;padding: 2px;margin: 3px;}
.cssstyle-style2 .img-demo, .cssstyle-style4 .img-demo, .cssstyle-style6 .img-demo {border: 2px solid #ddd;padding: 2px;margin: 3px;}
/* Dark tabs **************************/
ul.primary {
border-collapse: collapse;
padding: 0 0 0 10px; /* LTR */
white-space: nowrap;
list-style: none;
margin: 0;
height: 35px;
line-height: normal;
border-bottom: 1px solid #333;
}
ul.primary li a {
margin: -2px;
padding: 6px 20px 6px 20px;
background: #444 url(../images/tabs/dark/tabs-on.png) left top no-repeat;
border-top: 1px solid #444;
border-right: 1px solid #444;
border-left: 1px solid #444;
text-decoration: none;
color: #999;
}
ul.primary li.active a {
background: #444 url(../images/tabs/dark/tabs-off.png) left top no-repeat;
border-top: 1.5px solid #444;
border-right: 1.5px solid #444;
border-left: 1.5px solid #444;
border-bottom: 0px solid #E4E4E4;
color: #555;
}
ul.primary li a:hover {
color: #000;
border-top: 1px solid #555;
border-right: 1px solid #555;
border-left: 1px solid #555;
}
/*********************************************************/
#forum tr td.icon {
background-image: url("../images/dark/forum_read.gif");
}
#forum tr td.forum {
background-color: transparent;
background-image: url("../images/dark/forum_read.gif");
background-position: left center;
}
tr.even, tr.odd {
border-bottom-color: #555;
}
thead th { border-bottom: 1px solid #444; }
fieldset,
form.variation-chooser input,
ul li.node_read_more,
ul.secondary
{ border: 1px solid #333; -moz-border-radius: 0px; -webkit-border-radius: 0px; }
form.variation-chooser input,
ul li.node_read_more {
margin: 15px 5px 15px 0;
cursor:pointer;
background: #333 url(../images/tabs/dark/tabs-on.png) left top no-repeat;
}
input, textarea, file {
background-color: #333;
border: 1px solid #555;
color: #fff;
}
#blocks td.region { border-bottom: 1px solid #444;}
#searchmod .form-text,
#pollbutton .button { color: #ccc; }
.secondary li a.active {color:#fff;}
/* Admin settings */
#system-theme-settings .form-item label {
width: 200px;
float: left;
padding-right: 5px;
}
#system-theme-settings .escaped {
clear:both;
padding-top: 10px;
}
.theme-settings-bottom {
clear: left;
}
input, textarea, file {
padding: 2px;
}
form.variation-chooser input {
padding: 3px 7px;
}
/* Admin Tabs */
.primary li {
display: inline;
line-height: 45px;
}
thead th { border-bottom: 1px solid #ddd; }
.Button {
border: 0;
background: none;
cursor: pointer;
}
.container-inline div,
.container-inline label {
display: inline-block;
}
.container-inline a {padding-left: 10px;}
.readon {
margin-top: 5px;
margin-right: 5px;
}
.login #user-login-form .readon {
padding-right: 90px;
}
#user-login-form .item-list {
font-size: 11px;
padding: 10px 40px 0 20px;
clear: both;
}
.readon-wrap1 {
display: inline-block;
height: 25px;
margin-left: 3px;
}
.readon-wrap1 .readon-main {
border: 0 none;
display: block;
float: left;
font-size: 12px;
/*height: 25px; code cleaning*/
line-height: 25px;
margin-left: -3px;
padding: 0 10px 3px;
}
.readon-wrap1 .readon-main a:hover {
background-position: 0 -50px;
}
.module-content #poll-view-voting .readon {
float: left;
}
#rt-showcase #rt-submenu a {
color: #666666;
}
#rt-showcase #rt-submenu a:hover {
color: #222;
}
.icon-left span a {
color: #fff ;
}
#blocks td.region { border-bottom: 1px solid #ddd;}
.form-item .description {
text-align: left;
border: 0 solid #ccc;
clear: left;
/*font-style: italic;*/
}
/*Suckerfish overrides */
#horiz-menu ul.menutop li ul {
margin-top: 3px;
padding: 5px 10px 5px 0;
}
#horiz-menu ul.sf-menu li ul {
margin-top: -3px;
padding: 5px 10px 5px 0;
}
#horiz-menu ul.sf-menu li ul li,
#horiz-menu ul.menutop li ul li {
margin: 0 0 0 5px;
}
/*Theme overrides */
#showmodules .block .middle .moduletable {
padding: 0 5px 15px 3px;
}
#showmodules .block .last .moduletable {
padding: 0 0 15px 5px;
}
#mainmodules .block .middle .moduletable,
#mainmodules .block .last .moduletable {
padding: 0 20px 15px 0;
}
#menu-overview {
width: 100%;
}
#blocks {
width: 100%;
}
#blocks td.region {
text-transform: uppercase;
font-size: 120%;
padding-top: 25px;
}
.update tr.ok,
.update .unknown {
background: transparent;
}
.update tr td {
border-bottom: 1px solid #555;
border-top: 1px solid #555;
}
.roktabs-top li a {
font-size: 100%;
line-height: 42px;
}
td {
padding: 5px;
}
td.active {
background: transparent;
}
#logo_space {
width: 315px;
float: left;
}
#restore {
float: right;
margin-top: -15px;
}
#restore a {
color: #ccc;
}
#site_slogan {
text-align: center;
margin-top: -70px;
text-transform: lowercase;
}
.style6 #site_slogan, .style8 #site_slogan, .style9 #site_slogan { color: #555; }
.system-status-report th {
border: 0;
}
div.ok, tr.ok, div.error, tr.error {
color: inherit;
}
fieldset {
padding: 15px;
}
#inner_wrapper {
float: left;
}
.comment .content { padding: 10px 0 10px 0; }
.comment-title a {
color: #fff;
}
.jclist .picture img {
width: 32px;
height: 32px;
}
form.variation-chooser input {
padding: 3px 7px;
}
form.variation-chooser input {
text-decoration: none;
color: #fff;
}
.style2 form.variation-chooser input,
.style6 form.variation-chooser input,
.style8 form.variation-chooser input,
.style9 form.variation-chooser input {
color: #777;
}
/*.links a:hover {text-decoration: none;}*/
.custom fieldset, .custom .Button, .custom .button { border: 1px solid #454A2D; }
/********************************/
ul.secondary li {
border: 0;
}
ul.secondary a.active {
border: 0;
background: transparent;
padding: 4px 1em;
height: auto;
font-weight: bold;
text-transform: uppercase;
}
.menutop ul li > .daddy span {
background-position: 90% 50%;
}
#leftcol .submenu-block ul.menu li a, #rightcol .submenu-block ul.menu li a {
background: none;
padding-left: 0;
}
/* Forum Styling ***************/
#forum {
padding: 0;
}
#forum td.icon {
border: 0;
background-position: 0 0;
}
#forum td.icon img {
display: none;
}
#forum td.title {
background: transparent;
}
#forum ul.links {
float: right;
margin-bottom: 10px;
}
#forum table {
width: 100%;
}
.forum-topic-navigation {
margin-top: 20px;
border-bottom: 0 solid #e6e6e6;
border-top: 0 solid #e6e6e6;
}
.links .inline {
float: right;
padding-right: 20px;
font-style: italic;
}
.links .rt-readon-surround {
margin-top: 15px;
}
.forum-topic-navigation .topic-previous {
text-align: left;
}
.forum-topic-navigation .topic-next {
text-align: right;
}
#forum tr.even, #forum tr.odd, #forum td {
background-color: transparent;
border-bottom: 1px solid #ddd;
}
.forum-topic-navigation .next {
float: right;
}
.forum-topic-navigation .prev {
float: left;
}
#forum table {
margin: 5px 0 0 0;
border: 0 solid #ddd;
}
#forum table thead {
margin: 0;
padding: 0;
}
#forum td {
padding: 5px 0 5px 10px;
}
#forum .name {
padding: 15px 0 0 50px;
font-weight: bold;
}
#forum .description {
padding-left: 10px;
margin: 0;
}
#forum .title {
font-weight: bold;
}
#forum .replies,
#forum .topics,
#forum .posts {
text-align: left;
}
#forum tr td.icon img {
display: none;
}
#forum tr td {
padding: 0px;
}
#forum tr td.icon {
background-image: url("../images/announce_read.png");
}
#forum .forum {
background-color: transparent;
background-position: 10px center;
background-repeat: no-repeat;
height: 50px;
}
.rt-joomla tr.odd td,
.rt-joomla tr.even td {
border: 0;
}
#forum tr td.icon {
margin-top: 5px;
background-repeat: no-repeat;
background-position: center center;
width: 27px;
height: 27px;
line-height: 30px;
float: none;
text-align: center;
padding-left: 5px;
}
#center-column table {
width: 100%;
}
/*****************************/
.module-content .item-list h3 {
/*display: none;*/
font-weight: normal;
font-size: 120%;
}
div.item-list ul {
border: 0;
list-style: none !important;
}
div.item-list ul li {
list-style: none !important;
padding: 0 0 7px 0;
margin-left: 0;
background: url(../images/typo/bullet-1.png) 0 5px no-repeat !important;
}
.item-list ul li a { padding: 0 0 0 0; font-weight: bold;}
form .item-list ul {
padding: 10px 0 10px 0;
}
form .item-list ul li {
text-align: left;
padding: 0;
}
form .item-list ul li a { font-weight: normal; }
/*.more-link {visibility: hidden;}*/
.node-form {
display: table;
}
#rightcol ul.menu li.expanded ul.menu li a, #leftcol ul.menu li.expanded ul.menu li a { background: none; text-indent: 10px;}
#rightcol ul.menu li.expanded ul.menu li.expanded li a, #leftcol ul.menu li.expanded ul.menu li.expanded li a {text-indent: 30px;}
#rightcol ul.menu li.active-trail a, #leftcol ul.menu li.active-trail a {font-weight: bold;}
#rt-main-surround ul.menu li.expanded ul.menu {
margin-left: 20px;
}
#rightcol ul.menu li.active-trail a.active,
#rightcol ul.menu li.active-trail ul.menu a.active,
#leftcol ul.menu li.active-trail a.active,
#leftcol ul.menu li.active-trail ul.menu a.active
{font-weight: bold;}
#rightcol ul.menu li ul.menu li a, #leftcol ul.menu li ul.menu li a {
font-size: 12px;
}
#rightcol .side-mod .item-list h3, #leftcol .side-mod .item-list h3 { background: none; margin-left: -15px; border-bottom: 0;}
.cssstyle-style1 .poll .bar .foreground { background-color: #ccc; }
.cssstyle-style2 .poll .bar .foreground { background-color: #ccc; }
.cssstyle-style3 .poll .bar .foreground { background-color: #ccc; }
.cssstyle-style4 .poll .bar .foreground { background-color: #ccc; }
.cssstyle-style5 .poll .bar .foreground { background-color: #ccc; }
.cssstyle-style6 .poll .bar .foreground { background-color: #ccc; }
.cssstyle-style7 .poll .bar .foreground { background-color: #999; }
.cssstyle-style8 .poll .bar .foreground { background-color: #fff; }
#poll-view-voting {margin-top: 5px;}
.poll-title {margin-top: -1px;}
.front {margin-top: 0;}
.dotted {
border-bottom: 1px dotted #ccc;
padding: 8px;
margin-bottom: 10px;
}
.separator {
margin: 15px 0 15px 0;
border-bottom: 1px solid #ddd;
padding: 5px 0 5px 0;
clear:both;
}
.form-item {
border: 0;
}
.breadcrumbs img {
border: 0px;
}
#search-block-form .form-item .Button {
display: none !important;
}
#searchmod .Button {
visibility: hidden;
overflow: hidden;
display: none;
}
#user-login-form .Button {
margin-top: -1px;
}
#user-login-form label {
font-size: 0.9em;
}
/**
.module-content form#user-login-form {
}
**/
/**
#user-login-form #edit-name-wrapper,
#user-login-form #edit-pass-wrapper {
}
**/
#user-login-form #edit-name, #edit-pass {
font-size: 1.2em;
}
#user-login-form .readon {
float: left;
clear: both;
}
form#search-wipe-confirm a {
padding-left: 10px;
}
form#search-wipe-confirm .Button a {
padding-left: 0px;
}
form#search-block-form #edit-submit,
form#search-block-form .form-submit {
display: none;
}
/**
#search-block-form .form-item
{background: #e9e9e9 url(../images/body/main/sidemenu-bg.png) 0 0 repeat-x;border-top: 1px solid #d4d4d4;border-right: 1px solid #fff;border-bottom: 1px solid #fff;border-left: 1px solid #d4d4d4;}
**/
#sl_lostpass {
display: none;
}
.content-row-last {
border-bottom: 0px;
}
tbody {
border-top: 0px solid #ccc;
}
ul.menu li {
margin-left: 0;
}
.block-region {
padding: 1em;
background: transparent;
border: 2px dashed #ccc;
text-align: center;
font-size: 1.3em;
}
.hidden {
display: none;
}
</style>
<title>
Kentucky Repossession Laws | Midwest Lenders Services
</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta content="Drupal 7 (http://drupal.org)" name="Generator">
<style media="all" type="text/css">
</style>
<style media="all" type="text/css">
</style>
<style media="all" type="text/css">
</style>
<style type="text/css">
<!--
body a {color:#3D9FD0;}
body a,
#rt-main-surround .rt-article-title,
#rt-main-surround .title,
#rt-showcase .title,
#rt-showcase .showcase-title span,
#rt-top .title,
#rt-header .title,
#rt-feature .title
{color:#3D9FD0;}
-->
</style>
<meta content="AymqwRC7u88Y4JPvfIF2F37QKylC04248hLCdJAsh8xgOfe/dVJPV3XS3wLFca1ZMVOtnBfVjaCMTVudWM//5g4AAAB7eyJvcmlnaW4iOiJodHRwczovL3d3dy5nb29nbGV0YWdtYW5hZ2VyLmNvbTo0NDMiLCJmZWF0dXJlIjoiUHJpdmFjeVNhbmRib3hBZHNBUElzIiwiZXhwaXJ5IjoxNjk1MTY3OTk5LCJpc1RoaXJkUGFydHkiOnRydWV9" http-equiv="origin-trial">
</head>
<body class="backgroundlevel-high bodylevel-high cssstyle-style1 font-family-lucida font-size-is-default col12">
<div id="skip-link">
<a class="element-invisible element-focusable">
Skip to main content
</a>
</div>
<div id="rt-top">
<div class="rt-container">
<div id="rt-top2">
<div class="rt-grid-6 rt-alpha">
<div class="rt-block">
<div class="rt-module-surround">
<div class="rt-module-inner">
<div class="module-content">
<div class="date-block">
<span class="date">
Saturday, November 4, 2023
</span>
</div>
<div class="clear">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="rt-grid-6 rt-omega">
<div class="rt-block">
<div class="rt-module-surround">
<div class="rt-module-inner">
<div class="module-content">
<form accept-charset="UTF-8" action="/?q=repo-company/kentucky-repossession-laws" id="search-block-form" method="post">
<div>
<div class="container-inline">
<h2 class="element-invisible">
<span>
Search
</span>
form
</h2>
<div class="form-item form-type-textfield form-item-search-block-form">
<input class="form-text" id="edit-search-block-form--2" maxlength="128" name="search_block_form" onblur="if (this.value == '') {this.value = 'search...';}" onfocus="if (this.value == 'search...') {this.value = '';}" size="30" type="text" value="search...">
</div>
<div class="form-actions form-wrapper" id="edit-actions">
<input class="Button form-submit" id="edit-submit" name="op" type="submit" value="Search">
</div>
<input name="form_build_id" type="hidden" value="form-0AJ8U9fcDzR5VTKDx5ZBLMBIVhK34CYYD6Nw21p9uEM">
<input name="form_id" type="hidden" value="search_block_form">
</div>
</div>
</form>
<div class="clear">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="clear">
</div>
</div>
</div>
</div>
<div id="rt-header">
<div class="rt-container">
<div id="rt-header2">
<div id="rt-header3">
<div id="rt-header4">
<div class="rt-grid-4 rt-alpha">
<div class="rt-block">
<a class="png" id="rt-logo">
</a>
</div>
</div>
<div class="rt-grid-8 rt-omega">
<div class="_menu">
<div class="rt-block">
<div class="module-surround">
<div class="module-content">
<ul class="menu">
<li class="item root f-main-parent f-mainparent-item">
<a class="orphan item bullet" title>
<span>
Locate Debtors
</span>
</a>
</li>
<li class="item root f-main-parent f-mainparent-item">
<a class="orphan item bullet" title>
<span>
Monitor Debt
</span>
</a>
</li>
<li class="item root f-main-parent f-mainparent-item">
<a class="orphan item bullet" title>
<span>
Debt Recovery
</span>
</a>
</li>
<li class="item root f-main-parent f-mainparent-item">
<a class="orphan item bullet" title>
<span>
Collection Prioritization
</span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="clear">
</div>
</div>
</div>
<div class="clear">
</div>
<div class="clear">
</div>
</div>
</div>
</div>
</div>
</div>
<div id="rt-main-surround">
<div id="rt-breadcrumbs">
<div class="rt-container">
<div class="rt-breadcrumb-surround">
<a id="breadcrumbs-home">
</a>
<span class="breadcrumbs pathway">
<a>
Home
</a>
<img src="rick.jpg">
<span class="no-link">
Kentucky Repossession Laws
</span>
</span>
</div>
<div class="clear">
</div>
</div>
</div>
<div class="mb8-sa4" id="rt-main">
<div class="rt-container">
<div class="rt-grid-8">
<div class="rt-block">
<div class="rt-mainbody">
<div class="rt-joomla">
<!-- Begin Admin Tabs -->
<!-- End Admin Tabs -->
<!-- Print Section Heading -->
<div class="rt-block">
<div class="module-content">
<div class="rt-article">
<div class="rt-headline">
<h1 class="rt-article-title">
<span>
Kentucky
</span>
Repossession Laws
</h1>
</div>
<div class="field field-name-body field-type-text-with-summary field-label-hidden">
<div class="field-items">
<div class="field-item even">
<p>
Those that live in the state of Kentucky should note that we have compiled a repo resource guide, with all relevant rules and regulations pertaining about property recovery in the state.
</p>
<p>
You may wish to know that for a repo to happen in Kentucky, the security interests need to be shown on title of the borrower, whereas the lien holder keeps the lien statement. Also, plates are to remain with the vehicle in dispute.
</p>
<p>
MLS takes pride in providing clients in Kentucky with repo services on real estate and vehicles as well as other items. We will surely process your equipment from the initial consultation to eventual re-marketing of you rproperty.
</p>
<p>
For more, you can also give us a call today at [PHONE REDACTED].
</p>
<p>
</p>
<p>
As reported by the American Recovery Association, Inc. (ARA).
</p>
<div>
<p>
<strong>
Kentucky Repossession Laws
</strong>
<br>
TITLE STATE: Yes
<br>
SECURITY INTERESTS: Shown on title, Title mailed to & held by debtor. Lien holder holds title lien statement.
<br>
LICENSE REGISTRATION: Kentucky Division of Motor Licensing, State Office Building, Room 203, Frankfort, Kentucky 40622. Tel: [PHONE REDACTED].
<br>
RECOVERY REQUIREMENT: As per UCC, Kentucky repossession allowed without committing a breach of the peace.
<br>
DOCUMENTS REQUIRED FOR LIQUIDATION: Title, Repossession Affidavit.
<br>
PLATES: Remain with the vehicle.
</p>
<h3>
<span>
Constitution
</span>
and Legislation
</h3>
<ul>
<li>
<a target="_blank">
Constitution
</a>
</li>
<li>
<a target="_blank">
Statutes
</a>
(PDF) |
<a target="_blank">
Recent Legislation
</a>
</li>
<li>
<a target="_blank">
Pending Bills and Other Legislative Information
</a>
</li>
<li>
<a target="_blank">
Directory Information – The Legislature
</a>
</li>
</ul>
<p>
</p>
<h3>
<span>
Judicial
</span>
Opinions
</h3>
<ul>
<li>
<a target="_blank">
Supreme Court
</a>
(June 1999 – present)
</li>
<li>
Court of Appeals
</li>
<li>
<a target="_blank">
Court Rules
</a>
</li>
<li>
The Judiciary:
<a target="_blank">
Background
</a>
|
<a target="_blank">
Directory Information
</a>
</li>
</ul>
<p>
</p>
<h3>
<span>
Regulations
</span>
and Other Agency Material
</h3>
<ul>
<li>
<a target="_blank">
Administrative Code
</a>
</li>
<li>
<a target="_blank">
Directory and Other State Agency Information
</a>
</li>
</ul>
<p>
</p>
<h3>
<span>
Additional
</span>
State Equipment Repo Legal Resources
</h3>
<ul>
<li>
<a target="_blank" title="Kentucky Secretary of State">
Kentucky Secretary of State
</a>
</li>
<li>
<a target="_blank">
LII American Legal Ethics Library
</a>
</li>
<li>
<a target="_blank">
Kentucky Bar Association
</a>
</li>
<li>
<a target="_blank">
State Govt. Home Page
</a>
</li>
</ul>
</div>
<p>
</p>
</div>
</div>
</div>
<div class="clear">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- content bottom here -->
</div>
<div class="rt-grid-4">
<div id="rt-sidebar-a">
<div class="rt-block">
<div class="module-surround">
<div class="module-icon">
</div>
<div class="module-title">
<h2 class="title">
<span>
Client
</span>
Login
</h2>
</div>
<div class="module-content">
<form accept-charset="UTF-8" action="/?q=repo-company/kentucky-repossession-laws&destination=node/120" id="user-login-form" method="post">
<div>
<div class="form-item form-type-textfield form-item-name">
<label for="edit-name">
Username
<span class="form-required" title="This field is required.">
*
</span>
</label>
<input class="form-text required" id="edit-name" maxlength="60" name="name" size="15" type="text" value>
</div>
<div class="form-item form-type-password form-item-pass">
<label for="edit-pass">
Password
<span class="form-required" title="This field is required.">
*
</span>
</label>
<input class="form-text required" id="edit-pass" maxlength="128" name="pass" size="15" type="password">
</div>
<div class="item-list">
<ul>
<li class="first last">
<a title="Request new password via e-mail.">
Request new password
</a>
</li>
</ul>
</div>
<input name="form_build_id" type="hidden" value="form-AxFN981U1B4BMQE8rlIbvFI1XJ2rMIBFt9bKgfI5V1k">
<input name="form_id" type="hidden" value="user_login_block">
<div class="form-actions form-wrapper" id="edit-actions--2">
<div class="readon">
<input class="button" id="edit-submit--2" name="op" type="submit" value="Log in">
</div>
</div>
</div>
</form>
<div class="clear">
</div>
</div>
</div>
</div>
<div class="rt-block">
<div class="module-surround">
<div class="module-icon">
</div>
<div class="module-title">
<h2 class="title">
<span>
Contact
</span>
Us
</h2>
</div>
<div class="module-content">
<p>
<strong>
Midwest Lenders Services
<br>
Debt Recovery Consulting / Training
<br>
Headquartered in the Chicago area
</strong>
<br>
<strong>
Phone
</strong>
<strong>
[PHONE REDACTED]
</strong>
<br>
</p>
<div class="clear">
</div>
</div>
</div>
</div>
<div class="rt-block">
<div class="module-surround">
<div class="module-icon">
</div>
<div class="module-title">
<h2 class="title">
<span>
Car
</span>
or truck recently repossessed?
</h2>
</div>
<div class="module-content">
<p>
Midwest Lenders can Help. If you are in the unfortunate situation of having your vehicle repossessed
<br>
<a>
​Click Here
</a>
</p>
<div class="clear">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="clear">
</div>
</div>
</div>
<div class="clear">
</div>
<div id="rt-copyright">
<div class="rt-container">
<div class="clear">
</div>
<div class="rt-block">
<div class="rt-module-surround">
<div class="rt-module-inner">
<div class="module-content">
<div id="developed-by">
<div id="powered-by">
Developed by
<a>
<span>
Maly Internet Marketing
</span>
</a>
</div>
<br>
</div>
<div class="clear">
</div>
<p>
<span id="gantry-resetsettings">
</span>
</p>
<div class="clear">
</div>
</div>
</div>
</div>
</div>
<div class="clear">
</div>
</div>
</div>
</body>
</html>
|