Advertisement
Guest User

TwentyTenStle

a guest
Nov 25th, 2011
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 34.95 KB | None | 0 0
  1. /*
  2. Theme Name: Twenty Ten
  3. Theme URI: http://wordpress.org/
  4. Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar.
  5. Author: the WordPress team
  6. Version: 1.1
  7. Tags: black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style
  8. */
  9.  
  10.  
  11. /* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
  12. -------------------------------------------------------------- */
  13.  
  14. html, body, div, span, applet, object, iframe,
  15. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  16. a, abbr, acronym, address, big, cite, code,
  17. del, dfn, em, font, img, ins, kbd, q, s, samp,
  18. small, strike, strong, sub, sup, tt, var,
  19. b, u, i, center,
  20. dl, dt, dd, ol, ul, li,
  21. fieldset, form, label, legend,
  22. table, caption, tbody, tfoot, thead, tr, th, td {
  23. background: transparent;
  24. border: 0;
  25. margin: 0;
  26. padding: 0;
  27. vertical-align: baseline;
  28. }
  29. body {
  30. line-height: 1;
  31. }
  32. h1, h2, h3, h4, h5, h6 {
  33. clear: both;
  34. font-weight: normal;
  35. }
  36. ol, ul {
  37. list-style: none;
  38. }
  39. blockquote {
  40. quotes: none;
  41. }
  42. blockquote:before, blockquote:after {
  43. content: '';
  44. content: none;
  45. }
  46. del {
  47. text-decoration: line-through;
  48. }
  49. /* tables still need 'cellspacing="0"' in the markup */
  50. table {
  51. border-collapse: collapse;
  52. border-spacing: 0;
  53. }
  54. a img {
  55. border: none;
  56. }
  57.  
  58. /* =Layout
  59. -------------------------------------------------------------- */
  60.  
  61. /*
  62. LAYOUT: Two columns
  63. DESCRIPTION: Two-column fixed layout with one sidebar right of content
  64. */
  65.  
  66. #container {
  67. float: left;
  68. width : 100px;
  69. }
  70. #container3 {
  71. float: left;
  72. width : 100%;
  73. }
  74.  
  75. #content {
  76.  
  77.  
  78. width: 799px;
  79. height:440px;
  80. float: left;
  81.  
  82. border-bottom:#ffffff 1px solid;
  83. vertical-align:bottom;
  84. overflow: hidden;
  85. }
  86.  
  87. #content2 {
  88. position:absolute;
  89. width: 900px;
  90. height: 500px;
  91. float: left;
  92. vertical-align:bottom;
  93. overflow: hidden;
  94. }
  95. #primary,
  96. #secondary {
  97. float: right;
  98. overflow: hidden;
  99. width: 220px;
  100. }
  101. #secondary {
  102. clear: right;
  103. }
  104. #footer {
  105. clear: both;
  106. width: 100%;
  107. }
  108.  
  109.  
  110.  
  111. /* =Fonts
  112. -------------------------------------------------------------- */
  113. body,
  114. input,
  115. textarea,
  116. .page-title span,
  117. .pingback a.url {
  118. font-family: Arial, Helvetica, sans-serif; /* Georgia, "Bitstream Charter", serif;*/
  119. }
  120. h3#comments-title,
  121. h3#reply-title,
  122. #access .menu,
  123. #access div.menu ul,
  124. #cancel-comment-reply-link,
  125. .form-allowed-tags,
  126. #site-info,
  127. #site-title,
  128. #wp-calendar,
  129. .comment-meta,
  130. .comment-body tr th,
  131. .comment-body thead th,
  132. .entry-content label,
  133. .entry-content tr th,
  134. .entry-content thead th,
  135. .entry-meta,
  136. .entry-title,
  137. .entry-utility,
  138. #respond label,
  139. .navigation,
  140. .page-title,
  141. .pingback p,
  142. .reply,
  143. .widget-title,
  144. .wp-caption-text,
  145. input[type=submit] {
  146. font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  147. }
  148. pre {
  149. font-family: "Courier 10 Pitch", Courier, monospace;
  150. }
  151. code {
  152. font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  153. }
  154.  
  155.  
  156. /* =Structure
  157. -------------------------------------------------------------- */
  158.  
  159. /* The main theme structure */
  160. #access .menu-header,
  161. div.menu,
  162. #colophon,
  163. #branding,
  164. #main,
  165. #wrapper {
  166. margin: 0 auto;
  167. /*width: 940px;*/
  168. }
  169. #wrapper {
  170. background: #fff;
  171. margin-top: 20px;
  172. padding: 0 20px;
  173. }
  174.  
  175. /* Structure the footer area */
  176. #footer-widget-area {
  177. overflow: hidden;
  178. }
  179. #footer-widget-area .widget-area {
  180. float: left;
  181. margin-right: 20px;
  182. width: 220px;
  183. }
  184. #footer-widget-area #fourth {
  185. margin-right: 0;
  186. }
  187. #site-info {
  188. float: left;
  189. font-size: 14px;
  190. font-weight: bold;
  191. width: 700px;
  192. }
  193. #site-generator {
  194. float: right;
  195. width: 220px;
  196. }
  197.  
  198.  
  199. /* =Global Elements
  200. -------------------------------------------------------------- */
  201.  
  202. /* Main global 'theme' and typographic styles */
  203. body {
  204. background: #f1f1f1;
  205. }
  206. body,
  207. input,
  208. textarea {
  209. color: #666;
  210. font-size: 12px;
  211. line-height: 18px;
  212. }
  213. hr {
  214. background-color: #e7e7e7;
  215. border: 0;
  216. clear: both;
  217. height: 1px;
  218. margin-bottom: 18px;
  219. }
  220.  
  221. /* Text elements */
  222. p {
  223. margin-bottom: 18px;
  224. }
  225. ul {
  226. list-style: square;
  227. margin: 0 0 18px 1.5em;
  228. }
  229. ol {
  230. list-style: decimal;
  231. margin: 0 0 18px 1.5em;
  232. }
  233. ol ol {
  234. list-style: upper-alpha;
  235. }
  236. ol ol ol {
  237. list-style: lower-roman;
  238. }
  239. ol ol ol ol {
  240. list-style: lower-alpha;
  241. }
  242. ul ul,
  243. ol ol,
  244. ul ol,
  245. ol ul {
  246. margin-bottom: 0;
  247. }
  248. dl {
  249. margin: 0 0 24px 0;
  250. }
  251. dt {
  252. font-weight: bold;
  253. }
  254. dd {
  255. margin-bottom: 18px;
  256. }
  257. strong {
  258. font-weight: bold;
  259. }
  260. cite,
  261. em,
  262. i {
  263. font-style: italic;
  264. }
  265. big {
  266. font-size: 131.25%;
  267. }
  268. ins {
  269. background: #ffc;
  270. text-decoration: none;
  271. }
  272. blockquote {
  273. font-style: italic;
  274. padding: 0 3em;
  275. }
  276. blockquote cite,
  277. blockquote em,
  278. blockquote i {
  279. font-style: normal;
  280. }
  281. pre {
  282. background: #f7f7f7;
  283. color: #222;
  284. line-height: 18px;
  285. margin-bottom: 18px;
  286. padding: 1.5em;
  287. }
  288. abbr,
  289. acronym {
  290. border-bottom: 1px dotted #666;
  291. cursor: help;
  292. }
  293. sup,
  294. sub {
  295. height: 0;
  296. line-height: 1;
  297. position: relative;
  298. vertical-align: baseline;
  299. }
  300. sup {
  301. bottom: 1ex;
  302. }
  303. sub {
  304. top: .5ex;
  305. }
  306. input[type="text"],
  307. textarea {
  308. background: #f9f9f9;
  309. border: 1px solid #ccc;
  310. box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
  311. -moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
  312. -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
  313. padding: 2px;
  314. }
  315. a:link {
  316. color: #0066cc;
  317. }
  318. a:visited {
  319. color: #743399;
  320. }
  321. a:active,
  322. a:hover {
  323. color: #ff4b33;
  324. }
  325.  
  326. /* Text meant only for screen readers */
  327. .screen-reader-text {
  328. position: absolute;
  329. left: -9000px;
  330. }
  331.  
  332.  
  333. /* =Header
  334. -------------------------------------------------------------- */
  335.  
  336. #header {
  337. padding: 30px 0 0 0;
  338. }
  339. #site-title {
  340. float: left;
  341. font-size: 30px;
  342. line-height: 36px;
  343. margin: 0 0 18px 0;
  344. width: 700px;
  345. }
  346. #site-title a {
  347. color: #000;
  348. font-weight: bold;
  349. text-decoration: none;
  350. }
  351. #site-description {
  352. clear: right;
  353. float: right;
  354. font-style: italic;
  355. margin: 14px 0 18px 0;
  356. width: 220px;
  357. }
  358.  
  359. /* This is the custom header image */
  360. #branding img {
  361. border-top: 4px solid #000;
  362. border-bottom: 1px solid #000;
  363. clear: both;
  364. display: block;
  365. }
  366.  
  367.  
  368. /* =Menu
  369. -------------------------------------------------------------- */
  370.  
  371. #access {
  372. background: #000;
  373. display: block;
  374. float: left;
  375. margin: 0 auto;
  376. width: 940px;
  377. }
  378. #access .menu-header,
  379. div.menu {
  380. font-size: 13px;
  381. margin-left: 12px;
  382. /*width: 928px;*/
  383. }
  384. #access .menu-header ul,
  385. div.menu ul {
  386. list-style: none;
  387. margin: 0;
  388. }
  389. #access .menu-header li,
  390. div.menu li {
  391. float: left;
  392. position: relative;
  393. }
  394. #access a {
  395. color: #aaa;
  396. display: block;
  397. line-height: 38px;
  398. padding: 0 10px;
  399. text-decoration: none;
  400. }
  401. #access ul ul {
  402. box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  403. -moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  404. -webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  405. display: none;
  406. position: absolute;
  407. top: 38px;
  408. left: 0;
  409. float: left;
  410. width: 180px;
  411. z-index: 99999;
  412. }
  413. #access ul ul li {
  414. min-width: 180px;
  415. }
  416. #access ul ul ul {
  417. left: 100%;
  418. top: 0;
  419. }
  420. #access ul ul a {
  421. background: #333;
  422. line-height: 1em;
  423. padding: 10px;
  424. width: 160px;
  425. height: auto;
  426. }
  427. #access li:hover > a,
  428. #access ul ul :hover > a {
  429. background: #333;
  430. color: #fff;
  431. }
  432. #access ul li:hover > ul {
  433. display: block;
  434. }
  435. #access ul li.current_page_item > a,
  436. #access ul li.current-menu-ancestor > a,
  437. #access ul li.current-menu-item > a,
  438. #access ul li.current-menu-parent > a {
  439. color: #fff;
  440. }
  441. * html #access ul li.current_page_item a,
  442. * html #access ul li.current-menu-ancestor a,
  443. * html #access ul li.current-menu-item a,
  444. * html #access ul li.current-menu-parent a,
  445. * html #access ul li a:hover {
  446. color: #fff;
  447. }
  448.  
  449.  
  450. /* =Content
  451. -------------------------------------------------------------- */
  452.  
  453. #main {
  454. clear: both;
  455. overflow: hidden;
  456. padding: 40px 0 0 0;
  457. }
  458. #content {
  459. margin-bottom: 36px;
  460. }
  461. #content,
  462. #content input,
  463. #content textarea {
  464. color: #fff;
  465. font-size: 16px;
  466. line-height: 24px;
  467. }
  468. #content p,
  469. #content ul,
  470. #content ol,
  471. #content dd,
  472. #content pre,
  473. #content hr {
  474. margin-bottom: 10px;
  475. font-size:13px;
  476. line-height:16px;
  477. }
  478. #content ul ul,
  479. #content ol ol,
  480. #content ul ol,
  481. #content ol ul {
  482. margin-bottom: 0;
  483. }
  484. #content pre,
  485. #content kbd,
  486. #content tt,
  487. #content var {
  488. font-size: 15px;
  489. line-height: 21px;
  490. }
  491. #content code {
  492. font-size: 13px;
  493. }
  494. #content dt,
  495. #content th {
  496. color: #000;
  497. }
  498. #content h1,
  499. #content h2,
  500. #content h3,
  501. #content h4,
  502. #content h5,
  503. #content h6 {
  504. color: #fff;
  505. line-height: 1.5em;
  506. margin: 0 0 10px 0;
  507. }
  508. #content h2 {
  509. color:#ff5000;
  510. }
  511. #content table {
  512. border: 1px solid #e7e7e7;
  513. margin: 0 -1px 24px 0;
  514. text-align: left;
  515. width: 100%;
  516. }
  517. #content tr th,
  518. #content thead th {
  519. color: #888;
  520. font-size: 12px;
  521. font-weight: bold;
  522. line-height: 18px;
  523. padding: 9px 24px;
  524. }
  525. #content tr td {
  526. border-top: 1px solid #e7e7e7;
  527. padding: 6px 24px;
  528. }
  529. #content tr.odd td {
  530. background: #f2f7fc;
  531. }
  532. .hentry {
  533. margin: 0 0 20px 0;
  534. }
  535. .home .sticky {
  536. background: #f2f7fc;
  537. border-top: 4px solid #000;
  538. margin-left: -20px;
  539. margin-right: -20px;
  540. padding: 18px 20px;
  541. }
  542. .single .hentry {
  543. margin: 0 0 36px 0;
  544. }
  545. .page-title {
  546. color: #000;
  547. font-size: 14px;
  548. font-weight: bold;
  549. margin: 0 0 36px 0;
  550. }
  551. .page-title span {
  552. color: #333;
  553. font-size: 16px;
  554. font-style: italic;
  555. font-weight: normal;
  556. }
  557. .page-title a:link,
  558. .page-title a:visited {
  559. color: #888;
  560. text-decoration: none;
  561. }
  562. .page-title a:active,
  563. .page-title a:hover {
  564. color: #ff4b33;
  565. }
  566. #content .entry-title {
  567. color: #fff;
  568. font-size: 21px;
  569. font-weight: bold;
  570. padding-right: 200px;
  571. margin:0;
  572. /*float: right;*/
  573. }
  574. .entry-title a:link,
  575. .entry-title a:visited {
  576. color: #000;
  577. text-decoration: none;
  578. }
  579. .entry-title a:active,
  580. .entry-title a:hover {
  581. color: #ff4b33;
  582. }
  583. .entry-meta {
  584. color: #888;
  585. font-size: 12px;
  586. width:100%;
  587. float:left;
  588. }
  589. .entry-meta abbr,
  590. .entry-utility abbr {
  591. border: none;
  592. }
  593. .entry-meta abbr:hover,
  594. .entry-utility abbr:hover {
  595. border-bottom: 1px dotted #666;
  596. }
  597. .entry-content,
  598. .entry-summary {
  599. clear: both;
  600. padding: 0px 0 0 0;
  601. }
  602. #content .entry-summary p:last-child {
  603. margin-bottom: 12px;
  604. }
  605. .entry-content fieldset {
  606. border: 1px solid #e7e7e7;
  607. margin: 0 0 24px 0;
  608. padding: 24px;
  609. }
  610. .entry-content fieldset legend {
  611. background: #fff;
  612. color: #000;
  613. font-weight: bold;
  614. padding: 0 24px;
  615. }
  616. .entry-content input {
  617. margin: 0 0 24px 0;
  618. }
  619. .entry-content input.file,
  620. .entry-content input.button {
  621. margin-right: 24px;
  622. }
  623. .entry-content label {
  624. color: #888;
  625. font-size: 12px;
  626. }
  627. .entry-content select {
  628. margin: 0 0 24px 0;
  629. }
  630. .entry-content sup,
  631. .entry-content sub {
  632. font-size: 10px;
  633. }
  634. .entry-content blockquote.left {
  635. float: left;
  636. margin-left: 0;
  637. margin-right: 24px;
  638. text-align: right;
  639. width: 33%;
  640. }
  641. .entry-content blockquote.right {
  642. float: right;
  643. margin-left: 24px;
  644. margin-right: 0;
  645. text-align: left;
  646. width: 33%;
  647. }
  648. .page-link {
  649. color: #000;
  650. font-weight: bold;
  651. margin: 0 0 22px 0;
  652. word-spacing: 0.5em;
  653. }
  654. .page-link a:link,
  655. .page-link a:visited {
  656. background: #f1f1f1;
  657. color: #333;
  658. font-weight: normal;
  659. padding: 0.5em 0.75em;
  660. text-decoration: none;
  661. }
  662. .home .sticky .page-link a {
  663. background: #d9e8f7;
  664. }
  665. .page-link a:active,
  666. .page-link a:hover {
  667. color: #ff4b33;
  668. }
  669. body.page .edit-link {
  670. clear: both;
  671. display: block;
  672. }
  673. #entry-author-info {
  674. background: #f2f7fc;
  675. border-top: 4px solid #000;
  676. clear: both;
  677. font-size: 14px;
  678. line-height: 20px;
  679. margin: 24px 0;
  680. overflow: hidden;
  681. padding: 18px 20px;
  682. }
  683. #entry-author-info #author-avatar {
  684. background: #fff;
  685. border: 1px solid #e7e7e7;
  686. float: left;
  687. height: 60px;
  688. margin: 0 -104px 0 0;
  689. padding: 11px;
  690. }
  691. #entry-author-info #author-description {
  692. float: left;
  693. margin: 0 0 0 104px;
  694. }
  695. #entry-author-info h2 {
  696. color: #000;
  697. font-size: 100%;
  698. font-weight: bold;
  699. margin-bottom: 0;
  700. }
  701. .entry-utility {
  702. clear: both;
  703. color: #888;
  704. font-size: 12px;
  705. line-height: 18px;
  706. }
  707. .entry-meta a,
  708. .entry-utility a {
  709. color: #888;
  710. }
  711. .entry-meta a:hover,
  712. .entry-utility a:hover {
  713. color: #ff4b33;
  714. }
  715. #content .video-player {
  716. padding: 0;
  717. }
  718.  
  719.  
  720. /* =Asides
  721. -------------------------------------------------------------- */
  722.  
  723. .home #content .category-asides p {
  724. font-size: 14px;
  725. line-height: 20px;
  726. margin-bottom: 10px;
  727. margin-top: 0;
  728. }
  729. .home .hentry.category-asides {
  730. padding: 0;
  731. }
  732. .home #content .category-asides .entry-content {
  733. padding-top: 0;
  734. }
  735.  
  736.  
  737. /* =Gallery listing
  738. -------------------------------------------------------------- */
  739.  
  740. .category-gallery .size-thumbnail img {
  741. border: 10px solid #f1f1f1;
  742. margin-bottom: 0;
  743. }
  744. .category-gallery .gallery-thumb {
  745. float: left;
  746. margin-right: 20px;
  747. margin-top: -4px;
  748. }
  749. .home #content .category-gallery .entry-utility {
  750. padding-top: 4px;
  751. }
  752.  
  753.  
  754. /* =Attachment pages
  755. -------------------------------------------------------------- */
  756.  
  757. .attachment .entry-content .entry-caption {
  758. font-size: 140%;
  759. margin-top: 24px;
  760. }
  761. .attachment .entry-content .nav-previous a:before {
  762. content: '\2190\00a0';
  763. }
  764. .attachment .entry-content .nav-next a:after {
  765. content: '\00a0\2192';
  766. }
  767.  
  768.  
  769. /* =Images
  770. -------------------------------------------------------------- */
  771.  
  772. #content img {
  773. margin: 0;
  774. /*height: auto;*/
  775. max-width: 640px;
  776. width: auto;
  777. }
  778. #content .attachment img {
  779. max-width: 900px;
  780. }
  781. #content .alignleft,
  782. #content img.alignleft {
  783. display: inline;
  784. float: left;
  785. margin-right: 24px;
  786. margin-top: 4px;
  787. }
  788. #content .alignright,
  789. #content img.alignright {
  790. display: inline;
  791. float: right;
  792. margin-left: 24px;
  793. margin-top: 4px;
  794. }
  795. #content .aligncenter,
  796. #content img.aligncenter {
  797. clear: both;
  798. display: block;
  799. margin-left: auto;
  800. margin-right: auto;
  801. }
  802. #content img.alignleft,
  803. #content img.alignright,
  804. #content img.aligncenter {
  805. margin-bottom: 12px;
  806. }
  807. #content .wp-caption {
  808. background: #f1f1f1;
  809. line-height: 18px;
  810. margin-bottom: 20px;
  811. padding: 4px;
  812. text-align: center;
  813. }
  814. #content .wp-caption img {
  815. margin: 5px 5px 0;
  816. }
  817. #content .wp-caption p.wp-caption-text {
  818. color: #888;
  819. font-size: 12px;
  820. margin: 5px;
  821. }
  822. #content .wp-smiley {
  823. margin: 0;
  824. }
  825. #content .gallery {
  826. margin: 0 auto 18px;
  827. }
  828. #content .gallery .gallery-item {
  829. float: left;
  830. margin-top: 0;
  831. text-align: center;
  832. width: 33%;
  833. }
  834. #content .gallery img {
  835. border: 2px solid #cfcfcf;
  836. }
  837. #content .gallery .gallery-caption {
  838. color: #888;
  839. font-size: 12px;
  840. margin: 0 0 12px;
  841. }
  842. #content .gallery dl {
  843. margin: 0;
  844. }
  845. #content .gallery img {
  846. border: 10px solid #f1f1f1;
  847. }
  848. #content .gallery br+br {
  849. display: none;
  850. }
  851. #content .attachment img { /* single attachment images should be centered */
  852. display: block;
  853. margin: 0 auto;
  854. }
  855.  
  856.  
  857. /* =Navigation
  858. -------------------------------------------------------------- */
  859.  
  860. .navigation {
  861. color: #888;
  862. font-size: 12px;
  863. line-height: 18px;
  864. overflow: hidden;
  865. }
  866. .navigation a:link,
  867. .navigation a:visited {
  868. color: #888;
  869. text-decoration: none;
  870. }
  871. .navigation a:active,
  872. .navigation a:hover {
  873. color: #ff4b33;
  874. }
  875. .nav-previous {
  876. float: left;
  877. width: 50%;
  878. }
  879. .nav-next {
  880. float: right;
  881. text-align: right;
  882. width: 50%;
  883. }
  884. #nav-above {
  885. margin: 0 0 18px 0;
  886. }
  887. #nav-above {
  888. display: none;
  889. }
  890. .paged #nav-above,
  891. .single #nav-above {
  892. display: block;
  893. }
  894. #nav-below {
  895. margin: -18px 0 0 0;
  896. }
  897.  
  898.  
  899. /* =Comments
  900. -------------------------------------------------------------- */
  901. #comments {
  902. clear: both;
  903. }
  904. #comments .navigation {
  905. padding: 0 0 18px 0;
  906. }
  907. h3#comments-title,
  908. h3#reply-title {
  909. color: #000;
  910. font-size: 20px;
  911. font-weight: bold;
  912. margin-bottom: 0;
  913. }
  914. h3#comments-title {
  915. padding: 24px 0;
  916. }
  917. .commentlist {
  918. list-style: none;
  919. margin: 0;
  920. }
  921. .commentlist li.comment {
  922. border-bottom: 1px solid #e7e7e7;
  923. line-height: 24px;
  924. margin: 0 0 24px 0;
  925. padding: 0 0 0 56px;
  926. position: relative;
  927. }
  928. .commentlist li:last-child {
  929. border-bottom: none;
  930. margin-bottom: 0;
  931. }
  932. #comments .comment-body ul,
  933. #comments .comment-body ol {
  934. margin-bottom: 18px;
  935. }
  936. #comments .comment-body p:last-child {
  937. margin-bottom: 6px;
  938. }
  939. #comments .comment-body blockquote p:last-child {
  940. margin-bottom: 24px;
  941. }
  942. .commentlist ol {
  943. list-style: decimal;
  944. }
  945. .commentlist .avatar {
  946. position: absolute;
  947. top: 4px;
  948. left: 0;
  949. }
  950. .comment-author {
  951. }
  952. .comment-author cite {
  953. color: #000;
  954. font-style: normal;
  955. font-weight: bold;
  956. }
  957. .comment-author .says {
  958. font-style: italic;
  959. }
  960. .comment-meta {
  961. font-size: 12px;
  962. margin: 0 0 18px 0;
  963. }
  964. .comment-meta a:link,
  965. .comment-meta a:visited {
  966. color: #888;
  967. text-decoration: none;
  968. }
  969. .comment-meta a:active,
  970. .comment-meta a:hover {
  971. color: #ff4b33;
  972. }
  973. .commentlist .even {
  974. }
  975. .commentlist .bypostauthor {
  976. }
  977. .reply {
  978. font-size: 12px;
  979. padding: 0 0 24px 0;
  980. }
  981. .reply a,
  982. a.comment-edit-link {
  983. color: #888;
  984. }
  985. .reply a:hover,
  986. a.comment-edit-link:hover {
  987. color: #ff4b33;
  988. }
  989. .commentlist .children {
  990. list-style: none;
  991. margin: 0;
  992. }
  993. .commentlist .children li {
  994. border: none;
  995. margin: 0;
  996. }
  997. .nopassword,
  998. .nocomments {
  999. display: none;
  1000. }
  1001. #comments .pingback {
  1002. border-bottom: 1px solid #e7e7e7;
  1003. margin-bottom: 18px;
  1004. padding-bottom: 18px;
  1005. }
  1006. .commentlist li.comment+li.pingback {
  1007. margin-top: -6px;
  1008. }
  1009. #comments .pingback p {
  1010. color: #888;
  1011. display: block;
  1012. font-size: 12px;
  1013. line-height: 18px;
  1014. margin: 0;
  1015. }
  1016. #comments .pingback .url {
  1017. font-size: 13px;
  1018. font-style: italic;
  1019. }
  1020.  
  1021. /* Comments form */
  1022. input[type=submit] {
  1023. color: #333;
  1024. }
  1025. #respond {
  1026. border-top: 1px solid #e7e7e7;
  1027. margin: 24px 0;
  1028. overflow: hidden;
  1029. position: relative;
  1030. }
  1031. #respond p {
  1032. margin: 0;
  1033. }
  1034. #respond .comment-notes {
  1035. margin-bottom: 1em;
  1036. }
  1037. .form-allowed-tags {
  1038. line-height: 1em;
  1039. }
  1040. .children #respond {
  1041. margin: 0 48px 0 0;
  1042. }
  1043. h3#reply-title {
  1044. margin: 18px 0;
  1045. }
  1046. #comments-list #respond {
  1047. margin: 0 0 18px 0;
  1048. }
  1049. #comments-list ul #respond {
  1050. margin: 0;
  1051. }
  1052. #cancel-comment-reply-link {
  1053. font-size: 12px;
  1054. font-weight: normal;
  1055. line-height: 18px;
  1056. }
  1057. #respond .required {
  1058. color: #ff4b33;
  1059. font-weight: bold;
  1060. }
  1061. #respond label {
  1062. color: #888;
  1063. font-size: 12px;
  1064. }
  1065. #respond input {
  1066. margin: 0 0 9px;
  1067. width: 98%;
  1068. }
  1069. #respond textarea {
  1070. width: 98%;
  1071. }
  1072. #respond .form-allowed-tags {
  1073. color: #888;
  1074. font-size: 12px;
  1075. line-height: 18px;
  1076. }
  1077. #respond .form-allowed-tags code {
  1078. font-size: 11px;
  1079. }
  1080. #respond .form-submit {
  1081. margin: 12px 0;
  1082. }
  1083. #respond .form-submit input {
  1084. font-size: 14px;
  1085. width: auto;
  1086. }
  1087.  
  1088.  
  1089. /* =Widget Areas
  1090. -------------------------------------------------------------- */
  1091.  
  1092. .widget-area ul {
  1093. list-style: none;
  1094. margin-left: 0;
  1095. }
  1096. .widget-area ul ul {
  1097. list-style: square;
  1098. margin-left: 1.3em;
  1099. }
  1100. .widget_search #s {/* This keeps the search inputs in line */
  1101. width: 60%;
  1102. }
  1103. .widget_search label {
  1104. display: none;
  1105. }
  1106. .widget-container {
  1107. margin: 0 0 18px 0;
  1108. }
  1109. .widget-title {
  1110. color: #222;
  1111. font-weight: bold;
  1112. }
  1113. .widget-area a:link,
  1114. .widget-area a:visited {
  1115. text-decoration: none;
  1116. }
  1117. .widget-area a:active,
  1118. .widget-area a:hover {
  1119. text-decoration: underline;
  1120. }
  1121. .widget-area .entry-meta {
  1122. font-size: 11px;
  1123. }
  1124. #wp_tag_cloud div {
  1125. line-height: 1.6em;
  1126. }
  1127. #wp-calendar {
  1128. width: 100%;
  1129. }
  1130. #wp-calendar caption {
  1131. color: #222;
  1132. font-size: 14px;
  1133. font-weight: bold;
  1134. padding-bottom: 4px;
  1135. text-align: left;
  1136. }
  1137. #wp-calendar thead {
  1138. font-size: 11px;
  1139. }
  1140. #wp-calendar thead th {
  1141. }
  1142. #wp-calendar tbody {
  1143. color: #aaa;
  1144. }
  1145. #wp-calendar tbody td {
  1146. background: #f5f5f5;
  1147. border: 1px solid #fff;
  1148. padding: 3px 0 2px;
  1149. text-align: center;
  1150. }
  1151. #wp-calendar tbody .pad {
  1152. background: none;
  1153. }
  1154. #wp-calendar tfoot #next {
  1155. text-align: right;
  1156. }
  1157. .widget_rss a.rsswidget {
  1158. color: #000;
  1159. }
  1160. .widget_rss a.rsswidget:hover {
  1161. color: #ff4b33;
  1162. }
  1163. .widget_rss .widget-title img {
  1164. width: 11px;
  1165. height: 11px;
  1166. }
  1167.  
  1168. /* Main sidebars */
  1169. #main .widget-area ul {
  1170. margin-left: 0;
  1171. padding: 0 20px 0 0;
  1172. }
  1173. #main .widget-area ul ul {
  1174. border: none;
  1175. margin-left: 1.3em;
  1176. padding: 0;
  1177. }
  1178. #primary {
  1179. }
  1180. #secondary {
  1181. }
  1182.  
  1183. /* Footer widget areas */
  1184. #footer-widget-area {
  1185. }
  1186.  
  1187.  
  1188. /* =Footer
  1189. -------------------------------------------------------------- */
  1190.  
  1191. #footer {
  1192. margin-bottom: 20px;
  1193. }
  1194. #colophon {
  1195. border-top: 4px solid #000;
  1196. margin-top: -4px;
  1197. overflow: hidden;
  1198. padding: 18px 0;
  1199. }
  1200. #site-info {
  1201. font-weight: bold;
  1202. }
  1203. #site-info a {
  1204. color: #000;
  1205. text-decoration: none;
  1206. }
  1207. #site-generator {
  1208. font-style: italic;
  1209. position: relative;
  1210. }
  1211. #site-generator a {
  1212. background: url(images/wordpress.png) center left no-repeat;
  1213. color: #666;
  1214. display: inline-block;
  1215. line-height: 16px;
  1216. padding-left: 20px;
  1217. text-decoration: none;
  1218. }
  1219. #site-generator a:hover {
  1220. text-decoration: underline;
  1221. }
  1222. img#wpstats {
  1223. display: block;
  1224. margin: 0 auto 10px;
  1225. }
  1226.  
  1227.  
  1228. /* =Mobile Safari ( iPad, iPhone and iPod Touch )
  1229. -------------------------------------------------------------- */
  1230.  
  1231. pre {
  1232. -webkit-text-size-adjust: 140%;
  1233. }
  1234. code {
  1235. -webkit-text-size-adjust: 160%;
  1236. }
  1237. #access,
  1238. .entry-meta,
  1239. .entry-utility,
  1240. .navigation,
  1241. .widget-area {
  1242. -webkit-text-size-adjust: 120%;
  1243. }
  1244. #site-description {
  1245. -webkit-text-size-adjust: none;
  1246. }
  1247.  
  1248.  
  1249. /* =Print Style
  1250. -------------------------------------------------------------- */
  1251.  
  1252. @media print {
  1253. body {
  1254. background: none !important;
  1255. }
  1256. #wrapper {
  1257. clear: both !important;
  1258. display: block !important;
  1259. float: none !important;
  1260. position: relative !important;
  1261. }
  1262. #header {
  1263. border-bottom: 2pt solid #000;
  1264. padding-bottom: 18pt;
  1265. }
  1266. #colophon {
  1267. border-top: 2pt solid #000;
  1268. }
  1269. #site-title,
  1270. #site-description {
  1271. float: none;
  1272. line-height: 1.4em;
  1273. margin: 0;
  1274. padding: 0;
  1275. }
  1276. #site-title {
  1277. font-size: 13pt;
  1278. }
  1279. .entry-content {
  1280. font-size: 14pt;
  1281. line-height: 1.6em;
  1282. }
  1283. .entry-title {
  1284. font-size: 21pt;
  1285. }
  1286. #access,
  1287. #branding img,
  1288. #respond,
  1289. .comment-edit-link,
  1290. .edit-link,
  1291. .navigation,
  1292. .page-link,
  1293. .widget-area {
  1294. display: none !important;
  1295. }
  1296. #container,
  1297. #header,
  1298. #footer {
  1299. margin: 0;
  1300. width: 100%;
  1301. }
  1302. #content,
  1303. .one-column #content {
  1304. margin: 24pt 0 0;
  1305. width: 100%;
  1306. }
  1307. .wp-caption p {
  1308. font-size: 11pt;
  1309. }
  1310. #site-info,
  1311. #site-generator {
  1312. float: none;
  1313. width: auto;
  1314. }
  1315. #colophon {
  1316. width: auto;
  1317. }
  1318. img#wpstats {
  1319. display: none;
  1320. }
  1321. #site-generator a {
  1322. margin: 0;
  1323. padding: 0;
  1324. }
  1325. #entry-author-info {
  1326. border: 1px solid #e7e7e7;
  1327. }
  1328. #main {
  1329. display: inline;
  1330. }
  1331. .home .sticky {
  1332. border: none;
  1333. }
  1334.  
  1335.  
  1336.  
  1337. }
  1338.  
  1339. /*
  1340. -----------------SITE CODE-----------------------
  1341. */
  1342.  
  1343.  
  1344. html {
  1345. height: 100%;
  1346. }
  1347.  
  1348. body {
  1349. margin: 0px;
  1350. background-attachment: fixed;
  1351. background-repeat: repeat-x;
  1352. background-position: center;
  1353. background-color:#444444;
  1354. height: 100%;
  1355. }
  1356.  
  1357. #box {
  1358. position:absolute;
  1359. height:600px;
  1360. width:900px;
  1361. margin:-280px 0px 0px -450px;
  1362. top: 50%;
  1363. left: 50%;
  1364. text-align: left;
  1365. padding: 0px;
  1366.  
  1367. }
  1368.  
  1369.  
  1370.  
  1371.  
  1372. #impressum {
  1373. position:absolute;
  1374. height:20px;
  1375. width:900px;
  1376. margin:-20px 0px 0px -450px;
  1377. top: 975px;
  1378. left: 50%;
  1379. text-align: center;
  1380. padding: 0px;
  1381. font-family:Verdana, Arial, Helvetica, sans-serif;
  1382. font-size:10px;
  1383. text-decoration:none;
  1384. color:#666666;
  1385. }
  1386.  
  1387. #impressum a
  1388. {
  1389. font-family:Verdana, Arial, Helvetica, sans-serif;
  1390. font-size:10px;
  1391. text-decoration:none;
  1392. color:#666666;
  1393. }
  1394.  
  1395. #box a
  1396. {
  1397. font-family:Verdana, Arial, Helvetica, sans-serif;
  1398. text-decoration:none;
  1399. color:#fff;
  1400. }
  1401.  
  1402. #box a:hover {
  1403. color: #ff5000;
  1404. }
  1405.  
  1406. #navi {
  1407. position:absolute;
  1408. width: 799px;
  1409. height:29px;
  1410. margin: 0px;
  1411. }
  1412.  
  1413. #navlist
  1414. {
  1415. float: right;
  1416. margin:0px;
  1417. padding:0px;
  1418. margin-right: 18px;
  1419. }
  1420.  
  1421. #navlist ul, #navlist li
  1422. {
  1423. font-family:Verdana, Arial, Helvetica, sans-serif;
  1424. text-decoration:none;
  1425. font-size:12px;
  1426. margin: 0;
  1427. padding: 0;
  1428. display: inline;
  1429. list-style-type: none;
  1430. }
  1431.  
  1432. #navlist a
  1433. {
  1434. font-family:Verdana, Arial, Helvetica, sans-serif;
  1435. text-decoration:none;
  1436. text-transform:uppercase;
  1437. font-size:12px;
  1438. color:#ffffff;
  1439. display:block;
  1440. float: left;
  1441. padding:10px;
  1442. outline:none;
  1443. }
  1444.  
  1445. #navlist a:hover {
  1446. color: #ff5000;
  1447. }
  1448.  
  1449. #navlist .aktiv {
  1450. font-family:Verdana, Arial, Helvetica, sans-serif;
  1451. text-decoration:none;
  1452. font-size:12px;
  1453. color:#ffffff;
  1454. float: left;
  1455. padding:10px 0px 0px 10px;
  1456. }
  1457.  
  1458. #navlist .aktuell {
  1459. font-family:Verdana, Arial, Helvetica, sans-serif;
  1460. text-decoration:none;
  1461. font-size:12px;
  1462. color: #ff5000;
  1463. float: left;
  1464. padding:10px 0px 0px 10px;
  1465. }
  1466.  
  1467. #navlist .aktuell a{
  1468. color: #ff5000;
  1469. padding:0px;
  1470. }
  1471.  
  1472. #signet {
  1473. float: left;
  1474. margin: 0px;
  1475. padding:8px 40px 0px 0px;
  1476. font-family:Verdana, Arial, Helvetica, sans-serif;
  1477. text-decoration:none;
  1478. font-size:14px;
  1479. font-weight:bold;
  1480. color: #ff5000;
  1481. }
  1482.  
  1483. #signet a {
  1484. font-family:Verdana, Arial, Helvetica, sans-serif;
  1485. text-decoration:none;
  1486. font-size:14px;
  1487. font-weight:bold;
  1488. color: #ff5000;
  1489. }
  1490.  
  1491. #content {
  1492. position:absolute;
  1493. width: 902px;
  1494. height:550px;
  1495. float: left;
  1496. margin-top: 30px;
  1497. vertical-align:bottom;
  1498. overflow: hidden;
  1499. left: -1px;
  1500. top: 1px;
  1501. }
  1502. #content3 {
  1503. position:absolute;
  1504. width: 502px;
  1505. height:550px;
  1506. float: left;
  1507. margin-top: 30px;
  1508. vertical-align:bottom;
  1509. overflow: hidden;
  1510. left: -1px;
  1511. top: 1px;
  1512. }
  1513.  
  1514. #contentreferenzen {
  1515. position:absolute;
  1516. width: 789px;
  1517. height:550px;
  1518. font-family: Verdana, Arial, Helvetica, sans-serif;
  1519. font-size: 11px;
  1520. line-height: 14px;
  1521. color: #FFFFFF;
  1522. float: left;
  1523. margin-top: 30px;
  1524. padding-left:10px;
  1525. border-bottom:#ffffff 1px solid;
  1526. vertical-align:bottom;
  1527. overflow: auto;
  1528. background-color: #444444;
  1529. }
  1530.  
  1531. #contentreferenzen p {
  1532. margin-top:15px;
  1533. }
  1534.  
  1535. #contentreferenzen1 {
  1536. position:absolute;
  1537. width: 498px;
  1538. height:550px;
  1539. font-family: Verdana, Arial, Helvetica, sans-serif;
  1540. font-size: 11px;
  1541. line-height: 14px;
  1542. color: #FFFFFF;
  1543. float: left;
  1544. margin-top: 2px;
  1545. padding-left:10px;
  1546. border-bottom:#ffffff 1px solid;
  1547. vertical-align:bottom;
  1548. overflow: auto;
  1549. background-color: #444444;
  1550. border-right:#ffffff 1px solid;
  1551. }
  1552.  
  1553. #slider {
  1554. position: absolute;
  1555. border-right:#ffffff 1px solid;
  1556. }
  1557.  
  1558. #bild {
  1559. padding-top:40px;
  1560. position: absolute;
  1561. width: 508px;
  1562. height:500px;
  1563. }
  1564.  
  1565. #bild1 {
  1566. padding-left:14px;
  1567. font-family: Verdana, Arial, Helvetica, sans-serif;
  1568. font-size: 14px;
  1569. line-height: 14px;
  1570. color: #FFFFFF;
  1571. text-decoration: none;: absolute;
  1572.  
  1573. }
  1574.  
  1575. #bild_projekte {
  1576. position: absolute;
  1577. width:799px;
  1578. height:221px;
  1579. }
  1580.  
  1581. #text {
  1582. position: absolute;
  1583. bottom: 10px;
  1584. width:200px;
  1585. margin-left: 518px;
  1586. padding-bottom:20px;
  1587. font-family: Verdana, Arial, Helvetica, sans-serif;
  1588. font-size: 11px;
  1589. line-height: 14px;
  1590. color: #FFFFFF;
  1591. text-decoration: none;
  1592. left: 6px;
  1593. }
  1594.  
  1595. #text4 {
  1596. position: absolute;
  1597. bottom: 20px;
  1598. width:313px;
  1599. margin-left: 518px;
  1600. padding-bottom:20px;
  1601. font-family: Verdana, Arial, Helvetica, sans-serif;
  1602. font-size: 14px;
  1603. line-height: 14px;
  1604. color: #FFFFFF;
  1605. text-decoration: none;
  1606. left: 76px;
  1607. }
  1608.  
  1609. #text5 {
  1610. vertical-align: middle;
  1611. bottom: 30px;
  1612. position:relative;
  1613. margin-left: 450px;
  1614. width:450px;
  1615. font-family: Verdana, Arial, Helvetica, sans-serif;
  1616. font-size: 11px;
  1617. line-height: 14px;
  1618. color: #FFFFFF;
  1619.  
  1620. height:600px;
  1621. }
  1622.  
  1623. #text3 {
  1624. position: absolute;
  1625. bottom: 10px;
  1626. width: 333px;
  1627. margin-left: 518px;
  1628. padding-bottom: 20px;
  1629. font-family: Verdana, Arial, Helvetica, sans-serif;
  1630. font-size: 11px;
  1631. line-height: 14px;
  1632. color: #FFFFFF;
  1633. text-decoration: none;
  1634. height: 251px;
  1635. left: 23px;
  1636. }
  1637.  
  1638. #text1 {
  1639. position:absolute;
  1640. width: 390px;
  1641. height:550px;
  1642. margin-left: 503px;
  1643. float: left;
  1644. font-family: Verdana, Arial, Helvetica, sans-serif;
  1645. font-size: 11px;
  1646. line-height: 14px;
  1647. color: #FFFFFF;
  1648. padding-left:4px;
  1649. margin-top: 2px;
  1650. vertical-align:top;
  1651. overflow: auto;
  1652. top: 87px;
  1653. }
  1654.  
  1655. #texthome {
  1656. position: absolute;
  1657. bottom: 10px;
  1658. width:270px;
  1659. margin-left: 518px;
  1660. padding-bottom:20px;
  1661. font-family: Verdana, Arial, Helvetica, sans-serif;
  1662. font-size: 11px;
  1663. line-height: 14px;
  1664. color: #FFFFFF;
  1665. text-decoration: none;
  1666. }
  1667.  
  1668. #texthome h1{
  1669.  
  1670. font-family: Verdana, Arial, Helvetica, sans-serif;
  1671.  
  1672. font-size: 11px;
  1673.  
  1674. line-height: 14px;
  1675.  
  1676. color: #FFFFFF;
  1677.  
  1678. text-decoration: none;
  1679.  
  1680. }
  1681.  
  1682. #text2 {
  1683. position: absolute;
  1684. bottom: 10px;
  1685. width:200px;
  1686. margin-left: 613px;
  1687. padding-bottom:20px;
  1688. font-family: Verdana, Arial, Helvetica, sans-serif;
  1689. font-size: 11px;
  1690. line-height: 14px;
  1691. color: #FFFFFF;
  1692. text-decoration: none;
  1693. }
  1694.  
  1695. #back {
  1696. position: absolute;
  1697. bottom: 0px;
  1698. width:100px;
  1699. height:90px;
  1700. margin-left: 0px;
  1701. padding-bottom:0px;
  1702. font-family: Verdana, Arial, Helvetica, sans-serif;
  1703. font-size: 11px;
  1704. line-height: 14px;
  1705. color: #FFFFFF;
  1706. text-decoration: none;
  1707. text-align:center;
  1708. }
  1709.  
  1710. #back ul, #back li
  1711. {
  1712. font-family:Verdana, Arial, Helvetica, sans-serif;
  1713. text-decoration:none;
  1714. font-size:12px;
  1715. margin: 0;
  1716. padding: 0;
  1717. display: inline;
  1718. list-style-type: none;
  1719. }
  1720.  
  1721. #back .weiter a
  1722. {
  1723. font-family:Verdana, Arial, Helvetica, sans-serif;
  1724. text-decoration:none;
  1725. font-size:12px;
  1726. color:#ffffff;
  1727. display:block;
  1728. height:21px;
  1729. padding-top:8px;
  1730. border-top:#ffffff 1px solid;
  1731. background-image:url(../images/weiter_w.gif);
  1732. background-repeat:no-repeat;
  1733. }
  1734.  
  1735. #back .weiter a:hover
  1736. {
  1737. font-family:Verdana, Arial, Helvetica, sans-serif;
  1738. text-decoration:none;
  1739. font-size:12px;
  1740. color:#ff5000;
  1741. display:block;
  1742. height:21px;
  1743. padding-top:8px;
  1744. border-top:#ffffff 1px solid;
  1745. background-image:url(../images/weiter_o.gif);
  1746. background-repeat:no-repeat;
  1747. }
  1748.  
  1749. #back .zurueck a
  1750. {
  1751. font-family:Verdana, Arial, Helvetica, sans-serif;
  1752. text-decoration:none;
  1753. font-size:12px;
  1754. color:#ffffff;
  1755. display:block;
  1756. height:21px;
  1757. padding-top:8px;
  1758. border-top:#ffffff 1px solid;
  1759. background-image:url(../images/zurueck_w.gif);
  1760. background-repeat:no-repeat;
  1761. }
  1762.  
  1763. #back .zurueck a:hover
  1764. {
  1765. font-family:Verdana, Arial, Helvetica, sans-serif;
  1766. text-decoration:none;
  1767. font-size:12px;
  1768. color:#ff5000;
  1769. display:block;
  1770. height:21px;
  1771. padding-top:8px;
  1772. border-top:#ffffff 1px solid;
  1773. background-image:url(../images/zurueck_o.gif);
  1774. background-repeat:no-repeat;
  1775. }
  1776.  
  1777. #back .uebersicht a
  1778. {
  1779. font-family:Verdana, Arial, Helvetica, sans-serif;
  1780. text-decoration:none;
  1781. font-size:12px;
  1782. color:#ffffff;
  1783. display:block;
  1784. height:21px;
  1785. padding-top:8px;
  1786. border-top:#ffffff 1px solid;
  1787. }
  1788.  
  1789. #back .uebersicht a:hover
  1790. {
  1791. font-family:Verdana, Arial, Helvetica, sans-serif;
  1792. text-decoration:none;
  1793. font-size:12px;
  1794. color:#ff5000;
  1795. display:block;
  1796. height:21px;
  1797. padding-top:8px;
  1798. border-top:#ffffff 1px solid;
  1799. }
  1800.  
  1801. #linkbox {
  1802. position: absolute;
  1803. width:799px;
  1804. height:218px;
  1805. margin-top:222px;
  1806. background-image: url(../images/pro_nav_bg.gif);
  1807. }
  1808.  
  1809.  
  1810. #navpro {
  1811. margin: 0px;
  1812. margin:0px 0px 0px 0px;
  1813. padding: 0px;
  1814. width: 199px;
  1815. float: left;
  1816. }
  1817.  
  1818. #navpro h1{
  1819. font-family: Verdana, Arial, Helvetica, sans-serif;
  1820. font-size: 14px;
  1821. font-weight: bold;
  1822. color: #FFFFFF;
  1823. margin:5px 0px 5px 10px;
  1824. text-decoration: none;
  1825. }
  1826.  
  1827. #navpro ul, li
  1828. {
  1829. margin-left: 5px;
  1830. margin-top: 0;
  1831. padding: 0;
  1832. list-style: none;
  1833. }
  1834.  
  1835. #navpro li a {
  1836. font-family: Verdana, Arial, Helvetica, sans-serif;
  1837. font-size: 11px;
  1838. font-weight: normal;
  1839. color: #FFFFFF;
  1840. display: block;
  1841. height:16px;
  1842. text-decoration: none;
  1843. padding-left:15px;
  1844. background-image: url(../images/under_bullet.gif);
  1845. background-repeat: no-repeat;
  1846. background-position: 0% 50%;
  1847. }
  1848.  
  1849. #navpro li a:hover {
  1850. color: #ffffff;
  1851. background-image: url(../images/under_bullet_ro.gif);
  1852. background-repeat: no-repeat;
  1853. background-position: 0% 50%;
  1854. }
  1855.  
  1856. #right {
  1857. position:absolute;
  1858. width: 100px;
  1859. height:550px;
  1860. float: left;
  1861. margin-left: 799px;
  1862. vertical-align:bottom;
  1863. }
  1864. #logo {
  1865. position:absolute;
  1866. width: 100px;
  1867. float: left;
  1868. }
  1869. .linklist {
  1870. margin:0;
  1871. padding:0;
  1872. width:300px;
  1873. float:right;
  1874. }
  1875. .linklist li {
  1876. list-style-image:url(images/arrow.gif);
  1877. line-height:24px;
  1878. }
  1879. #newscontainer {
  1880. width:900px;
  1881. }
  1882. #newscontent {
  1883. width:450px;
  1884. float:right;
  1885. }
  1886.  
  1887. .accordion_toggle h1 {
  1888. width:403px;
  1889. }
  1890. .accordion_toggle {
  1891. display:block;
  1892. height:30px;
  1893. color:#fff;
  1894. text-decoration:none;
  1895. text-indent:15px;
  1896. outline:none;
  1897. cursor:pointer;
  1898. margin:0px;
  1899. font:bold 14px/30px Verdana, Arial, Helvetica, sans-serif;
  1900. background:url("images/arrow.gif") no-repeat scroll left center transparent;
  1901. padding-left:5px;
  1902. }
  1903. .tab_mid {
  1904. background:url(../images/tab_m_grey.gif) no-repeat;
  1905. width:400px;
  1906. height:31px;
  1907. }
  1908. .tab_bot {
  1909. background:url(../images/tab_b_grey.gif) no-repeat;
  1910. width:400px;
  1911. height:40px;
  1912. line-height:34px;
  1913. }
  1914. .tab_mid_hover {
  1915. background:url(../images/tab_mh_grey.gif) no-repeat;
  1916. width:400px;
  1917. height:31px;
  1918. color:#ccccac;
  1919. }
  1920. .tab_bot_hover {
  1921. background:url(../images/tab_bh_grey.gif) no-repeat;
  1922. width:400px;
  1923. height:40px;
  1924. color:#ccccac;
  1925. }
  1926. .accordion_toggle_active {
  1927. /*background:url("images/arrow.gif") no-repeat scroll left center transparent;*/
  1928. color:#fff;
  1929. height:31px;
  1930. }
  1931. .accordion_content {
  1932. /*background-color:#f2f2f2;*/
  1933. color:#444;
  1934. overflow:hidden;
  1935. /*width:400px;
  1936. height:130px;*/
  1937. display:none;
  1938. position:relative;
  1939. }
  1940. .accordion_content li {
  1941. padding:5px 0;
  1942. }
  1943. .accordion_content .content {
  1944. padding:9px 20px 0px;
  1945. line-height:19px;
  1946. height:100px;
  1947. }
  1948. .accordion_content .ctab {
  1949. float:right;
  1950. position:absolute;
  1951. right:10px;
  1952. top:90px;
  1953. z-index:0;
  1954. }
  1955. .accordion_content .ctab .cta {
  1956. float:left;
  1957. width:auto;
  1958. font-weight:bold;
  1959. line-height:24px;
  1960. }
  1961. .accordion_content .ctab .ab {
  1962. float:left;
  1963. width:auto;
  1964. margin-left:10px;
  1965. }
  1966. .accordion_content h2 {
  1967. margin:15px 0 5px 10px;
  1968. color:#09f;
  1969. }
  1970. .accordion_content p {
  1971. padding:0px 10px;
  1972. line-height:18px;
  1973. }
  1974. #accordion-container {
  1975. overflow:hidden;
  1976. width:403px;
  1977. }
  1978.  
  1979. .container-header {
  1980. background:url(../images/bg-head.gif) no-repeat;
  1981. height:40px;
  1982. text-indent:15px;
  1983. text-align:left;
  1984. font-size:16px;
  1985. color:#fff;
  1986. font-weight:800;
  1987. width:400px;
  1988. }
  1989. .container-heading {
  1990. height:40px;
  1991. line-height:40px;
  1992. color:#FFA800;
  1993. text-align:left;
  1994. width:400px;
  1995. font-size:18px;
  1996. }
  1997. #vertical_container .two {
  1998. margin-top:20px;
  1999. }
  2000. #vertical_container .last {
  2001. border-bottom:2px solid #bbb;
  2002. }
  2003. /* home - accordion style menu css */
  2004. #sidebar-links-area {
  2005. float:right;
  2006. width:300px;
  2007. margin-top:50px;
  2008. }
  2009. #bild2 {
  2010. height: 500px;
  2011. padding-top: 20px;
  2012. position: absolute;
  2013. width: 100%;
  2014. }
  2015.  
  2016.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement