base.css 17 KB

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