base.css 15 KB

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