base.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910
  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 ul {
  194. line-height: 100%;
  195. margin: 0 auto;
  196. padding: 10px;
  197. width: 100%;
  198. }
  199. nav ul li {
  200. display: inline-block;
  201. list-style: none;
  202. z-index: 100;
  203. margin-left: 15px;
  204. }
  205. nav a {
  206. font-weight: bold;
  207. text-decoration: none;
  208. display: block;
  209. padding: 8px 12px;
  210. font-size:113%;
  211. -webkit-border-radius: 3px;
  212. -moz-border-radius: 3px;
  213. }
  214. nav a:hover {
  215. background: #000;
  216. color: #000;
  217. }
  218. nav .current a, nav li:hover > a {
  219. background: #e5e5e5;
  220. color: #444;
  221. border-top: solid 1px #cccccc;
  222. border-left: solid 1px #cccccc;
  223. border-right:1px solid #e0e0e0;
  224. border-bottom:1px solid #e0e0e0;
  225. padding:7px 11px 8px;
  226. text-shadow:0 1px 0 #FFFFFF;
  227. }
  228. nav ul li:first-child > a {
  229. -webkit-border-top-left-radius: 3px;
  230. -moz-border-radius-topleft: 3px;
  231. -webkit-border-top-right-radius: 3px;
  232. -moz-border-radius-topright: 3px;
  233. }
  234. nav ul li:last-child > a {
  235. -webkit-border-bottom-left-radius: 3px;
  236. -moz-border-radius-bottomleft: 3px;
  237. -webkit-border-bottom-right-radius: 3px;
  238. -moz-border-radius-bottomright: 3px;
  239. }
  240. header {
  241. width: 980px;
  242. margin: 25px auto 20px;
  243. }
  244. footer {
  245. padding: 10px 0;
  246. width: 980px;
  247. margin: 25px auto 20px;
  248. }
  249. #page {
  250. background: #fff;
  251. color: #191919;
  252. border: 1px solid #d9d9d9;
  253. padding: 40px;
  254. position: relative;
  255. width: 898px;
  256. margin: 0 auto;
  257. z-index: 1;
  258. border-radius: 3px;
  259. -moz-border-radius: 3px;
  260. -webkit-border-radius: 3px;
  261. }
  262. #page-content.two-col {
  263. float:left;
  264. padding-right:35px;
  265. width:600px;
  266. display:inline;
  267. }
  268. .breadcrumbs {
  269. margin:0 0 20px;
  270. list-style:none;
  271. padding:10px 15px;
  272. background:#f2f2f2;
  273. border:1px solid #D9D9D9;
  274. font-size:93%;
  275. color:#333333;
  276. border-radius:3px;
  277. -moz-border-radius:3px;
  278. -webkit-border-radius:3px;
  279. }
  280. .breadcrumbs li {
  281. display:inline;
  282. }
  283. aside {
  284. float:left;
  285. width:260px;
  286. color:#333333;
  287. display:inline;
  288. }
  289. section {
  290. margin-bottom:20px;
  291. padding-bottom:20px;
  292. border-bottom:1px solid #d9d9d9;
  293. }
  294. .inlinepic {
  295. background:#fafafa;
  296. border:1px solid #ccc;
  297. padding:5px;
  298. box-shadow:0 0 5px #D9D9D9;
  299. -moz-box-shadow:0 0 5px #D9D9D9;
  300. -webkit-box-shadow:0 0 5px #D9D9D9;
  301. }
  302. blockquote {
  303. background:url("../img/quote.gif") no-repeat 0 5px;
  304. color:#444444;
  305. line-height:1.6;
  306. padding:5px 20px 10px 45px;
  307. margin-bottom:20px;
  308. }
  309. blockquote cite {
  310. color:#666666;
  311. font-size:12px;
  312. font-style:italic;
  313. }
  314. /*// About Page //*/
  315. #teamlist {
  316. margin:0;
  317. list-style:none;
  318. }
  319. #teamlist li {
  320. margin-bottom:20px;
  321. padding-bottom:10px;
  322. border-bottom:1px solid #D9D9D9;
  323. }
  324. #teamlist li.last {
  325. border-bottom:0;
  326. margin-bottom:0;
  327. padding-bottom:0;
  328. }
  329. /*// Services Page //*/
  330. .services-list {
  331. margin:0;
  332. list-style:none;
  333. }
  334. .services-list li {
  335. float:left;
  336. width:270px;
  337. margin-right:30px;
  338. margin-bottom:20px;
  339. font-size:93%;
  340. }
  341. .services-list li p {
  342. margin-bottom:5px;
  343. }
  344. .services-list li a {
  345. float:right;
  346. }
  347. .services-list li img {
  348. float:left;
  349. margin:5px 20px 30px 0;
  350. }
  351. .services-list li.last {
  352. margin-right:0;
  353. }
  354. .process {
  355. height:31px;
  356. width:31px;
  357. background: url(../img/process.gif);
  358. color:#fff;
  359. display:block;
  360. font-size:138%;
  361. font-weight:bold;
  362. line-height:28px;
  363. text-align:center;
  364. margin:5px 20px 30px 0;
  365. float:left;
  366. }
  367. /*// Portfolio Page //*/
  368. .portfolio-small {
  369. list-style:none outside none;
  370. margin:0 -35px 0;
  371. }
  372. .portfolio-small li a {
  373. display:block;
  374. }
  375. .portfolio-small li {
  376. float:left;
  377. margin-bottom:20px;
  378. margin-left:35px;
  379. width:275px;
  380. }
  381. .portfolio-small li img {
  382. margin-bottom:10px;
  383. }
  384. .portfolio-small li h4 {
  385. margin-bottom:10px;
  386. }
  387. .portfolio-small li p {
  388. margin-bottom:10px;
  389. }
  390. .portfolio-list {
  391. list-style:none outside none;
  392. margin:0;
  393. }
  394. .portfolio-list li {
  395. margin-bottom:20px;
  396. padding-bottom:20px;
  397. }
  398. .portfolio-list li img {
  399. float:left;
  400. }
  401. .portfolio-list li.last {
  402. padding-bottom:0;
  403. }
  404. .portfolio-list li div {
  405. margin-left: 390px;
  406. }
  407. .portfolio-list li p {
  408. margin-bottom:15px;
  409. }
  410. p {
  411. line-height:1.6;
  412. margin-bottom:20px;
  413. }
  414. .list {
  415. margin-bottom:15px;
  416. }
  417. .list li {
  418. margin-bottom:5px;
  419. padding:0;
  420. }
  421. .list ul {
  422. margin-bottom:15px;
  423. }
  424. dl.definition {
  425. margin-bottom:20px;
  426. }
  427. dl.definition dt {
  428. font-weight:bold;
  429. margin-bottom:5px;
  430. padding-left:20px;
  431. }
  432. dl.definition dd {
  433. color:#666666;
  434. margin-bottom:15px;
  435. padding-left:20px;
  436. }
  437. .tags {
  438. margin:0 0 15px;
  439. list-style:none;
  440. }
  441. .tags li {
  442. display:inline;
  443. background:#D9D9D9;
  444. margin-right:10px;
  445. font-size:85%;
  446. padding:3px 6px;
  447. border-radius:20px;
  448. -moz-border-radius:20px;
  449. -webkit-border-radius:20px;
  450. }
  451. .social {
  452. margin:0 0 15px;
  453. list-style:none;
  454. }
  455. .social li {
  456. display:inline;
  457. margin-right:10px;
  458. }
  459. .scrollable {
  460. height:110px;
  461. overflow:hidden;
  462. position:relative;
  463. width:100%;
  464. }
  465. .scrollable .items {
  466. clear:both;
  467. position:absolute;
  468. width:20000em;
  469. }
  470. .items div {
  471. float:left;
  472. width:740pxpx;
  473. }
  474. .scrollable img {
  475. -moz-border-radius:4px 4px 4px 4px;
  476. background-color:#FFFFFF;
  477. border:1px solid #CCCCCC;
  478. float:left;
  479. height:100px;
  480. margin:0 4px 0 35px;
  481. padding:2px;
  482. width:100px;
  483. }
  484. .scrollable .active {
  485. border:2px solid #000000;
  486. cursor:default;
  487. position:relative;
  488. }
  489. /* this makes it possible to add next button beside scrollable */
  490. .scrollable {
  491. float:left;
  492. }
  493. /* prev, next, prevPage and nextPage buttons */
  494. a.browse {
  495. background:url(../img/scrollable.png) no-repeat;
  496. display:block;
  497. width:30px;
  498. height:30px;
  499. margin:40px 10px;
  500. cursor:pointer;
  501. font-size:1px;
  502. position:absolute;
  503. }
  504. /* right */
  505. a.right {
  506. background-position: 0 -30px;
  507. clear:right;
  508. margin-right: 0px;
  509. right:25px;
  510. }
  511. a.right:hover {
  512. background-position:-30px -30px;
  513. }
  514. a.right:active {
  515. background-position:-60px -30px;
  516. }
  517. /* left */
  518. a.left {
  519. margin-left: 0px;
  520. left:25px;
  521. }
  522. a.left:hover {
  523. background-position:-30px 0;
  524. }
  525. a.left:active {
  526. background-position:-60px 0;
  527. }
  528. /* up and down */
  529. a.up, a.down {
  530. background:url(../img/scrollable/arrow/vert_large.png) no-repeat;
  531. float: none;
  532. margin: 10px 50px;
  533. }
  534. /* up */
  535. a.up:hover {
  536. background-position:-30px 0;
  537. }
  538. a.up:active {
  539. background-position:-60px 0;
  540. }
  541. /* down */
  542. a.down {
  543. background-position: 0 -30px;
  544. }
  545. a.down:hover {
  546. background-position:-30px -30px;
  547. }
  548. a.down:active {
  549. background-position:-60px -30px;
  550. }
  551. /* disabled navigational button */
  552. a.disabled {
  553. visibility:hidden !important;
  554. }
  555. .search {
  556. float: right;
  557. margin-top: 5px;
  558. }
  559. .pricing-table h4 {
  560. color:#FFFFFF;
  561. font-size:240%;
  562. margin-bottom:5px;
  563. }
  564. .pricing-table h5 {
  565. color:#FFFFFF;
  566. font-size:140%;
  567. margin-bottom:5px;
  568. }
  569. .pricing-table .header {
  570. background:url(../img/grad-blue.gif) repeat-x scroll center top #166890;
  571. border:1px solid #11506F;
  572. color:#FFFFFF;
  573. text-align:center;
  574. width:28%;
  575. padding:5px;
  576. }
  577. .pricing-table .blank {
  578. background:#fff;
  579. border:none;
  580. }
  581. .pricing-table {
  582. border-right:1px solid #58bbec;
  583. border-bottom:1px solid #58bbec;
  584. width:100%;
  585. margin-bottom:20px;
  586. }
  587. .pricing-table thead th, .pricing-table thead td {
  588. padding:6px 10px;
  589. font-weight: 700;
  590. color: #333;
  591. background: #EAEBFA;
  592. border-bottom: 1px solid #D9D9D9;
  593. border-right:1px solid #D9D9D9;
  594. }
  595. .pricing-table thead th.last, .pricing-table thead td.last {
  596. border-right:0;
  597. }
  598. .pricing-table tbody th, .pricing-table tbody td {
  599. background:#EAEBFA;
  600. border-right:1px dotted #D9D9D9;
  601. vertical-align:middle;
  602. padding:12px;
  603. font-size:93%;
  604. text-align:center;
  605. }
  606. .pricing-table tbody tr.alt td {
  607. background:#e4e6fa;
  608. }
  609. .pricing-table tbody th.last, .pricing-table tbody td.last {
  610. border-right:0 none;
  611. }
  612. .pricing-table tbody tr.last td {
  613. border-bottom:0 none;
  614. }
  615. /*//// - Forms - ////*/
  616. body.ie7 form, body.ie8 {
  617. margin-bottom:40px;
  618. }
  619. form p {
  620. margin-bottom:15px;
  621. }
  622. form input, form textarea {
  623. padding: 7px 5px;
  624. border: 1px solid #ccc;
  625. border-radius: 3px;
  626. -moz-border-radius: 3px;
  627. -webkit-border-radius: 3px;
  628. }
  629. form input.small {
  630. width:35px;
  631. }
  632. input[type="button"], input[type="submit"], button {
  633. cursor: pointer;
  634. display: inline-block;
  635. font-weight: 700;
  636. outline: none;
  637. width: auto;
  638. text-align: center;
  639. vertical-align: middle;
  640. background: #ddd;
  641. color: #444;
  642. text-shadow: 0 -1px 0 #eee;
  643. border-radius: 3px;
  644. -moz-border-radius: 3px;
  645. -webkit-border-radius: 3px;
  646. }
  647. input[type="button"]:hover, input[type="submit"]:hover, button:hover {
  648. background: #eee;
  649. }
  650. #message {
  651. margin-bottom:20px;
  652. }
  653. .error-message {
  654. background:url("../img/error.png") no-repeat 10px center #FECDC6;
  655. padding:10px 35px;
  656. border-radius:3px;
  657. -moz-border-radius:3px;
  658. -webkit-border-radius:3px;
  659. }
  660. .success-message {
  661. background:url(../img/success.png) no-repeat 10px center #F1FFBF;
  662. padding:10px 35px;
  663. border-radius:3px;
  664. -moz-border-radius:3px;
  665. -webkit-border-radius:3px;
  666. }
  667. /* notifications */
  668. .notification.success {
  669. background:#f1ffbf url('../img/icons/success.png') no-repeat 10px 10px;
  670. border-color:#a6d50f;
  671. }
  672. .notification.success span.strong {
  673. color:#283304;
  674. }
  675. .notification.error {
  676. background:#fecdc6 url('../img/icons/error.png') no-repeat 10px 10px;
  677. border-color:#f45d43;
  678. }
  679. .notification.error span.strong {
  680. color:#33130e;
  681. }
  682. .notification.warning {
  683. background:#ffecb0 url('../img/icons/warning.png') no-repeat 10px 10px;
  684. border-color:#ffbc2a;
  685. }
  686. .notification.warning span.strong {
  687. color:#332508;
  688. }
  689. .notification.info {
  690. background:#d4e7f5 url('../img/icons/information.png') no-repeat 10px 10px;
  691. border-color:#589ad7;
  692. }
  693. .notification.info span.strong {
  694. color:#152433;
  695. }
  696. .notification.tip {
  697. background:#ffeccd url('../img/icons/tip.png') no-repeat 10px 10px;
  698. border-color:#dd9854;
  699. }
  700. .notification.tip span.strong {
  701. color:#332313;
  702. }
  703. .notification {
  704. padding:10px 10px 10px 35px;
  705. border:1px solid #fff;
  706. margin-bottom:10px;
  707. position:relative;
  708. font-size:100%;
  709. border-radius:3px;
  710. -moz-border-radius:3px;
  711. -webkit-border-radius:3px;
  712. }
  713. .notification p {
  714. margin-bottom:0;
  715. }
  716. .notification .close {
  717. background:url("../img/icons/close.png") no-repeat scroll 0 0 transparent;
  718. cursor:pointer;
  719. display:block;
  720. height:16px;
  721. position:absolute;
  722. right:10px;
  723. top:10px;
  724. width:16px;
  725. }
  726. .notification .close:hover {
  727. opacity:1;
  728. }
  729. .notification.nopic {
  730. background-image:none;
  731. padding:10px;
  732. }
  733. .notification span.strong {
  734. margin-right:10px;
  735. }
  736. /* Bullet List */
  737. .bullet-list {
  738. list-style:none;
  739. margin-bottom:15px;
  740. margin-left:0;
  741. }
  742. .bullet-list li {
  743. background:url("../img/bullet_arrow_right.png") no-repeat left center transparent;
  744. margin-bottom:5px;
  745. padding:6px 6px 6px 20px;
  746. }
  747. .bullet-list li a {
  748. -webkit-border-radius:3px;
  749. -moz-border-radius:3px;
  750. border-radius:3px;
  751. color:#181818;
  752. display:block;
  753. margin:-6px;
  754. padding:6px;
  755. text-decoration:none;
  756. }
  757. .bullet-list li a:hover {
  758. background-color:#E2E2E2;
  759. margin:-6px -6px -6px -20px;
  760. padding:6px 6px 6px 20px;
  761. }
  762. .bullet-list.grey li {
  763. -webkit-border-radius:3px;
  764. -moz-border-radius:3px;
  765. border-radius:3px;
  766. background-color:#f2f2f2;
  767. width:50%;
  768. }
  769. /* Definition List */
  770. dl.definition {
  771. margin-bottom:20px;
  772. }
  773. dl.definition dt {
  774. background:url("../img/icons/16/bullet_arrow_right.png") no-repeat left center;
  775. font-weight: 700;
  776. margin-bottom:5px;
  777. padding-left:20px;
  778. }
  779. dl.definition dd {
  780. color:#666666;
  781. margin-bottom:15px;
  782. padding-left:20px;
  783. }
  784. /* Pagination */
  785. .pagination {
  786. display: inline-block;
  787. font-size: 77%;
  788. text-decoration: none;
  789. }
  790. .pagination a, .pagination .dots {
  791. background:url("../img/grad-grey.gif") repeat-x scroll center top #C3C3C3;
  792. border:1px solid #C3C3C3;
  793. display: inline-block;
  794. color:#444444 !important;
  795. margin-right: 2px;
  796. padding: 6px 8px;
  797. text-decoration:none;
  798. -moz-border-radius: 3px;
  799. -webkit-border-radius: 3px;
  800. border-radius: 3px;
  801. }
  802. .pagination a:hover {
  803. background: url("../img/grad-grey-hover.gif") repeat-x scroll center top #C3C3C3;
  804. color: #444444;
  805. }
  806. .pagination a.current {
  807. background: url("../img/grad-grey-rev.gif") repeat-x scroll center top #C3C3C3;
  808. color: #444444;
  809. }
  810. .pagination a.number.current {
  811. color: #444;
  812. }
  813. /* Small Pagination */
  814. .pagination.small a, .pagination.small .dots {
  815. margin-right: 1px;
  816. padding: 1px 4px;
  817. -moz-border-radius: 6px;
  818. -webkit-border-radius: 6px;
  819. border-radius: 6px;
  820. }
  821. /* Table Styles */
  822. .table {
  823. border:1px solid #CCCCCC;
  824. width:100%;
  825. margin-bottom:20px;
  826. }
  827. .table.no-border {
  828. border:none
  829. }
  830. .table thead th, .table thead td {
  831. padding:6px 10px;
  832. font-weight: 700;
  833. color: #333;
  834. background: #E2E2E2;
  835. border-bottom: 1px solid #cccccc;
  836. border-right:1px solid #CCCCCC;
  837. }
  838. .table thead th.last, .table thead td.last {
  839. border-right:0;
  840. }
  841. .table thead th.checkbox, .table thead td.checkbox {
  842. width:25px;
  843. }
  844. .table tbody th, .table tbody td {
  845. background:#fff;
  846. border-right:1px dotted #CCCCCC;
  847. vertical-align:middle;
  848. padding:10px;
  849. font-size:93%;
  850. }
  851. .table tbody tr.alt td {
  852. background:#F2F2F2;
  853. }
  854. .table tbody th.last, .table tbody td.last {
  855. border-right:0 none;
  856. }
  857. .table tbody tr.last td {
  858. border-bottom:0 none;
  859. }
  860. .table tbody tr:hover th, .table tbody tr:hover td {
  861. background:#d3ecf9;
  862. }
  863. /* Tispy Tooltips */
  864. .tipsy {
  865. padding: 5px;
  866. font-size: 93%;
  867. opacity: 0.8;
  868. filter: alpha(opacity=80);
  869. background-repeat: no-repeat;
  870. background-image: url(../img/tipsy.gif);
  871. }
  872. .tipsy-inner {
  873. padding: 5px 8px 4px 8px;
  874. background-color: black;
  875. color: white;
  876. max-width: 200px;
  877. text-align: center;
  878. }
  879. .tipsy-inner {
  880. border-radius:3px;
  881. -moz-border-radius:3px;
  882. -webkit-border-radius:3px;
  883. }
  884. .tipsy-north {
  885. background-position: top center;
  886. }
  887. .tipsy-south {
  888. background-position: bottom center;
  889. }
  890. .tipsy-east {
  891. background-position: right center;
  892. }
  893. .tipsy-west {
  894. background-position: left center;
  895. }