baseStyles.css 20 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169
  1. @charset "UTF-8";
  2. /* CSS Document */
  3. /*
  4. * DEFAULT STYLES
  5. *
  6. */
  7. body {
  8. font-size: 100%;
  9. color: #333333;
  10. font-weight: normal;
  11. font-family: sans-serif;
  12. }
  13. /*
  14. * PAGE CONTAINERS
  15. * See documentation for details regarding use of #wrap and #content
  16. */
  17. #header {
  18. }
  19. #wrap {
  20. width: 100%;
  21. overflow: hidden;
  22. position: absolute;
  23. left: 0;
  24. padding: 0;
  25. }
  26. #content {
  27. margin-left: 10px;
  28. margin-right: 10px;
  29. }
  30. #footer {
  31. background: #434343 url(../images/sprite-footer.png) repeat-x top;
  32. padding: .7em 0em;
  33. clear: both;
  34. height: 3em;
  35. }
  36. /*
  37. * Custom syle for channel headers
  38. */
  39. .title{
  40. font-weight: bold;
  41. }
  42. .channel{
  43. margin-bottom: 1em;
  44. }
  45. /*
  46. * BASIC ELEMENTS
  47. * Basic styling of common elements.
  48. */
  49. p {
  50. line-height: 125%;
  51. margin-top: .7em;
  52. margin-bottom: 1em;
  53. clear: both;
  54. }
  55. #footer p {
  56. color: #FFF;
  57. font-size: .8em;
  58. margin-left: 10px;
  59. margin-top: 0em;
  60. margin-bottom: 0em;
  61. padding: 0em;
  62. }
  63. strong {
  64. font-weight: bolder;
  65. }
  66. em {
  67. font-style: italic;
  68. }
  69. /*
  70. * LINK STATES
  71. *
  72. */
  73. a:link {
  74. color:#003399
  75. }
  76. a:visited {
  77. color:#006600
  78. }
  79. a:hover {
  80. color:#FF9900
  81. }
  82. a:active {
  83. color:#990000
  84. }
  85. /*
  86. * NATIVE LISTS
  87. *
  88. */
  89. ul.bullet {
  90. list-style: disc;
  91. margin-left: 10px;
  92. margin-top: 1em;
  93. margin-bottom: 1em;
  94. padding-left: 10px;
  95. }
  96. ul.bullet ul {
  97. margin-top: 0.3em;
  98. margin-bottom: 0.3em;
  99. }
  100. ol {
  101. list-style: decimal;
  102. margin-left: 10px;
  103. margin-top: 1em;
  104. padding-left: 10px;
  105. }
  106. ol ol {
  107. margin-top: 0.3em;
  108. margin-bottom: 0.3em;
  109. }
  110. /*
  111. * CLEAR
  112. *
  113. */
  114. .stack {
  115. clear:both;
  116. }
  117. /*
  118. * HEADERS
  119. *
  120. */
  121. /*designed to be used at the very top of a page*/
  122. h1.top-aligned {
  123. font-size: 1.7em;
  124. padding-top: .3em;
  125. padding-bottom: .5em;
  126. padding-left: 10px;
  127. padding-right: 10px;
  128. font-weight: bold;
  129. background: #F6F6F6 url(../images/img-h1-shadow.png) repeat-x bottom;
  130. margin-top: 0em;
  131. margin-bottom: .5em;
  132. margin-left: -10px;
  133. margin-right: -10px;
  134. }
  135. /*alternate H1*/
  136. h1 {
  137. font-size: 1.7em;
  138. padding-top: .3em;
  139. padding-bottom: .3em;
  140. padding-left: 10px;
  141. padding-right: 10px;
  142. font-weight: bold;
  143. background: #FFF url(../images/img-h1-gradient.png) repeat-x bottom;
  144. border-top: 1px solid #D8D8D8;
  145. margin-top: .5em;
  146. margin-bottom: .3em;
  147. margin-left: -10px;
  148. margin-right: -10px;
  149. }
  150. h2 {
  151. font-size: 1.5em;
  152. margin-top: 0.5em;
  153. margin-bottom: 0.3em;
  154. clear: both;
  155. border-bottom: 1px solid #D8D8D8;
  156. }
  157. h3 {
  158. font-size: 1.3em;
  159. color: #000077;
  160. margin-top: 0.5em;
  161. margin-bottom: 0.3em;
  162. clear: both;
  163. }
  164. h4 {
  165. font-size: 1.3em;
  166. color: #219B00;
  167. margin-bottom: 0.3em;
  168. margin-top: 0.3em;
  169. clear: both;
  170. }
  171. h5 {
  172. font-size: 1.2em;
  173. background-color: #F6F6F6;
  174. border-bottom: 1px solid #D8D8D8;
  175. border-top: 1px solid #D8D8D8;
  176. padding-left: 10px;
  177. padding-top: .3em;
  178. padding-bottom: .3em;
  179. margin-top: 0.4em;
  180. margin-bottom: 0.2em;
  181. margin-left: -10px;
  182. margin-right: -10px;
  183. clear: both;
  184. }
  185. h6 {
  186. font-size: 1.0em;
  187. color: #333333;
  188. margin-bottom: 0.2em;
  189. margin-top: 0.1em;
  190. border-bottom: 1px solid #D8D8D8;
  191. clear: both;
  192. }
  193. /*
  194. * BLOCKQUOTE
  195. *
  196. */
  197. blockquote {
  198. margin-right: 10px;
  199. margin-bottom: 0.6em;
  200. margin-top: 0.3em;
  201. padding: 1em .5em 1em 2em;
  202. background: url(../images/img-quote.png) no-repeat 0em .5em;
  203. font-style: italic;
  204. }
  205. /*
  206. * END DEFAULT STYLES
  207. *
  208. */
  209. /*
  210. * 1. BRANDING AND MARKETING
  211. *
  212. */
  213. /*
  214. * BRANDING AREA
  215. * logo, tagline, background and hyperlink
  216. */
  217. #header div.branding {
  218. height: 68px;
  219. background: url(../images/img-branding-background.png) repeat-x top;
  220. display: block;
  221. width: 100%;
  222. overflow: hidden;
  223. }
  224. #header div.branding img {
  225. padding-top: 20px;
  226. padding-left: 10px;
  227. }
  228. #header div.branding a {
  229. width: 100%;
  230. height: 68px;
  231. display: block;
  232. background-image: none;
  233. padding-right: none;
  234. }
  235. #header div.branding p {
  236. text-indent: -5000px;
  237. }
  238. /*
  239. * ADVERTISMENT CONTAINER
  240. *
  241. */
  242. .advertisement {
  243. padding:0;
  244. margin: 0;
  245. width: 100%;
  246. }
  247. .advertisement p {
  248. border: 1px solid #D8D8D8;
  249. padding: 0.4em 0.4em;
  250. background-color: #F6F6F6;
  251. }
  252. .advertisement span {
  253. text-transform: uppercase;
  254. padding: 0;
  255. float: right;
  256. font-size: 0.7em;
  257. color: #B0B0B0;
  258. padding-bottom: 0.3em;
  259. }
  260. /*
  261. * 2. LISTS
  262. *
  263. */
  264. /*
  265. * LIST WITH ICON
  266. * 30 x 30 graphic
  267. */
  268. ul.list-graphical {
  269. list-style-type: none;
  270. padding: 0;
  271. margin-top: 0;
  272. margin-bottom: 0;
  273. margin-left: -10px;
  274. margin-right: -10px;
  275. border-bottom: 1px solid #D5D8D8;
  276. color: #333333;
  277. }
  278. ul.list-graphical li {
  279. background: #F6F6F6 url(../images/sprite-list.png) repeat-x top;
  280. display: block;
  281. line-height: 40px;
  282. }
  283. ul.list-graphical a {
  284. display: block;
  285. padding-left: 50px;
  286. background: transparent url(../images/img-30x30-icon.png) no-repeat 7px top;
  287. height: 40px;
  288. text-decoration: none;
  289. }
  290. ul.list-graphical a:hover {
  291. background: transparent url(../images/img-30x30-icon.png) no-repeat 7px bottom;
  292. color: #FFFFFF;
  293. outline: none;
  294. }
  295. ul.list-graphical li:hover {
  296. background: #82CB20 url(../images/sprite-list.png) repeat-x 0px -50px;
  297. }
  298. /*
  299. * ALTERNATE GRAPHIC
  300. * 40 x 40 graphic
  301. */
  302. /*---add this class if using a 40x40 graphic---*/
  303. ul.list-graphical a.photo {
  304. display: block;
  305. padding-left: 50px;
  306. background: transparent url(../images/img-40x40.png) no-repeat 0px 0px;
  307. height: 40px;
  308. }
  309. /*
  310. * SIMPLE STYLED LIST BOX
  311. *
  312. */
  313. /*note: line height adjusts height*/
  314. ul.list {
  315. list-style-type: none;
  316. padding: 0;
  317. margin-top: 0;
  318. margin-bottom: 0;
  319. margin-left: -10px;
  320. margin-right: -10px;
  321. border-bottom: 1px solid #D5D8D8;
  322. color: #333333;
  323. }
  324. ul.list li {
  325. background: #F6F6F6 url(../images/sprite-list.png) repeat-x top;
  326. line-height: 40px;
  327. display: block;
  328. }
  329. ul.list a {
  330. padding-left: 10px;
  331. display: block;
  332. height: 40px;
  333. background: url(../images/sprite-open.png) no-repeat right top;
  334. text-decoration: none;
  335. }
  336. ul.list li:hover {
  337. background: #82CB20 url(../images/sprite-list.png) repeat-x 0px -50px;
  338. color: #FFFFFF;
  339. }
  340. ul.list a:link, ul.list a:visited {
  341. color: #333333;
  342. }
  343. ul.list a:hover {
  344. color: #FFFFFF;
  345. background: url(../images/sprite-open.png) no-repeat right bottom;
  346. outline: none;
  347. }
  348. ul.list a:active {
  349. color: #990000;
  350. }
  351. /*
  352. * ACCORDION DEFINITION LIST
  353. *
  354. */
  355. dl.list-accordion {
  356. margin-left: -10px;
  357. margin-right: -10px;
  358. border-bottom: 1px solid #D5D8D8;
  359. }
  360. dl.list-accordion dt{
  361. padding-left: 10px;
  362. line-height: 40px;
  363. height: 40px;
  364. }
  365. dl.list-accordion dd {
  366. padding-left: 10px;
  367. padding-right: 10px;
  368. padding-top: 0.5em;
  369. padding-bottom: 0.4em;
  370. line-height: normal;
  371. }
  372. /*definition term*/
  373. dl.list-accordion dt {
  374. background: #F6F6F6 url(../images/sprite-list.png) repeat-x top;
  375. }
  376. dl.list-accordion dt.expanded {
  377. border-bottom: 1px solid #D5D8D8;
  378. }
  379. dl.list-accordion dt.collapsed {
  380. border-bottom: none;
  381. }
  382. /*container for expand/collapse icon*/
  383. dl.list-accordion dt span {
  384. width: 14px;
  385. height: 14px;
  386. margin-top: 12px;
  387. margin-right: 0.5em;
  388. display: block;
  389. float: left;
  390. }
  391. /*switches icon when expanded*/
  392. dl.list-accordion dt.expanded span{
  393. background: url(../images/sprite-expand-collapse.png) no-repeat left bottom;
  394. }
  395. /*switches icon when collapsed*/
  396. dl.list-accordion dt.collapsed span{
  397. background: url(../images/sprite-expand-collapse.png) no-repeat left top;
  398. }
  399. dl.list-accordion dt:hover {
  400. background: #82CB20 url(../images/sprite-list.png) repeat-x 0px -50px;
  401. color: #FFFFFF;
  402. cursor: pointer;
  403. }
  404. /*definition container*/
  405. dl.list-accordion dd {
  406. background-color: #FFFFF;
  407. padding-left: 2em;
  408. }
  409. /*
  410. * IMAGE GRID
  411. *
  412. */
  413. ul.grid {
  414. width: 100%;
  415. margin: 0 auto;
  416. }
  417. ul.grid li {
  418. display: inline;
  419. }
  420. ul.grid li img{
  421. border: 1px solid #D8D8D8;
  422. padding: .2em .2em;
  423. margin-right: .4em;
  424. margin-bottom: .4em;
  425. }
  426. /*
  427. * 3. NAVIGATION COMPONENTS
  428. *
  429. */
  430. /*
  431. * BACK TO TOP
  432. *
  433. */
  434. div.top {
  435. font-size: .9em;
  436. background: #F6F6F6 url(../images/img-top.png) no-repeat 10px center;
  437. border-bottom: 1px solid #D8D8D8;
  438. border-top: 1px solid #D8D8D8;
  439. padding-left: 2.2em;
  440. padding-top: .3em;
  441. padding-bottom: .3em;
  442. margin-top: 0.5em;
  443. margin-bottom: 0.5em;
  444. margin-left: -10px;
  445. margin-right: -10px;
  446. clear: both;
  447. }
  448. div.top a {
  449. color: #535353;
  450. text-decoration: none;
  451. width: 100%;
  452. display: block;
  453. }
  454. /*
  455. * HOME
  456. *
  457. */
  458. div.home {
  459. font-size: .9em;
  460. background: #F6F6F6 url(../images/img-home.png) no-repeat 10px center;
  461. border-top: 1px solid #D8D8D8;
  462. padding-left: 1.5em;
  463. padding-top: .3em;
  464. padding-bottom: .3em;
  465. margin-top: 0.5em;
  466. margin-bottom: 0em;
  467. margin-left: -10px;
  468. margin-right: -10px;
  469. clear: both;
  470. }
  471. div.home a {
  472. color: #535353;
  473. text-decoration: none;
  474. width: 100%;
  475. display: block;
  476. }
  477. /*
  478. * BREADCRUMBS
  479. *
  480. */
  481. ul.breadcrumbs {
  482. margin-left: -10px;
  483. margin-right: -10px;
  484. padding-top: .5em;
  485. padding-bottom: .5em;
  486. padding-left: 10px;
  487. padding-right: .5em;
  488. font-size: 80%;
  489. list-style-type: none;
  490. }
  491. ul.breadcrumbs li {
  492. display: inline;
  493. line-height: 1.5em;
  494. }
  495. /*
  496. * FOOTER OR ADMIN NAV
  497. *
  498. */
  499. ul.nav-footer {
  500. display: block;
  501. color: #FFF;
  502. padding-top: 0em;
  503. padding-bottom: .5em;
  504. padding-left: 10px;
  505. padding-right: .5em;
  506. font-size: .85em;
  507. height: 2em;
  508. }
  509. ul.nav-footer li {
  510. display: inline;
  511. line-height: 1.5em;
  512. float: left;
  513. }
  514. ul.nav-footer li a {
  515. padding-right: 0.5em;
  516. padding-left: 0.5em;
  517. border-right: 1px solid #FFF;
  518. text-decoration: none;
  519. }
  520. ul.nav-footer li.last a {
  521. border-right: none;
  522. padding-right: 0;
  523. }
  524. ul.nav-footer li.first a {
  525. padding-left: 0;
  526. }
  527. ul.nav-footer a {
  528. color: #FFF;
  529. }
  530. /*
  531. * NAVIGATION BAR (ROUNDED CORNERS)
  532. *
  533. */
  534. ul.nav-horizontal-rounded {
  535. padding:0;
  536. margin: 0 0 10px 0;
  537. list-style-type: none;
  538. width: 100%;
  539. height: 40px;
  540. float: left;
  541. }
  542. /*line height determines vertical text positioning*/
  543. ul.nav-horizontal-rounded li {
  544. float: left;
  545. display: block;
  546. padding: 0;
  547. margin-bottom: 0;
  548. line-height: 40px;
  549. text-align: center;
  550. text-decoration: none;
  551. background: #FFF url(../images/sprite-nav-rounded.png) no-repeat -20px 0px;
  552. }
  553. ul.nav-horizontal-rounded li:hover {
  554. background: url(../images/sprite-nav-rounded.png) repeat-x -20px -50px;
  555. color: #FFF;
  556. }
  557. /*height centers text vertically*/
  558. ul.nav-horizontal-rounded li a {
  559. display: block;
  560. background: url(../images/vertical-divider.png) repeat-y left center;
  561. height: 40px;
  562. padding-right: 0px;
  563. text-decoration: none;
  564. }
  565. ul.nav-horizontal-rounded .first a {
  566. background-image: none;
  567. }
  568. ul.nav-horizontal-rounded li a:hover {
  569. color: #FFF;
  570. background-image: none;
  571. cursor: pointer;
  572. outline: none;
  573. }
  574. /*left rounded corner*/
  575. ul.nav-horizontal-rounded li.first {
  576. background: #FFF url(../images/sprite-nav-rounded.png) no-repeat 0px 0px;
  577. }
  578. ul.nav-horizontal-rounded li.first :hover {
  579. background: #92CF1A url(../images/sprite-nav-rounded.png) repeat-x 0px -50px;
  580. color: #FFF;
  581. }
  582. /*right rounded corner*/
  583. ul.nav-horizontal-rounded li.last :hover {
  584. background: #92CF1A url(../images/sprite-nav-rounded.png) repeat-x right -50px;
  585. color: #FFF;
  586. }
  587. ul.nav-horizontal-rounded li.last {
  588. background: #FFF url(../images/sprite-nav-rounded.png) no-repeat right 0px;
  589. }
  590. /*
  591. * SIMPLE NAVIGATION BAR
  592. *
  593. */
  594. ul.nav-horizontal-flat {
  595. padding: 0;
  596. margin: 0 0 10px 0;
  597. list-style-type: none;
  598. width: 100%;
  599. height: 40px;
  600. float: left;
  601. border-top: 1px solid #D8D8D8;
  602. border-bottom: 2px solid #D8D8D8;
  603. border-left: 1px solid #D8D8D8;
  604. border-right: 1px solid #D8D8D8;
  605. background: #F6F6F6 url(../images/sprite-list.png) repeat-x 0px 0px;
  606. }
  607. ul.nav-horizontal-flat li {
  608. float: left;
  609. display: block;
  610. padding: 0;
  611. margin: 0;
  612. line-height: 40px;
  613. text-align: center;
  614. background: #F6F6F6 url(../images/sprite-list.png) repeat-x 0px 0px;
  615. }
  616. ul.nav-horizontal-flat li a {
  617. text-decoration: none;
  618. }
  619. ul.nav-horizontal-flat li.last {
  620. background-image: none;
  621. background-color: transparent;
  622. }
  623. ul.nav-horizontal-flat li:hover {
  624. background: #92CF1A url(../images/sprite-list.png) repeat-x 0px -50px;
  625. color: #FFF;
  626. }
  627. /*divider*/
  628. /*removed on first item and on hover*/
  629. ul.nav-horizontal-flat li a {
  630. display: block;
  631. background: url(../images/vertical-divider.png) repeat-y left center;
  632. height: 40px;
  633. padding-right: 0px;
  634. cursor: pointer;
  635. }
  636. ul.nav-horizontal-flat .first a {
  637. background-image: none;
  638. }
  639. ul.nav-horizontal-flat li a:hover {
  640. color: #FFF;
  641. background-image: none;
  642. outline: none;
  643. }
  644. /*sets number of navigation bar items*/
  645. /*add class to li*/
  646. .four-piece {
  647. width: 25%;
  648. }
  649. .three-piece {
  650. width: 33.3%;
  651. }
  652. .two-piece {
  653. width: 50%;
  654. }
  655. /*
  656. * 4. STYLIZED LINKS
  657. * includes icon to represent the type of link
  658. */
  659. /*external link*/
  660. a.external {
  661. background: url(../images/img-link-external.png) no-repeat right top;
  662. padding-right: 1em;
  663. }
  664. /*links to ical data*/
  665. /*see 'data-ical' in resources*/
  666. a.ical {
  667. background: url(../images/img-link-ical.png) no-repeat right top;
  668. padding-right: 1em;
  669. }
  670. a[href^="mailto:"] {
  671. background: url(../images/img-link-email.png) no-repeat right top;
  672. padding-right: 1em;
  673. }
  674. a[href^="tel:"] {
  675. background: url(../images/img-link-tel.png) no-repeat right top;
  676. padding-right: 1em;
  677. }
  678. a[href^="sms:"] {
  679. background: url(../images/img-link-sms.png) no-repeat right top;
  680. padding-right: 1em;
  681. }
  682. /*
  683. * 5. BUTTONS
  684. *
  685. */
  686. /*
  687. * STYLED BUTTON
  688. *
  689. */
  690. a.button-flat {
  691. display: block;
  692. line-height: 40px;
  693. height: 40px;
  694. width: 100px;
  695. background: #F6F6F6 url(../images/sprite-flat-button.png) repeat-x 0px 0px;
  696. text-align: center;
  697. border-bottom: 2px solid #D8D8D8;
  698. border-left: 1px solid #D8D8D8;
  699. border-right: 1px solid #D8D8D8;
  700. text-decoration: none;
  701. color: #333333;
  702. padding: 0;
  703. }
  704. a.button-flat:hover {
  705. background: #92CF1A url(../images/sprite-flat-button.png) repeat-x 0px -50px;
  706. color: #FFF;
  707. outline: none;
  708. }
  709. /*
  710. * STYLED BUTTON (ROUNDED CORNERS)
  711. *
  712. */
  713. ul.button-rounded{
  714. margin: 0;
  715. padding: 0;
  716. list-style: none;
  717. float: left;
  718. }
  719. ul.button-rounded li {
  720. float: left;
  721. margin-right: 10px;
  722. margin-bottom: 10px;
  723. margin-top: 10px;
  724. line-height: 40px;
  725. background: url(../images/sprite-button-rounded-right.png) no-repeat right top;
  726. text-align: center;
  727. }
  728. ul.button-rounded li:hover {
  729. background: url(../images/sprite-button-rounded-right.png) no-repeat right bottom;
  730. }
  731. ul.button-rounded li a {
  732. display: block;
  733. padding: 0 1em;
  734. height: 40px;
  735. background: url(../images/sprite-button-rounded-left.png) no-repeat left top;
  736. text-decoration: none;
  737. float: left;
  738. color: #333333;
  739. }
  740. ul.button-rounded li a:hover {
  741. background: url(../images/sprite-button-rounded-left.png) no-repeat left bottom;
  742. color: #FFF;
  743. outline: none;
  744. }
  745. /*
  746. * FORM BUTTON (ROUNDED CORNERS)
  747. *
  748. */
  749. button.button-submit {
  750. border:0;
  751. cursor:pointer;
  752. font-weight:bold;
  753. font-size: .95em;
  754. color: #333333;
  755. padding:0 1.5em 0 0;
  756. text-align:center;
  757. margin: 0.4em 0;
  758. }
  759. button.button-submit span {
  760. position:relative;
  761. display:block;
  762. white-space:nowrap;
  763. padding:0 0 0 1.5em;
  764. }
  765. button.button-submit {
  766. background:url(../images/sprite-button-rounded-right.png) no-repeat right top;
  767. height:40px;
  768. line-height:40px;
  769. }
  770. button.button-submit span {
  771. height:40px;
  772. line-height:40px;
  773. background:url(../images/sprite-button-rounded-left.png) no-repeat left top;
  774. }
  775. button.button-submit:hover {
  776. background:url(../images/sprite-button-rounded-right.png) no-repeat right bottom;
  777. color:#fff;
  778. }
  779. button.button-submit:hover span {
  780. background:url(../images/sprite-button-rounded-left.png) no-repeat left bottom;
  781. color:#fff;
  782. }
  783. /*
  784. * 6. FORMS
  785. *
  786. */
  787. fieldset {
  788. }
  789. legend {
  790. font-size: 110%;
  791. font-weight: bold;
  792. padding-bottom: .5em;
  793. color: #000077;
  794. }
  795. form {
  796. color: #333333;
  797. }
  798. form ul {
  799. list-style-type: none;
  800. margin-bottom: .5em;
  801. margin-top: .5em;
  802. padding: 0;
  803. }
  804. form ul li {
  805. margin: 0;
  806. padding: 0;
  807. }
  808. form label {
  809. font-size: .9em;
  810. margin-bottom: .5em;
  811. margin-top: .5em;
  812. }
  813. input[type='text'] {
  814. border: 1px solid #D8D8D8;
  815. background: #FFF url(../images/img-form-input-shadow.png) repeat-x top;
  816. display: block;
  817. padding: 0.2em;
  818. width: 98%;
  819. color: #333333;
  820. margin-bottom: 1em;
  821. }
  822. textarea {
  823. border: 1px solid #D8D8D8;
  824. background: #FFF url(../images/img-form-input-shadow.png) repeat-x top;
  825. display: block;
  826. padding: 0.2em;
  827. color: #333333;
  828. width: 98%;
  829. line-height: normal;
  830. margin-bottom: .7em;
  831. }
  832. form ul li input[type='radio'], form ul li input[type='checkbox'] {
  833. margin:0.1em 0em;
  834. padding: 0;
  835. }
  836. select {
  837. border: 1px solid #D8D8D8;
  838. background: #fff;
  839. color: #666666;
  840. padding-top: 0.3em;
  841. padding-bottom: 0.3em;
  842. padding-left: 0.5em;
  843. margin: 0.2em 0;
  844. display: block;
  845. width: 98%;
  846. }
  847. input[type='button'] {
  848. border: 1px solid #D8D8D8;
  849. background-color: white;
  850. padding: 1em 1.3em;
  851. color: #666666;
  852. margin: 1em 0em;
  853. }
  854. /*
  855. * 7. TABLES
  856. *
  857. */
  858. table {
  859. border: 1px solid #D8D8D8;
  860. margin: 0;
  861. width: 100%;
  862. color: #333333;
  863. }
  864. td {
  865. border-bottom: 1px solid #D8D8D8;
  866. border-right: 1px solid #D8D8D8;
  867. padding-left: .3em;
  868. padding-right: .3em;
  869. padding-top: .2em;
  870. padding-bottom: .2em;
  871. line-height: 1.5em;
  872. }
  873. tr {
  874. height: 1.5em;
  875. }
  876. th, tfoot {
  877. border-top: 1px solid #FFF;
  878. border-left: 1px solid #FFF;
  879. background-color: #434343;
  880. text-align: left;
  881. padding-left: .3em;
  882. padding-right: .2em;
  883. padding-top: .2em;
  884. padding-bottom: .2em;
  885. line-height: 1.5em;
  886. font-weight: bold;
  887. color: #FFF;
  888. }
  889. caption {
  890. font-style: italic;
  891. caption-side: bottom;
  892. text-align: left;
  893. padding-top: 0.3em;
  894. padding-bottom: 0.3em;
  895. }
  896. .odd {
  897. background: #F6F6F6;
  898. }
  899. tr:hover {
  900. background: #82CB20 url(../images/sprite-table-hover.png) repeat-x top;
  901. color: #FFF;
  902. }
  903. /*
  904. * 8. FLEXIBLE CONTAINERS
  905. *
  906. */
  907. /*
  908. * SIMPLE FLEXIBLE BOX
  909. *
  910. */
  911. .box-flat {
  912. background: #FBFBFB url(../images/img-box-flat.png) repeat-x left bottom;
  913. margin: 1em 0em;
  914. padding: 1em 1em;
  915. border-top: 1px solid #D8D8D8;
  916. border-bottom: 2px solid #D8D8D8;
  917. border-left: 1px solid #D8D8D8;
  918. border-right: 1px solid #D8D8D8;
  919. }
  920. /*
  921. * FLEXIBLE BOX (ROUNDED CORNERS)
  922. *
  923. */
  924. .box-rounded {
  925. background: url(../images/img-box-bottom-left.png) no-repeat left bottom;
  926. margin-top: 1em;
  927. margin-bottom: 1em;
  928. }
  929. .box-rounded-outer {
  930. background: url(../images/img-box-bottom-right.png) no-repeat right bottom;
  931. padding-bottom: 10px;
  932. }
  933. .box-rounded-inner {
  934. background: url(../images/img-box-top-left.png) no-repeat left top;
  935. }
  936. .box-rounded h2 {
  937. background: url(../images/img-box-top-right.png) no-repeat right top;
  938. padding-top: 10px;
  939. padding-bottom:5px;
  940. margin: 0;
  941. font-size: 110%;
  942. color: #219B00;
  943. }
  944. .box-rounded p {
  945. padding:0;
  946. margin: 0;
  947. }
  948. .box-rounded h2, .box-rounded p {
  949. padding-left: 15px;
  950. padding-right: 15px;
  951. border: none;
  952. }
  953. /*
  954. * 9. UTILITY COMPONENTS
  955. * see documentation for details
  956. */
  957. /*
  958. * 5-STAR RATING
  959. * static only
  960. */
  961. div.rating span{
  962. float: right;
  963. padding-top: 0.4em;
  964. }
  965. div.rating {
  966. width: 150px;
  967. height: 24px;
  968. background: url(../images/sprite-rating.png) no-repeat 0px 0px;
  969. margin-bottom: 1em;
  970. }
  971. div.stars-0 {
  972. background-position: left 0px;
  973. }
  974. div.stars-1 {
  975. background-position: left -25px;
  976. }
  977. div.stars-2 {
  978. background-position: left -50px;
  979. }
  980. div.stars-3 {
  981. background-position: left -75px;
  982. }
  983. div.stars-4 {
  984. background-position: left -100px;
  985. }
  986. div.stars-5 {
  987. background-position-y: left -125px;
  988. }
  989. /*
  990. * \ SWITCH
  991. *
  992. */
  993. ol.toggle-switch {
  994. background: url(../images/sprite-toggle-switch.png) no-repeat left top;
  995. height: 35px;
  996. width: 100px;
  997. padding: 10px 0 0 0;
  998. margin: 0;
  999. }
  1000. ol.toggle-switch li {
  1001. display: block;
  1002. float: left;
  1003. text-align: center;
  1004. width: 50%;
  1005. color: #FFFFFF;
  1006. }
  1007. ol.toggle-switch li a {
  1008. color: #FFFFFF;
  1009. text-transform: uppercase;
  1010. font-weight: bold;
  1011. text-decoration: none;
  1012. cursor: pointer;
  1013. }
  1014. ol.toggle-switch li a:hover {
  1015. outline: none;
  1016. }
  1017. ol.toggle-switch.on {
  1018. background-position: left top;
  1019. }
  1020. ol.toggle-switch.off {
  1021. background-position: left -50px;
  1022. }
  1023. .off li.label-on {
  1024. visibility: hidden;
  1025. }
  1026. .on li.label-off {
  1027. visibility: hidden;
  1028. }
  1029. ul.toggle label {
  1030. font-weight: bold;
  1031. }
  1032. /*
  1033. * LIST CONTAINER FOR TOGGLE SWITCH
  1034. * includes label
  1035. */
  1036. /*line-height adjusts container height*/
  1037. ul.list-toggle {
  1038. list-style-type: none;
  1039. padding: 0;
  1040. margin-top: 0;
  1041. margin-bottom: 0;
  1042. margin-left: -10px;
  1043. margin-right: -10px;
  1044. border-bottom: 1px solid #D5D8D8;
  1045. color: #333333;
  1046. height: 45px;
  1047. background: #F6F6F6 url(../images/sprite-list.png) repeat-x top;
  1048. display: block;
  1049. }
  1050. ul.list-toggle label {
  1051. padding-left: 10px;
  1052. margin: 15px 0px 0px 0px;
  1053. float: left;
  1054. display: block;
  1055. }
  1056. ul.list-toggle ol.toggle-switch {
  1057. margin:5px 10px 0px 0px;
  1058. float: right;
  1059. height: 30px;
  1060. }
  1061. /*
  1062. * SLIDESHOW
  1063. *
  1064. */
  1065. .slideshow {
  1066. width: 100%;
  1067. text-align: center;
  1068. margin: 0 auto;
  1069. }
  1070. .slideshow img {
  1071. border: 1px solid #D8D8D8;
  1072. padding: .3em .3em;
  1073. margin-top: 1em;
  1074. margin-bottom:0;
  1075. }
  1076. .slideshow span {
  1077. clear: both;
  1078. width: 190px;
  1079. display: block;
  1080. margin-left: auto;
  1081. margin-right: auto;
  1082. margin-bottom:0.5em;
  1083. font-size: 0.9em;
  1084. padding: .3em 5px;
  1085. }
  1086. .slideshow a {
  1087. text-decoration: none;
  1088. }
  1089. .slideshow ul.controls {
  1090. width: 200px;
  1091. float:none;
  1092. margin: 0 auto 1em auto;
  1093. }
  1094. ol.data {
  1095. display: none;
  1096. }