base.css 17 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012
  1. a:hover {
  2. text-decoration:none;
  3. }
  4. h1 {
  5. font-weight:bold;
  6. font-size:220%;
  7. float:left;
  8. margin-top:5px;
  9. }
  10. h2 {
  11. font-size:200%;
  12. margin-bottom:10px;
  13. letter-spacing:-1px;
  14. }
  15. h2.ribbon {
  16. padding: 15px 30px;
  17. position: relative;
  18. left: -55px;
  19. float: left;
  20. margin: 20px 0;
  21. border-radius: 3px 3px 3px 0px;
  22. -moz-border-radius: 3px 3px 3px 0px;
  23. -webkit-border-radius: 3px 3px 3px 0px;
  24. width: 890px;
  25. }
  26. .triangle-ribbon {
  27. /* border-right-color is overwritten by theme */
  28. border: 13px solid transparent;
  29. height: 0;
  30. position: relative;
  31. width: 0;
  32. float: left;
  33. clear: left;
  34. left: -67px;
  35. top: -33px;
  36. z-index: -1;
  37. }
  38. #recent {
  39. float: left;
  40. width: 560px;
  41. }
  42. #signup {
  43. float: right;
  44. text-align: center;
  45. }
  46. #signup table {
  47. margin-bottom: 5px;
  48. }
  49. #signup table tr td:first-child {
  50. text-align: right;
  51. }
  52. #signup table td {
  53. padding: 3px;
  54. vertical-align: middle;
  55. }
  56. h2 span {
  57. position:absolute;
  58. right:25px;
  59. font-size:80%;
  60. margin:3px 0 0;
  61. }
  62. h3 {
  63. font-size:180%;
  64. font-weight: bold;
  65. margin-bottom:15px;
  66. }
  67. aside h3 {
  68. font-size:138.5%;
  69. font-weight:bold;
  70. margin-bottom:15px;
  71. color:#333333;
  72. padding-bottom:10px;
  73. border-bottom:1px solid #D9D9D9;
  74. }
  75. h4 {
  76. font-size:128%;
  77. font-weight: bold;
  78. margin-bottom:20px;
  79. color:#333333;
  80. }
  81. h5 {
  82. font-size:100%;
  83. }
  84. h5.inline {
  85. float:left;
  86. margin-right:10px;
  87. }
  88. h6 {
  89. font-size:93%;
  90. }
  91. h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
  92. margin-right:5px;
  93. vertical-align:-2px;
  94. }
  95. .fl {
  96. float:left;
  97. }
  98. img.fl {
  99. margin:0 25px 25px 0;
  100. }
  101. .fr {
  102. float:right;
  103. }
  104. img.fr {
  105. margin:0 0 25px 25px;
  106. }
  107. .fn {
  108. float:none!important;
  109. }
  110. .cl {
  111. background: none;
  112. border: 0;
  113. clear: both;
  114. display: block;
  115. float: none;
  116. font-size: 0;
  117. list-style: none;
  118. margin: 0;
  119. padding: 0;
  120. overflow: hidden;
  121. visibility: hidden;
  122. width: 0;
  123. height: 0;
  124. }
  125. .tl {
  126. text-align:left;
  127. }
  128. .tr {
  129. text-align:right;
  130. }
  131. .tc {
  132. text-align:center;
  133. }
  134. .hd {
  135. display: none;
  136. }
  137. .strong {
  138. font-weight: 700!important;
  139. }
  140. .no-margin {
  141. margin:0!important;
  142. }
  143. .no-padding {
  144. padding:0!important;
  145. }
  146. .margin-left {
  147. margin-left:20px;
  148. }
  149. .margin-right {
  150. margin-right:20px;
  151. }
  152. .margin-top {
  153. margin-top:20px;
  154. }
  155. .margin-bottom {
  156. margin-bottom:20px;
  157. }
  158. .border-top {
  159. border-top:1px solid #D9D9D9;
  160. padding-top:10px;
  161. margin-top:20px;
  162. }
  163. .border-left {
  164. border-left:1px solid #D9D9D9;
  165. padding-left:10px;
  166. margin-left:20px;
  167. }
  168. .border-bottom {
  169. border-bottom:1px solid #D9D9D9;
  170. padding-bottom:10px;
  171. margin-bottom:20px;
  172. }
  173. .border-right {
  174. border-top:1px solid #D9D9D9;
  175. padding-top:10px;
  176. margin-top:20px;
  177. }
  178. .txt-smaller {
  179. font-size:85%
  180. }
  181. .txt-small {
  182. font-size:93%
  183. }
  184. .txt-light {
  185. color:#4d4d4d;
  186. }
  187. .txt-lighter {
  188. color:#666;
  189. }
  190. nav {
  191. float: left;
  192. }
  193. #nav {
  194. line-height: 100%;
  195. margin: 0 auto;
  196. padding: 10px;
  197. width: 100%;
  198. }
  199. #nav li {
  200. display: inline-block;
  201. list-style: none;
  202. z-index: 100;
  203. margin-left: 15px;
  204. }
  205. /* main level link */
  206. #nav a {
  207. font-weight: bold;
  208. text-decoration: none;
  209. display: block;
  210. padding: 8px 12px;
  211. font-size:113%;
  212. -webkit-border-radius: 3px;
  213. -moz-border-radius: 3px;
  214. }
  215. #nav a:hover {
  216. background: #000;
  217. color: #000;
  218. }
  219. /* main level link hover */
  220. #nav .current a, #nav li:hover > a {
  221. background: #e5e5e5;
  222. color: #444;
  223. border-top: solid 1px #cccccc;
  224. border-left: solid 1px #cccccc;
  225. border-right:1px solid #e0e0e0;
  226. border-bottom:1px solid #e0e0e0;
  227. padding:7px 11px 8px;
  228. text-shadow:0 1px 0 #FFFFFF;
  229. }
  230. /* rounded corners of first and last link */
  231. #nav ul li:first-child > a {
  232. -webkit-border-top-left-radius: 3px;
  233. -moz-border-radius-topleft: 3px;
  234. -webkit-border-top-right-radius: 3px;
  235. -moz-border-radius-topright: 3px;
  236. }
  237. #nav ul li:last-child > a {
  238. -webkit-border-bottom-left-radius: 3px;
  239. -moz-border-radius-bottomleft: 3px;
  240. -webkit-border-bottom-right-radius: 3px;
  241. -moz-border-radius-bottomright: 3px;
  242. }
  243. header {
  244. width: 980px;
  245. margin: 25px auto 20px;
  246. }
  247. footer {
  248. padding: 10px 0;
  249. width: 980px;
  250. margin: 25px auto 20px;
  251. }
  252. #page {
  253. background: #fff;
  254. color: #191919;
  255. border: 1px solid #d9d9d9;
  256. padding: 40px;
  257. position: relative;
  258. width: 898px;
  259. margin: 0 auto;
  260. z-index: 1;
  261. border-radius: 3px;
  262. -moz-border-radius: 3px;
  263. -webkit-border-radius: 3px;
  264. }
  265. #page-content.two-col {
  266. float:left;
  267. padding-right:35px;
  268. width:600px;
  269. display:inline;
  270. }
  271. .breadcrumbs {
  272. margin:0 0 20px;
  273. list-style:none;
  274. padding:10px 15px;
  275. background:#f2f2f2;
  276. border:1px solid #D9D9D9;
  277. font-size:93%;
  278. color:#333333;
  279. border-radius:3px;
  280. -moz-border-radius:3px;
  281. -webkit-border-radius:3px;
  282. }
  283. .breadcrumbs li {
  284. display:inline;
  285. }
  286. aside {
  287. float:left;
  288. width:260px;
  289. color:#333333;
  290. display:inline;
  291. }
  292. section {
  293. margin-bottom:20px;
  294. padding-bottom:20px;
  295. border-bottom:1px solid #d9d9d9;
  296. }
  297. .inlinepic {
  298. background:#fafafa;
  299. border:1px solid #ccc;
  300. padding:5px;
  301. box-shadow:0 0 5px #D9D9D9;
  302. -moz-box-shadow:0 0 5px #D9D9D9;
  303. -webkit-box-shadow:0 0 5px #D9D9D9;
  304. }
  305. blockquote {
  306. background:url("../img/quote.gif") no-repeat 0 5px;
  307. color:#444444;
  308. line-height:1.6;
  309. padding:5px 20px 10px 45px;
  310. margin-bottom:20px;
  311. }
  312. blockquote cite {
  313. color:#666666;
  314. font-size:12px;
  315. font-style:italic;
  316. }
  317. /*// About Page //*/
  318. #teamlist {
  319. margin:0;
  320. list-style:none;
  321. }
  322. #teamlist li {
  323. margin-bottom:20px;
  324. padding-bottom:10px;
  325. border-bottom:1px solid #D9D9D9;
  326. }
  327. #teamlist li.last {
  328. border-bottom:0;
  329. margin-bottom:0;
  330. padding-bottom:0;
  331. }
  332. /*// Services Page //*/
  333. .services-list {
  334. margin:0;
  335. list-style:none;
  336. }
  337. .services-list li {
  338. float:left;
  339. width:270px;
  340. margin-right:30px;
  341. margin-bottom:20px;
  342. font-size:93%;
  343. }
  344. .services-list li p {
  345. margin-bottom:5px;
  346. }
  347. .services-list li a {
  348. float:right;
  349. }
  350. .services-list li img {
  351. float:left;
  352. margin:5px 20px 30px 0;
  353. }
  354. .services-list li.last {
  355. margin-right:0;
  356. }
  357. .process {
  358. height:31px;
  359. width:31px;
  360. background: url(../img/process.gif);
  361. color:#fff;
  362. display:block;
  363. font-size:138%;
  364. font-weight:bold;
  365. line-height:28px;
  366. text-align:center;
  367. margin:5px 20px 30px 0;
  368. float:left;
  369. }
  370. /*// Portfolio Page //*/
  371. .portfolio-small {
  372. list-style:none outside none;
  373. margin:0 -35px 0;
  374. }
  375. .portfolio-small li a {
  376. display:block;
  377. }
  378. .portfolio-small li {
  379. float:left;
  380. margin-bottom:20px;
  381. margin-left:35px;
  382. width:275px;
  383. }
  384. .portfolio-small li img {
  385. margin-bottom:10px;
  386. }
  387. .portfolio-small li h4 {
  388. margin-bottom:10px;
  389. }
  390. .portfolio-small li p {
  391. margin-bottom:10px;
  392. }
  393. .portfolio-list {
  394. list-style:none outside none;
  395. margin:0;
  396. }
  397. .portfolio-list li {
  398. margin-bottom:20px;
  399. padding-bottom:20px;
  400. }
  401. .portfolio-list li img {
  402. float:left;
  403. }
  404. .portfolio-list li.last {
  405. padding-bottom:0;
  406. }
  407. .portfolio-list li div {
  408. margin-left: 390px;
  409. }
  410. .portfolio-list li p {
  411. margin-bottom:15px;
  412. }
  413. p {
  414. line-height:1.6;
  415. margin-bottom:20px;
  416. }
  417. .list {
  418. margin-bottom:15px;
  419. }
  420. .list li {
  421. margin-bottom:5px;
  422. padding:0;
  423. }
  424. .list ul {
  425. margin-bottom:15px;
  426. }
  427. dl.definition {
  428. margin-bottom:20px;
  429. }
  430. dl.definition dt {
  431. font-weight:bold;
  432. margin-bottom:5px;
  433. padding-left:20px;
  434. }
  435. dl.definition dd {
  436. color:#666666;
  437. margin-bottom:15px;
  438. padding-left:20px;
  439. }
  440. .tags {
  441. margin:0 0 15px;
  442. list-style:none;
  443. }
  444. .tags li {
  445. display:inline;
  446. background:#D9D9D9;
  447. margin-right:10px;
  448. font-size:85%;
  449. padding:3px 6px;
  450. border-radius:20px;
  451. -moz-border-radius:20px;
  452. -webkit-border-radius:20px;
  453. }
  454. .social {
  455. margin:0 0 15px;
  456. list-style:none;
  457. }
  458. .social li {
  459. display:inline;
  460. margin-right:10px;
  461. }
  462. .scrollable {
  463. height:110px;
  464. overflow:hidden;
  465. position:relative;
  466. width:100%;
  467. }
  468. .scrollable .items {
  469. clear:both;
  470. position:absolute;
  471. width:20000em;
  472. }
  473. .items div {
  474. float:left;
  475. width:740pxpx;
  476. }
  477. .scrollable img {
  478. -moz-border-radius:4px 4px 4px 4px;
  479. background-color:#FFFFFF;
  480. border:1px solid #CCCCCC;
  481. float:left;
  482. height:100px;
  483. margin:0 4px 0 35px;
  484. padding:2px;
  485. width:100px;
  486. }
  487. .scrollable .active {
  488. border:2px solid #000000;
  489. cursor:default;
  490. position:relative;
  491. }
  492. /* this makes it possible to add next button beside scrollable */
  493. .scrollable {
  494. float:left;
  495. }
  496. /* prev, next, prevPage and nextPage buttons */
  497. a.browse {
  498. background:url(../img/scrollable.png) no-repeat;
  499. display:block;
  500. width:30px;
  501. height:30px;
  502. margin:40px 10px;
  503. cursor:pointer;
  504. font-size:1px;
  505. position:absolute;
  506. }
  507. /* right */
  508. a.right {
  509. background-position: 0 -30px;
  510. clear:right;
  511. margin-right: 0px;
  512. right:25px;
  513. }
  514. a.right:hover {
  515. background-position:-30px -30px;
  516. }
  517. a.right:active {
  518. background-position:-60px -30px;
  519. }
  520. /* left */
  521. a.left {
  522. margin-left: 0px;
  523. left:25px;
  524. }
  525. a.left:hover {
  526. background-position:-30px 0;
  527. }
  528. a.left:active {
  529. background-position:-60px 0;
  530. }
  531. /* up and down */
  532. a.up, a.down {
  533. background:url(../img/scrollable/arrow/vert_large.png) no-repeat;
  534. float: none;
  535. margin: 10px 50px;
  536. }
  537. /* up */
  538. a.up:hover {
  539. background-position:-30px 0;
  540. }
  541. a.up:active {
  542. background-position:-60px 0;
  543. }
  544. /* down */
  545. a.down {
  546. background-position: 0 -30px;
  547. }
  548. a.down:hover {
  549. background-position:-30px -30px;
  550. }
  551. a.down:active {
  552. background-position:-60px -30px;
  553. }
  554. /* disabled navigational button */
  555. a.disabled {
  556. visibility:hidden !important;
  557. }
  558. .search {
  559. float: right;
  560. margin-top: 5px;
  561. }
  562. .pricing-table h4 {
  563. color:#FFFFFF;
  564. font-size:240%;
  565. margin-bottom:5px;
  566. }
  567. .pricing-table h5 {
  568. color:#FFFFFF;
  569. font-size:140%;
  570. margin-bottom:5px;
  571. }
  572. .pricing-table .header {
  573. background:url(../img/grad-blue.gif) repeat-x scroll center top #166890;
  574. border:1px solid #11506F;
  575. color:#FFFFFF;
  576. text-align:center;
  577. width:28%;
  578. padding:5px;
  579. }
  580. .pricing-table .blank {
  581. background:#fff;
  582. border:none;
  583. }
  584. .pricing-table {
  585. border-right:1px solid #58bbec;
  586. border-bottom:1px solid #58bbec;
  587. width:100%;
  588. margin-bottom:20px;
  589. }
  590. .pricing-table thead th, .pricing-table thead td {
  591. padding:6px 10px;
  592. font-weight: 700;
  593. color: #333;
  594. background: #EAEBFA;
  595. border-bottom: 1px solid #D9D9D9;
  596. border-right:1px solid #D9D9D9;
  597. }
  598. .pricing-table thead th.last, .pricing-table thead td.last {
  599. border-right:0;
  600. }
  601. .pricing-table tbody th, .pricing-table tbody td {
  602. background:#EAEBFA;
  603. border-right:1px dotted #D9D9D9;
  604. vertical-align:middle;
  605. padding:12px;
  606. font-size:93%;
  607. text-align:center;
  608. }
  609. .pricing-table tbody tr.alt td {
  610. background:#e4e6fa;
  611. }
  612. .pricing-table tbody th.last, .pricing-table tbody td.last {
  613. border-right:0 none;
  614. }
  615. .pricing-table tbody tr.last td {
  616. border-bottom:0 none;
  617. }
  618. /*//// - Forms - ////*/
  619. body.ie7 form, body.ie8 {
  620. margin-bottom:40px;
  621. }
  622. form p {
  623. margin-bottom:15px;
  624. }
  625. form input, form textarea {
  626. padding: 7px 5px;
  627. border: 1px solid #ccc;
  628. border-radius: 3px;
  629. -moz-border-radius: 3px;
  630. -webkit-border-radius: 3px;
  631. }
  632. form input.small {
  633. width:35px;
  634. }
  635. input[type="button"], input[type="submit"], button {
  636. cursor: pointer;
  637. display: inline-block;
  638. font-weight: 700;
  639. outline: none;
  640. width: auto;
  641. text-align: center;
  642. vertical-align: middle;
  643. background: #ddd;
  644. color: #444;
  645. text-shadow: 0 -1px 0 #eee;
  646. border-radius: 3px;
  647. -moz-border-radius: 3px;
  648. -webkit-border-radius: 3px;
  649. }
  650. input[type="button"]:hover, input[type="submit"]:hover, button:hover {
  651. background: #eee;
  652. }
  653. #message {
  654. margin-bottom:20px;
  655. }
  656. .error-message {
  657. background:url("../img/error.png") no-repeat 10px center #FECDC6;
  658. padding:10px 35px;
  659. border-radius:3px;
  660. -moz-border-radius:3px;
  661. -webkit-border-radius:3px;
  662. }
  663. .success-message {
  664. background:url(../img/success.png) no-repeat 10px center #F1FFBF;
  665. padding:10px 35px;
  666. border-radius:3px;
  667. -moz-border-radius:3px;
  668. -webkit-border-radius:3px;
  669. }
  670. /* notifications */
  671. .notification.success {
  672. background:#f1ffbf url('../img/icons/success.png') no-repeat 10px 10px;
  673. border-color:#a6d50f;
  674. }
  675. .notification.success span.strong {
  676. color:#283304;
  677. }
  678. .notification.error {
  679. background:#fecdc6 url('../img/icons/error.png') no-repeat 10px 10px;
  680. border-color:#f45d43;
  681. }
  682. .notification.error span.strong {
  683. color:#33130e;
  684. }
  685. .notification.warning {
  686. background:#ffecb0 url('../img/icons/warning.png') no-repeat 10px 10px;
  687. border-color:#ffbc2a;
  688. }
  689. .notification.warning span.strong {
  690. color:#332508;
  691. }
  692. .notification.info {
  693. background:#d4e7f5 url('../img/icons/information.png') no-repeat 10px 10px;
  694. border-color:#589ad7;
  695. }
  696. .notification.info span.strong {
  697. color:#152433;
  698. }
  699. .notification.tip {
  700. background:#ffeccd url('../img/icons/tip.png') no-repeat 10px 10px;
  701. border-color:#dd9854;
  702. }
  703. .notification.tip span.strong {
  704. color:#332313;
  705. }
  706. .notification {
  707. padding:10px 10px 10px 35px;
  708. border:1px solid #fff;
  709. margin-bottom:10px;
  710. position:relative;
  711. font-size:100%;
  712. border-radius:3px;
  713. -moz-border-radius:3px;
  714. -webkit-border-radius:3px;
  715. }
  716. .notification p {
  717. margin-bottom:0;
  718. }
  719. .notification .close {
  720. background:url("../img/icons/close.png") no-repeat scroll 0 0 transparent;
  721. cursor:pointer;
  722. display:block;
  723. height:16px;
  724. position:absolute;
  725. right:10px;
  726. top:10px;
  727. width:16px;
  728. }
  729. .notification .close:hover {
  730. opacity:1;
  731. }
  732. .notification.nopic {
  733. background-image:none;
  734. padding:10px;
  735. }
  736. .notification span.strong {
  737. margin-right:10px;
  738. }
  739. /* Bullet List */
  740. .bullet-list {
  741. list-style:none;
  742. margin-bottom:15px;
  743. margin-left:0;
  744. }
  745. .bullet-list li {
  746. background:url("../img/bullet_arrow_right.png") no-repeat left center transparent;
  747. margin-bottom:5px;
  748. padding:6px 6px 6px 20px;
  749. }
  750. .bullet-list li a {
  751. -webkit-border-radius:3px;
  752. -moz-border-radius:3px;
  753. border-radius:3px;
  754. color:#181818;
  755. display:block;
  756. margin:-6px;
  757. padding:6px;
  758. text-decoration:none;
  759. }
  760. .bullet-list li a:hover {
  761. background-color:#E2E2E2;
  762. margin:-6px -6px -6px -20px;
  763. padding:6px 6px 6px 20px;
  764. }
  765. .bullet-list.grey li {
  766. -webkit-border-radius:3px;
  767. -moz-border-radius:3px;
  768. border-radius:3px;
  769. background-color:#f2f2f2;
  770. width:50%;
  771. }
  772. /* Definition List */
  773. dl.definition {
  774. margin-bottom:20px;
  775. }
  776. dl.definition dt {
  777. background:url("../img/icons/16/bullet_arrow_right.png") no-repeat left center;
  778. font-weight: 700;
  779. margin-bottom:5px;
  780. padding-left:20px;
  781. }
  782. dl.definition dd {
  783. color:#666666;
  784. margin-bottom:15px;
  785. padding-left:20px;
  786. }
  787. /* Pagination */
  788. .pagination {
  789. display: inline-block;
  790. font-size: 77%;
  791. text-decoration: none;
  792. }
  793. .pagination a, .pagination .dots {
  794. background:url("../img/grad-grey.gif") repeat-x scroll center top #C3C3C3;
  795. border:1px solid #C3C3C3;
  796. display: inline-block;
  797. color:#444444 !important;
  798. margin-right: 2px;
  799. padding: 6px 8px;
  800. text-decoration:none;
  801. -moz-border-radius: 3px;
  802. -webkit-border-radius: 3px;
  803. border-radius: 3px;
  804. }
  805. .pagination a:hover {
  806. background: url("../img/grad-grey-hover.gif") repeat-x scroll center top #C3C3C3;
  807. color: #444444;
  808. }
  809. .pagination a.current {
  810. background: url("../img/grad-grey-rev.gif") repeat-x scroll center top #C3C3C3;
  811. color: #444444;
  812. }
  813. .pagination a.number.current {
  814. color: #444;
  815. }
  816. /* Small Pagination */
  817. .pagination.small a, .pagination.small .dots {
  818. margin-right: 1px;
  819. padding: 1px 4px;
  820. -moz-border-radius: 6px;
  821. -webkit-border-radius: 6px;
  822. border-radius: 6px;
  823. }
  824. /* Table Styles */
  825. .table {
  826. border:1px solid #CCCCCC;
  827. width:100%;
  828. margin-bottom:20px;
  829. }
  830. .table.no-border {
  831. border:none
  832. }
  833. .table thead th, .table thead td {
  834. padding:6px 10px;
  835. font-weight: 700;
  836. color: #333;
  837. background: #E2E2E2;
  838. border-bottom: 1px solid #cccccc;
  839. border-right:1px solid #CCCCCC;
  840. }
  841. .table thead th.last, .table thead td.last {
  842. border-right:0;
  843. }
  844. .table thead th.checkbox, .table thead td.checkbox {
  845. width:25px;
  846. }
  847. .table tbody th, .table tbody td {
  848. background:#fff;
  849. border-right:1px dotted #CCCCCC;
  850. vertical-align:middle;
  851. padding:10px;
  852. font-size:93%;
  853. }
  854. .table tbody tr.alt td {
  855. background:#F2F2F2;
  856. }
  857. .table tbody th.last, .table tbody td.last {
  858. border-right:0 none;
  859. }
  860. .table tbody tr.last td {
  861. border-bottom:0 none;
  862. }
  863. .table tbody tr:hover th, .table tbody tr:hover td {
  864. background:#d3ecf9;
  865. }
  866. /* Tispy Tooltips */
  867. .tipsy {
  868. padding: 5px;
  869. font-size: 93%;
  870. opacity: 0.8;
  871. filter: alpha(opacity=80);
  872. background-repeat: no-repeat;
  873. background-image: url(../img/tipsy.gif);
  874. }
  875. .tipsy-inner {
  876. padding: 5px 8px 4px 8px;
  877. background-color: black;
  878. color: white;
  879. max-width: 200px;
  880. text-align: center;
  881. }
  882. .tipsy-inner {
  883. border-radius:3px;
  884. -moz-border-radius:3px;
  885. -webkit-border-radius:3px;
  886. }
  887. .tipsy-north {
  888. background-position: top center;
  889. }
  890. .tipsy-south {
  891. background-position: bottom center;
  892. }
  893. .tipsy-east {
  894. background-position: right center;
  895. }
  896. .tipsy-west {
  897. background-position: left center;
  898. }
  899. /*//// - jQuery Lightbox - ////*/
  900. #jquery-overlay {
  901. position: absolute;
  902. top: 0;
  903. left: 0;
  904. z-index: 1000;
  905. width: 100%;
  906. height: 500px;
  907. }
  908. #jquery-lightbox {
  909. position: absolute;
  910. top: 0;
  911. left: 0;
  912. width: 100%;
  913. z-index: 9999;
  914. text-align: center;
  915. line-height: 0;
  916. }
  917. #jquery-lightbox a img {
  918. border: none;
  919. }
  920. #lightbox-container-image-box {
  921. position: relative;
  922. background-color: #fff;
  923. width: 250px;
  924. height: 250px;
  925. margin: 0 auto;
  926. }
  927. #lightbox-container-image {
  928. padding: 10px;
  929. }
  930. #lightbox-loading {
  931. position: absolute;
  932. top: 40%;
  933. left: 0%;
  934. height: 25%;
  935. width: 100%;
  936. text-align: center;
  937. line-height: 0;
  938. }
  939. #lightbox-nav {
  940. position: absolute;
  941. top: 0;
  942. left: 0;
  943. height: 100%;
  944. width: 100%;
  945. z-index: 10;
  946. }
  947. #lightbox-container-image-box > #lightbox-nav {
  948. left: 0;
  949. }
  950. #lightbox-nav a {
  951. outline: none;
  952. }
  953. #lightbox-nav-btnPrev, #lightbox-nav-btnNext {
  954. width: 49%;
  955. height: 100%;
  956. zoom: 1;
  957. display: block;
  958. }
  959. #lightbox-nav-btnPrev {
  960. left: 0;
  961. float: left;
  962. }
  963. #lightbox-nav-btnNext {
  964. right: 0;
  965. float: right;
  966. }
  967. #lightbox-container-image-data-box {
  968. font: 10px Verdana, Helvetica, sans-serif;
  969. background-color: #fff;
  970. margin: 0 auto;
  971. line-height: 1.4em;
  972. overflow: auto;
  973. width: 100%;
  974. padding: 0 10px 0;
  975. }
  976. #lightbox-container-image-data {
  977. padding: 0 10px;
  978. color: #666;
  979. }
  980. #lightbox-container-image-data #lightbox-image-details {
  981. width: 70%;
  982. float: left;
  983. text-align: left;
  984. }
  985. #lightbox-image-details-caption {
  986. font-weight: bold;
  987. }
  988. #lightbox-image-details-currentNumber {
  989. display: block;
  990. clear: left;
  991. padding-bottom: 1.0em;
  992. }
  993. #lightbox-secNav-btnClose {
  994. width: 66px;
  995. float: right;
  996. padding-bottom: 0.7em;
  997. }