Advertisement
dreamling

psc-repeating-style

Sep 11th, 2014
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 31.51 KB | None | 0 0
  1. /*
  2. Theme Name: Pink Sugar Castle
  3. Description: <code>Pink Sugar Castle</code>
  4. Version: 1.0-wpcom
  5. Text Domain: Pink Sugar Castle
  6. Tags:
  7.  
  8.  Pink Sugar Castle is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.
  9.  
  10. Resetting and rebuilding styles have been helped along thanks to the fine work of
  11. Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
  12. along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
  13. and Blueprint http://www.blueprintcss.org/
  14. */
  15. @import url(http://fonts.googleapis.com/css?family=PT+Sans|Open+Sans);
  16. @import url(fontello-e3bf0fd9/css/fontello.css);
  17.  
  18. /*--------------------------------------------------------------
  19. >>> TABLE OF CONTENTS:
  20. ----------------------------------------------------------------
  21. 1.0 - Reset
  22. 2.0 - Typography
  23. 3.0 - Elements
  24. 4.0 - Forms
  25. 5.0 - Navigation
  26.     5.1 - Links
  27.     5.2 - Menus
  28. 6.0 - Accessibility
  29. 7.0 - Alignments
  30. 8.0 - Clearings
  31. 9.0 - Widgets
  32. 10.0 - Content
  33.     10.1 - Posts and pages
  34.     10.2 - Asides
  35.     10.3 - Comments
  36. 11.0 - Infinite scroll
  37. 12.0 - Media
  38.     12.1 - Captions
  39.     12.2 - Galleries
  40. --------------------------------------------------------------*/
  41.  
  42. /*--------------------------------------------------------------
  43. 1.0 - Reset
  44. --------------------------------------------------------------*/
  45. html, body, div, span, applet, object, iframe,
  46. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  47. a, abbr, acronym, address, big, cite, code,
  48. del, dfn, em, font, ins, kbd, q, s, samp,
  49. small, strike, strong, sub, sup, tt, var,
  50. dl, dt, dd, ol, ul, li,
  51. fieldset, form, label, legend,
  52. table, caption, tbody, tfoot, thead, tr, th, td {
  53.     border: 0;
  54.     font-family: inherit;
  55.     font-size: 100%;
  56.     font-style: inherit;
  57.     font-weight: inherit;
  58.     margin: 0;
  59.     outline: 0;
  60.     padding: 0;
  61.     vertical-align: baseline;
  62. }
  63.  
  64. html {
  65.     font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  66.     overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
  67.     -webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  68.     -ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
  69. }
  70.  
  71. *,
  72. *:before,
  73. *:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  74.     -webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
  75.     -moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
  76.     box-sizing:         border-box;
  77. }
  78.  
  79. body {
  80. //  background: #fff; /* Fallback for when there is no custom background color defined. */
  81.     background-color:#FAA7F9;
  82.  
  83. }
  84.  
  85. article,
  86. aside,
  87. details,
  88. figcaption,
  89. figure,
  90. footer,
  91. header,
  92. main,
  93. nav,
  94. section,
  95. {
  96.     display: block;
  97. }
  98.  
  99. ol,
  100. ul {
  101.     list-style: none;
  102. }
  103.  
  104. table { /* tables still need 'cellspacing="0"' in the markup */
  105.     border-collapse: separate;
  106.     border-spacing: 0;
  107. }
  108.  
  109. caption,
  110. th,
  111. td {
  112.     font-weight: normal;
  113.     text-align: left;
  114. }
  115. blockquote:before,
  116. blockquote:after,
  117. q:before,
  118. q:after {
  119.     content: "";
  120. }
  121.  
  122. blockquote,
  123. q {
  124.     quotes: "" "";
  125. }
  126.  
  127. a:focus {
  128.     outline: thin dotted;
  129. }
  130.  
  131. a:hover,
  132. a:active {
  133.     outline: 0;
  134. }
  135.  
  136. a img {
  137.     border: 0;
  138. }
  139.  
  140. /*--------------------------------------------------------------
  141. 2.0 Typography
  142. --------------------------------------------------------------*/
  143. body,
  144. button,
  145. input,
  146. select,
  147. textarea {
  148.     color: #404040;
  149.     font-family: sans-serif;
  150.     font-size: 16px;
  151.     font-size: 1.6rem;
  152.     line-height: 1.5;
  153.     font-family: 'PT Sans', sans-serif;
  154. }
  155.  
  156. h1,
  157. h2,
  158. h3,
  159. h4,
  160. h5,
  161. h6,
  162. .site-content  {
  163.     clear: both;
  164. }
  165.  
  166. p {
  167.     margin-bottom: 1.5em;
  168. }
  169.  
  170. b,
  171. strong {
  172.     font-weight: bold;
  173. }
  174.  
  175. dfn,
  176. cite,
  177. em,
  178. i {
  179.     font-style: italic;
  180. }
  181.  i[class^="icon-"]:before, i[class*=" icon-"]:before {
  182.   margin: 0;
  183. }
  184.  
  185. blockquote {
  186.     margin: 0 1.5em;
  187. }
  188.  
  189. address {
  190.     margin: 0 0 1.5em;
  191. }
  192.  
  193. pre {
  194.     background: #eee;
  195.     font-family: "Courier 10 Pitch", Courier, monospace;
  196.     font-size: 15px;
  197.     font-size: 1.5rem;
  198.     line-height: 1.6;
  199.     margin-bottom: 1.6em;
  200.     max-width: 100%;
  201.     overflow: auto;
  202.     padding: 1.6em;
  203. }
  204.  
  205. code,
  206. kbd,
  207. tt,
  208. var {
  209.     font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  210. }
  211.  
  212. abbr,
  213. acronym {
  214.     border-bottom: 1px dotted #666;
  215.     cursor: help;
  216. }
  217.  
  218. mark,
  219. ins {
  220.     background: #fff9c0;
  221.     text-decoration: none;
  222. }
  223.  
  224. sup,
  225. sub {
  226.     font-size: 75%;
  227.     height: 0;
  228.     line-height: 0;
  229.     position: relative;
  230.     vertical-align: baseline;
  231. }
  232.  
  233. sup {
  234.     bottom: 1ex;
  235. }
  236.  
  237. sub {
  238.     top: .5ex;
  239. }
  240.  
  241. small {
  242.     font-size: 75%;
  243. }
  244.  
  245. big {
  246.     font-size: 125%;
  247. }
  248.  
  249. /*--------------------------------------------------------------
  250. 2.5 IDs/classes
  251. --------------------------------------------------------------*/
  252. #page{
  253. margin:0px;
  254. }
  255. .header-content{
  256.     margin:0 auto;
  257.     width:960px;
  258. }
  259. .menu-header-navigation-container{
  260.     margin-bottom:8px;
  261. }
  262. /* Header */
  263. #masthead{
  264.     position:absolute;
  265.     top:0;
  266.     background-color:salmon;
  267.     width:100%;
  268.     height:320px;
  269.     display:block;
  270.     margin:0 auto;
  271.     padding:0;
  272.     clear:both;
  273.     background-image: url('http://placekitten.com/2000/350/');
  274.     background-repeat: no-repeat;
  275.     background-position: -334px 0px;}
  276.  
  277. .site-branding{
  278.     width:800px;
  279.     height:300px;
  280.     margin-left:20px;
  281. }
  282.  
  283. .site-logo,.site-logo-small{
  284.     display:block;
  285.     width:70px;
  286.     height:106px;
  287.     margin-top:70px;
  288.     float:left;
  289.     background-image: url('http://placekitten.com/70/106/');
  290.     clear:none;
  291.     background-repeat: no-repeat;
  292. }
  293. .site-logo-small{
  294.     background-image: url('http://placekitten.com/105/153/');
  295.     margin:0px;
  296.     margin-right:4px;
  297.     width:35px;
  298.   height:53px;}
  299.  
  300. .site-title{
  301.     margin: 70px 0 5px 10px;
  302.     display:block;
  303.     float:left;
  304.     clear:none;
  305.     letter-spacing:2px;
  306.   font-family: 'PT Sans', sans-serif;
  307. }
  308.  
  309. h1.site-title,
  310. h1.site-title a{
  311.     font-size:57px;
  312.     color:#fff;
  313.     text-decoration:none}
  314.  
  315. .site-description{
  316.     width:80%;
  317.     margin-top:-22px;
  318.     text-transform:uppercase;
  319.     float:left;
  320.     clear:none;
  321.     color:#ebdd8f;
  322.     margin-left:12px;
  323.     font-family:serif;
  324.     letter-spacing:4px;
  325. }
  326.  
  327. .site-byline{
  328.     color:#fff;
  329.     font-family: 'PT Sans', sans-serif;
  330.     text-transform: uppercase;
  331.     letter-spacing: .15px;
  332.     padding-top:30px;
  333.     margin-left:82px;
  334.  
  335. }
  336. .more-info{
  337.     margin-top:20px;
  338.     float:right;
  339.     top:35px;
  340.     right:40px;
  341.     display:block;
  342.     width:128px;
  343.     color:#48453f;
  344. }
  345.  
  346.  
  347. .info-search{
  348.     margin:0;
  349.     padding:0;
  350.     clear:none;
  351. }
  352. .social,
  353. div.more-info div.social a:link,
  354. div.more-info div.social a:visited,
  355. {   color:#48453f ;
  356. margin:0px;}
  357.  
  358. .more-info div.social ul,
  359. .copyright div.social ul{
  360.     list-style-type: none;
  361.     margin-bottom:4px;
  362.     margin-left:40px;
  363.     padding:0;
  364.     height:26px;
  365.     display:block;
  366.     width:100%;
  367.     color:#48453f;
  368.  
  369. }
  370.  
  371. .copyright div.social ul li,
  372. .more-info div.social ul li{
  373.     display:inline-block;
  374. margin:0px;}
  375. .more-info div.social ul li a{
  376.     margin:0px;padding:0px;
  377. }
  378. .copyright i,.more-info i,
  379. .more-info i a{
  380.     color:#fff;
  381.   display:inline;}
  382.  
  383. .more-info button:hover,
  384. .more-info[type="button"]:hover,
  385. .more-info[type="reset"]:hover,
  386. .more-info[type="submit"]:hover,
  387. .more-info button,
  388. .more-info[type="button"],
  389. .more-info[type="reset"],
  390. .more-info[type="submit"]{
  391.   border:0;
  392.     box-shadow:none;
  393.     cursor: pointer;
  394.   text-shadow: none;
  395.   border:1px solid #fff;
  396.     border-left:0px;
  397.     margin-top:2px;
  398.  
  399.     }
  400.  
  401.  
  402. input[type="text"].search-field,
  403. input[type="text"].search-field:focus{
  404.     background-color: #AF0102;
  405.     padding:2px;
  406.     padding-right:0px;
  407.     margin-right:-5px;
  408.     margin-left:34px;
  409.     border:1px solid #fff;
  410.     height:100%;
  411.     width:72px;
  412.     color:#fff;
  413.     font-size: 10pt;
  414. }
  415.  
  416.  
  417. /* find this class in searchform.php*/
  418. .more-info-search{
  419.     height:30px;
  420. }
  421. .search-submit{
  422. width:20px;
  423. height:25px;
  424. background-color: #AF0102;
  425. margin:0;
  426. padding: 0px;
  427. }
  428.  
  429.  
  430. .search-submit span.icon-search{
  431.     color:#fff;
  432.     border:0;
  433.     font-size:10pt;
  434.     margin-left:-5px;
  435.     padding-top:1px;
  436.     font-weight:normal;
  437. }
  438. /*----*/
  439. #content{
  440. margin:0 auto;
  441. display:block;
  442. margin-top:290px;
  443. overflow: auto;
  444. }
  445.  
  446. .main{display:block;}
  447.  
  448.  
  449. /* front page */
  450.  
  451. #primary.content-area{
  452. padding-top:10px;
  453. width:940px;
  454. margin:0 auto;
  455. }
  456.  
  457. #hero{
  458. margin:0 auto;
  459. width:100%;
  460. background-image: url('http://placekitten.com/940/345/');
  461.     background-repeat: no-repeat;
  462.     background-position: left top;
  463.     margin-top:40px;}
  464.  
  465. #hero h1{
  466. /* color:#972520; */
  467. color:#990000;
  468. font-size:47px;
  469. font-family: 'PT Sans', sans-serif;
  470. line-height:51px;
  471. font-weight:600;
  472. }
  473.  
  474. #hero p{
  475. width:60%;
  476. }
  477.  
  478. div#hero.billboard h4.calltoaction ,
  479. div#hero.billboard h4.calltoaction a{
  480. color:#972520;
  481. text-transform:uppercase;
  482. margin-left:25px;
  483. text-decoration:none;
  484. }
  485.  
  486.  
  487. .billboard{
  488. margin:0 2px;
  489. -webkit-box-shadow: 0px 0px 25px -5px rgba(0,0,0,1);
  490. -moz-box-shadow: 0px 0px 25px -5px rgba(0,0,0,1);
  491. box-shadow: 0px 0px 25px -5px rgba(0,0,0,1);
  492. clear:both;
  493. padding:30px;
  494. overflow:none;}
  495.  
  496.  
  497. .billboard p{
  498. width:50%;
  499. font-size:17px;}
  500.  
  501. div.billboard.home-program{
  502. width:47%;
  503. min-width:460px;
  504. height:260px;
  505. display:inline-block;
  506. clear:none;
  507. padding:10px;
  508. background-color:#726e5b;
  509. color:#fff;
  510. overflow:none;
  511. margin:10px 0;
  512. float:right;
  513. }
  514.  
  515. div.billboard.home-program.masters{
  516. background-image: url('http://placekitten.com/460/260/');
  517.     background-repeat: no-repeat;
  518.     background-position: right top;}
  519. div.billboard.home-program.capstone{
  520. background-image: url('http://placekitten.com/460/260/');
  521.     background-repeat: no-repeat;
  522.     background-position: right top;}
  523.  
  524. div.billboard.home-program.spotlight{
  525. background-image: url('http://placekitten.com/460/260/');
  526.     background-repeat: no-repeat;
  527.     background-position: right top;
  528.     margin-bottom:50px;}
  529.  
  530.  
  531. div.billboard.home-program.col-left{
  532.  margin-left:0px;
  533.  margin-right:5px;
  534.  float:left;
  535. }
  536. div.billboard.home-program.col-right
  537. div.billboard.kicker.col-right{
  538. margin-right:0px;
  539.  margin-left:5px;
  540.  float:right;
  541.  width:42%;
  542.  border:1px solid red;
  543. }
  544.  
  545. .home-program h3,
  546. .kickers h3{
  547. text-transform:uppercase;
  548. font-family:'PT Sans', sans-serif;
  549. font-size:19px;
  550. font-weight:bold;
  551. margin-bottom:20px;
  552. }
  553.  
  554. div.billboard.notice{
  555. //height:60px;
  556. clear:none;
  557. float:right;
  558. }
  559.  
  560. .home-program p {
  561. margin-top:5px;
  562. margin-left:5px;
  563. font-size:17px;
  564. font-weight:normal;
  565. }
  566.  
  567. .notice{
  568. background-color:#efe8da;
  569. width:100%;}
  570.  
  571. .kickers{
  572.     display:inline-block;
  573.     margin-top:10px;
  574.     margin-left:5px;
  575.     width:45%;
  576.     min-width: 460px;
  577.     float:right;
  578.     height:260px;
  579. }
  580.  
  581.  
  582. div.kickers .kicker-blog,
  583. div.kickers .kicker-success{
  584.     height:48%;
  585.     display:block;
  586.     background-color:#efe8da;
  587.     font-size:17px;
  588.     font-weight:normal;
  589. }
  590.  
  591. .icon-linkedin-squared{
  592.     margin:0px;
  593.     line-height: 0px;
  594.     margin-bottom:4px;
  595.     margin-top:4px;
  596.     font-weight: normal;
  597. }
  598.  
  599. .kickers i{
  600.     margin-left:-10px;
  601.     margin-top:-130px;
  602.     float:left;
  603.     font-size:50pt;
  604.     color:#990000;
  605. }
  606.  
  607. .kickers i.icon-blog{
  608.     font-size: 40pt;
  609.     margin-top: -115px;
  610. }
  611. .kickers p,
  612. .kickers h3{
  613. display: block;
  614. width:80%;
  615. margin-left:45px;
  616. line-height:22pt;
  617. margin-top:-12px;
  618. float:right;}
  619.  
  620. .kickers h3{
  621.  
  622.     letter-spacing: -1pt;
  623.     font-weight: 600;
  624.     line-height: 20pt;
  625. }
  626. /*p:before{
  627. font-size: 50px;
  628. content: "\f147";}*/
  629.  
  630. /* Footer */
  631.  
  632. .site-footer{
  633. background-color:#43403b;
  634. height:500px;
  635. margin:0px;
  636. padding:0px;
  637. width:100%;
  638. font-family: 'PT Sans', sans-serif;
  639. }
  640.  
  641. .footer-col {
  642. float:left;
  643. width:30%;
  644. margin-right:20px;
  645. display:block;
  646. color:#fff;
  647. font-size:10pt;
  648. line-height: 10pt;
  649. }
  650. .footer-col h4{
  651. text-transform:uppercase;
  652. font-weight: bold;
  653. font-size: 12pt;
  654. }
  655. .footer-col ul{
  656.     margin-top:20px;
  657.     list-style: none;
  658. }
  659. .footer-col li{
  660.     margin-left:-40px;
  661. }
  662.  
  663. #social-section{
  664.     width:960px;
  665.     margin:0 auto;
  666.     color:;
  667.  
  668. }
  669. #final-info-footer, .copyrite{
  670.     margin:0 auto;
  671.     text-align: left;
  672.     color:#fff;
  673.     display:block;
  674.     width: 960px;
  675. }
  676. /*--------------------------------------------------------------
  677. 3.0 Elements
  678. --------------------------------------------------------------*/
  679. hr {
  680.     background-color: #ccc;
  681.     border: 0;
  682.     height: 1px;
  683.     margin-bottom: 1.5em;
  684. }
  685.  
  686. ul,
  687. ol {
  688.     margin: 0 0 1.5em 3em;
  689. }
  690.  
  691. ul {
  692.     list-style: disc;
  693. }
  694.  
  695. ol {
  696.     list-style: decimal;
  697. }
  698.  
  699. li > ul,
  700. li > ol {
  701.     margin-bottom: 0;
  702.     margin-left: 1.5em;
  703. }
  704.  
  705. dt {
  706.     font-weight: bold;
  707. }
  708.  
  709. dd {
  710.     margin: 0 1.5em 1.5em;
  711. }
  712.  
  713. img {
  714.     height: auto; /* Make sure images are scaled correctly. */
  715.     max-width: 100%; /* Adhere to container width. */
  716. }
  717.  
  718. figure {
  719.     margin: 0;
  720. }
  721.  
  722. table {
  723.     margin: 0 0 1.5em;
  724.     width: 100%;
  725. }
  726.  
  727. th {
  728.     font-weight: bold;
  729. }
  730.  
  731. /*--------------------------------------------------------------
  732. 4.0 Forms
  733. --------------------------------------------------------------*/
  734. button,
  735. input,
  736. select,
  737. textarea {
  738.     font-size: 100%; /* Corrects font size not being inherited in all browsers */
  739.     margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  740.     vertical-align: baseline; /* Improves appearance and consistency in all browsers */
  741. }
  742.  
  743. button{
  744.  
  745. }
  746.  
  747. button.uw-button-style,
  748. .uw-button-style {
  749.     text-indent:0;
  750.     border:4px solid #d83526;
  751.     display:inline-block;
  752.     color:#ffffff;
  753.     font-family:'Open Sans', sans-serif;
  754.     font-size:15px;
  755.     font-weight:bold;
  756.     text-transform: uppercase;
  757.     height:40px;
  758.     width:100px;
  759.     text-decoration:none;
  760.     text-align:center;
  761.     background-color:#ce0100;
  762. }
  763. button.uw-button-style:hover {
  764.     background-color:#ce0100;
  765.     border-top: thick;
  766. }
  767. button.uw-button-style:active {
  768.     position:relative;
  769.     top:1px;
  770. }
  771. /* This button was generated using CSSButtonGenerator.com */
  772. .styled-select select {
  773.    background: transparent;
  774.    width: 268px;
  775.    padding: 5px;
  776.    font-size: 16px;
  777.    line-height: 1;
  778.    border: 0;
  779.    border-radius: 0;
  780.    height: 34px;
  781.    -webkit-appearance: none;
  782.    }
  783.  
  784.  .styled-select {
  785.    width: 240px;
  786.    height: 34px;
  787.    overflow: hidden;
  788.    background: (content: '\e808'; ) no-repeat right #fff;
  789.   /* content: '\e808';*/
  790.    border: 1px solid #fff;
  791.    }
  792. div.styled-select .icon-arrow{
  793.     background-color:#e1c88c;
  794.     float:right;
  795.     width:30px;
  796. }
  797. button,
  798. input[type="button"],
  799. input[type="reset"],
  800. input[type="submit"] {
  801.     border: 1px solid;
  802.     border-color: #ccc #ccc #bbb;
  803.     border-radius: 3px;
  804.     background: #e6e6e6;
  805.     box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  806.     color: rgba(0, 0, 0, .8);
  807.     cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
  808.     -webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
  809.     font-size: 12px;
  810.     font-size: 1.2rem;
  811.     line-height: 1;
  812.     padding: .6em 1em .4em;
  813.     text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  814. }
  815.  
  816. button:hover,
  817. input[type="button"]:hover,
  818. input[type="reset"]:hover,
  819. input[type="submit"]:hover {
  820.     border-color: #ccc #bbb #aaa;
  821.     box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
  822. }
  823.  
  824. button:focus,
  825. input[type="button"]:focus,
  826. input[type="reset"]:focus,
  827. input[type="submit"]:focus,
  828. button:active,
  829. input[type="button"]:active,
  830. input[type="reset"]:active,
  831. input[type="submit"]:active {
  832.     border-color: #aaa #bbb #bbb;
  833.     box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
  834. }
  835.  
  836. input[type="checkbox"],
  837. input[type="radio"] {
  838.     padding: 0; /* Addresses excess padding in IE8/9 */
  839. }
  840.  
  841. input[type="search"] {
  842.     -webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
  843.     -webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
  844.     -moz-box-sizing:    content-box;
  845.     box-sizing:         content-box;
  846. }
  847.  
  848. input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
  849.     -webkit-appearance: none;
  850. }
  851.  
  852. button::-moz-focus-inner,
  853. input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
  854.     border: 0;
  855.     padding: 0;
  856. }
  857.  
  858. input[type="text"],
  859. input[type="email"],
  860. input[type="url"],
  861. input[type="password"],
  862. input[type="search"],
  863. textarea {
  864.     color: #666;
  865.     border: 1px solid #ccc;
  866.     border-radius: 3px;
  867. }
  868.  
  869. input[type="text"]:focus,
  870. input[type="email"]:focus,
  871. input[type="url"]:focus,
  872. input[type="password"]:focus,
  873. input[type="search"]:focus,
  874. textarea:focus {
  875.     color: #111;
  876. }
  877.  
  878. input[type="text"],
  879. input[type="email"],
  880. input[type="url"],
  881. input[type="password"],
  882. input[type="search"] {
  883.     padding: 3px;
  884. }
  885.  
  886. textarea {
  887.     overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
  888.     padding-left: 3px;
  889.     vertical-align: top; /* Improves readability and alignment in all browsers */
  890.     width: 100%;
  891. }
  892.  
  893. /*--------------------------------------------------------------
  894. 5.0 Navigation
  895. --------------------------------------------------------------*/
  896. /*--------------------------------------------------------------
  897. 5.1 Links
  898. --------------------------------------------------------------*/
  899. a {
  900.     color: #990000;
  901.     text-decoration: none;
  902. }
  903.  
  904. a:visited {
  905.     color: #990000;
  906. }
  907.  
  908. a:hover,
  909. a:focus,
  910. a:active {
  911.     color: #991110;
  912.     text-decoration: underline;
  913. }
  914.  
  915.  
  916.  
  917. div.more-info div.social > a:visited,
  918. div.more-info div.social > a:hover,
  919. div.more-info div.social > a:active{
  920.     color:fff;
  921.     font-family: 'Pt Sans', sans-serif;
  922.     text-decoration: none;
  923.     font-weight: bold;
  924.     display:block;
  925.     height:20px;
  926. }
  927.  
  928. a.light-link,
  929. a.light-link:visited{
  930.     color:#e1c88c;
  931. }
  932.  
  933.  
  934. a.light-link:hover
  935. a.light-link:focus,
  936. a.light-link:active{
  937.     text-decoration: underline;
  938. }
  939.  
  940. /*--------------------------------------------------------------
  941. 5.2 Menus
  942. --------------------------------------------------------------*/
  943. .menu-top-menu-container,
  944. .menu{
  945. margin:0 auto;
  946. height:32px;
  947. font-size:20px;
  948. color:#fff;
  949. text-transform: uppercase;
  950. }
  951.  
  952. .row .menu-top-menu-container,
  953. .row .menu {
  954.     text-align: center;
  955.     clear: both;
  956.     display: block;
  957.     width:960px;
  958.     margin:0 auto;
  959. }
  960.  
  961. .main-navigation ul {
  962.     display:inline-block;
  963.     list-style: none;
  964.     margin: 0 auto;
  965.     width:auto;
  966.     margin-bottom: 10px;
  967.  
  968. }
  969.  
  970. .main-navigation li {
  971.     float: left;
  972.     position: relative;
  973.     margin:0px 10px;
  974.     font-size:14px;
  975.         letter-spacing: .5px;
  976.  
  977. }
  978.  
  979. .main-navigation a,
  980. .more-info .links a,
  981. .more-info .links a:visited {
  982.     display: inline;
  983.     text-decoration: none;
  984.     color:#fff;
  985.     margin:0px;
  986.     padding:0px;
  987. }
  988.  
  989. .more-info .links{text-align: right}
  990.  
  991.  
  992. .more-info a
  993. {text-align:right;
  994. margin:0px;
  995. padding:0px;}
  996.  
  997. .more-info .social a{
  998.     float:left;
  999.     display:inline-block;
  1000.   width:100%;
  1001.   }
  1002.  
  1003. .main-navigation ul ul {
  1004.     box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  1005.     float: left;
  1006.     position: absolute;
  1007.     top: 1.5em;
  1008.     left: -999em;
  1009.     z-index: 99999;
  1010. }
  1011.  
  1012. .main-navigation ul ul ul {
  1013.     left: -999em;
  1014.     top: 0;
  1015. }
  1016.  
  1017. .main-navigation ul ul a {
  1018.     width: 200px;
  1019. }
  1020.  
  1021. .main-navigation ul ul li {
  1022.  
  1023. }
  1024.  
  1025. .main-navigation li:hover > a {
  1026. }
  1027.  
  1028. .main-navigation ul ul :hover > a {
  1029. }
  1030.  
  1031. .main-navigation ul ul a:hover {
  1032. }
  1033.  
  1034. .main-navigation ul li:hover > ul {
  1035.     left: auto;
  1036. }
  1037.  
  1038. .main-navigation ul ul li:hover > ul {
  1039.     left: 100%;
  1040. }
  1041.  
  1042. .main-navigation .current_page_item a,
  1043. .main-navigation .current-menu-item a {
  1044. }
  1045.  
  1046. .footer-navigation {
  1047.     clear: both;
  1048.     display: block;
  1049.     margin:0 auto;
  1050.     width: 940px;
  1051.     color:#48453f;
  1052.     text-transform: uppercase;
  1053.     margin-top: 4px;
  1054. }
  1055.  
  1056. .footer-navigation ul {
  1057.     list-style: none;
  1058.     margin: 0 auto;
  1059.     padding-left: 0;
  1060.  
  1061. }
  1062.  
  1063. .footer-navigation li {
  1064.     float: left;
  1065.     position: relative;
  1066.     margin:0px 10px;
  1067.     font-size:14px;
  1068.     letter-spacing: 2px;
  1069.     padding:2px;
  1070. }
  1071.  
  1072. .footer-navigation a {
  1073.     display: block;
  1074.     text-decoration: none;
  1075.     color:#fff;
  1076. }
  1077.  
  1078. .footer-navigation ul ul {
  1079.     box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  1080.     float: left;
  1081.     position: absolute;
  1082.     top: 1.5em;
  1083.     left: -999em;
  1084.     z-index: 99999;
  1085. }
  1086.  
  1087. .footer-navigation ul ul ul {
  1088.     left: -999em;
  1089.     top: 0;
  1090. }
  1091.  
  1092. .footer-navigation ul ul a {
  1093.     width: 200px;
  1094. }
  1095.  
  1096. .footer-navigation ul ul li {
  1097.  
  1098. }
  1099.  
  1100. .footer-navigation li:hover > a {
  1101. }
  1102.  
  1103. .footer-navigation ul ul :hover > a {
  1104. }
  1105.  
  1106. .footer-navigation ul ul a:hover {
  1107. }
  1108.  
  1109. .footer-navigation ul li:hover > ul {
  1110.     left: auto;
  1111. }
  1112.  
  1113. .footer-navigation ul ul li:hover > ul {
  1114.     left: 100%;
  1115. }
  1116.  
  1117. .footer-navigation .current_page_item a,
  1118. .footer-navigation .current-menu-item a {
  1119. }
  1120.  
  1121. /* Small menu */
  1122. .menu-toggle {
  1123.     display: none;
  1124. }
  1125.  
  1126. @media screen and (max-width: 600px) {
  1127.     .menu-toggle,
  1128.     .main-navigation.toggled .nav-menu {
  1129.         display: block;
  1130.     }
  1131.  
  1132.     .main-navigation ul {
  1133.         display: none;
  1134.     }
  1135. }
  1136.  
  1137. .site-main .comment-navigation,
  1138. .site-main .paging-navigation,
  1139. .site-main .post-navigation {
  1140.     margin: 0 0 1.5em;
  1141.     overflow: hidden;
  1142. }
  1143.  
  1144.  
  1145. .comment-navigation .nav-previous,
  1146. .paging-navigation .nav-previous,
  1147. .post-navigation .nav-previous {
  1148.     float: left;
  1149.     width: 50%;
  1150. }
  1151.  
  1152. .comment-navigation .nav-next,
  1153. .paging-navigation .nav-next,
  1154. .post-navigation .nav-next {
  1155.     float: right;
  1156.     text-align: right;
  1157.     width: 50%;
  1158. }
  1159.  
  1160. /*--------------------------------------------------------------
  1161. 6.0 Accessibility
  1162. --------------------------------------------------------------*/
  1163. /* Text meant only for screen readers */
  1164. .screen-reader-text {
  1165.     clip: rect(1px, 1px, 1px, 1px);
  1166.     position: absolute !important;
  1167.     height: 1px;
  1168.     width: 1px;
  1169.     overflow: hidden;
  1170. }
  1171.  
  1172. .screen-reader-text:hover,
  1173. .screen-reader-text:active,
  1174. .screen-reader-text:focus {
  1175.     background-color: #f1f1f1;
  1176.     border-radius: 3px;
  1177.     box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  1178.     clip: auto !important;
  1179.     color: #21759b;
  1180.     display: block;
  1181.     font-size: 14px;
  1182.     font-weight: bold;
  1183.     height: auto;
  1184.     left: 5px;
  1185.     line-height: normal;
  1186.     padding: 15px 23px 14px;
  1187.     text-decoration: none;
  1188.     top: 5px;
  1189.     width: auto;
  1190.     z-index: 100000; /* Above WP toolbar */
  1191. }
  1192.  
  1193. /*--------------------------------------------------------------
  1194. 7.0 Alignments
  1195. --------------------------------------------------------------*/
  1196. .alignleft {
  1197.     display: inline;
  1198.     float: left;
  1199.     margin-right: 1.5em;
  1200. }
  1201.  
  1202. .alignright {
  1203.     display: inline;
  1204.     float: right;
  1205.     margin-left: 1.5em;
  1206. }
  1207.  
  1208. .aligncenter {
  1209.     clear: both;
  1210.     display: block;
  1211.     margin: 0 auto;
  1212. }
  1213.  
  1214. /*--------------------------------------------------------------
  1215. 8.0 Clearings
  1216. --------------------------------------------------------------*/
  1217. .clear:before,
  1218. .clear:after,
  1219. .entry-content:before,
  1220. .entry-content:after,
  1221. .comment-content:before,
  1222. .comment-content:after,
  1223. .site-header:before,
  1224. .site-header:after,
  1225. .site-content:before,
  1226. .site-content:after,
  1227. .site-footer:before,
  1228. .site-footer:after {
  1229.     content: '';
  1230.     display: table;
  1231. }
  1232.  
  1233. .clear:after,
  1234. .entry-content:after,
  1235. .comment-content:after,
  1236. .site-header:after,
  1237. .site-content:after,
  1238. .site-footer:after {
  1239.     clear: both;
  1240. }
  1241.  
  1242. /*--------------------------------------------------------------
  1243. 9.0 Widgets
  1244. --------------------------------------------------------------*/
  1245. .widget {
  1246.     margin: 0 0 1.5em;
  1247. }
  1248.  
  1249. /* Make sure select elements fit in widgets */
  1250. .widget select {
  1251.     max-width: 100%;
  1252. }
  1253.  
  1254. /* Search widget */
  1255. .widget_search .search-submit {
  1256.     display: none;
  1257.  
  1258. }
  1259.  
  1260.  
  1261. h1.widget-title,
  1262. h3.widget{
  1263. color: #AF0102;
  1264. text-transform: uppercase;
  1265. font-size: 15px;
  1266. margin-left: 8px;
  1267. font-family: 'Open Sans', sans-serif;
  1268. }
  1269. /*--------------------------------------------------------------
  1270. 10.0 Content
  1271. --------------------------------------------------------------*/
  1272. /*--------------------------------------------------------------
  1273. 10.1 Posts and pages
  1274. --------------------------------------------------------------*/
  1275. .sticky {
  1276.     display: block;
  1277. }
  1278.  
  1279. .hentry {
  1280.     margin: 0 0 1.5em;
  1281. }
  1282.  
  1283. .byline,
  1284. .updated:not(.published) {
  1285.     display: none;
  1286. }
  1287.  
  1288. .single .byline,
  1289. .group-blog .byline {
  1290.     display: inline;
  1291. }
  1292.  
  1293. .page-content,
  1294. .entry-content,
  1295. .entry-summary {
  1296.     margin: 1.5em 0 0;
  1297. }
  1298.  
  1299. .page-links {
  1300.     clear: both;
  1301.     margin: 0 0 1.5em;
  1302. }
  1303. .site-content{
  1304. display:block;
  1305. margin:0 auto;
  1306. /*width:960px;*/
  1307. }
  1308.  
  1309. .front-site-content{
  1310. display:block;
  1311. margin:0 auto;
  1312. width:960px;
  1313. }
  1314.  
  1315.  
  1316. /*--------------------------------------------------------------
  1317. Program pages
  1318. --------------------------------------------------------------*/
  1319. #primary{
  1320. padding-top:10px;
  1321. /*width:960px;*/}
  1322. #main div.program-header{
  1323.       background-repeat: no-repeat;
  1324.     background-position: right top;
  1325.     background-color:#333;
  1326. }
  1327.  
  1328. #togglepanels ul li{
  1329.     border: 1px solid black;
  1330.     width:100%;
  1331.     margin-top:0px;
  1332.  
  1333.  
  1334. }
  1335. #togglepanels h3 {
  1336.     font-family: 'Open Sans', sans-serif;
  1337.     font-weight: bolder;
  1338.  
  1339.         width:100%;
  1340.         padding:4px;
  1341.     padding-left:10px;
  1342.     margin-right:25px;
  1343.     cursor:pointer;
  1344. }
  1345. #togglepanels > div h3 > span,
  1346. #togglepanels > div > div p
  1347. {
  1348.     padding-left:18px;
  1349.     padding-top:0px;
  1350.     margin-right:25px;
  1351.     }
  1352. #togglepanels > div > div p
  1353. {padding-left:20px;}
  1354. #togglepanels span.ui-accordian-content{
  1355.  border-bottom: 1px solid #ccc;
  1356. }
  1357. #togglepanels h3 .icon-expand,
  1358. #togglepanels h3 .icon-close{
  1359. margin-left:-15px;
  1360. margin-right:10px;
  1361.  
  1362. }
  1363. #togglepanels p{
  1364.     margin-left:34px;
  1365.     margin-right:25px;
  1366. }
  1367.  
  1368. #main .row{
  1369.     margin:0 auto;
  1370.     width:960px;
  1371. }
  1372.  
  1373. .program-header{
  1374. border:1px solid black;
  1375. height:220px;
  1376. width:940px;
  1377. margin:0 auto;
  1378. overflow:hidden;}
  1379.  
  1380. .program-header.billboard{
  1381. margin-top:15px}
  1382. .site-search h1,
  1383. .program-header,
  1384. .entry-content h1{
  1385. color:#fff;
  1386. font-size:40px;
  1387. font-family: 'PT Sans', sans-serif;
  1388. line-height:51px;
  1389. font-weight:600;
  1390. margin:0px;
  1391. margin-top:-14px;
  1392. }
  1393.  
  1394. .site-search h1{
  1395.     font-size: 25px;
  1396.  
  1397.     margin:10px;
  1398.     margin:0;
  1399.         margin-left: 25px;
  1400.  
  1401. }
  1402. .posted-on{
  1403.     margin:0px;
  1404.     margin-left: 25px;
  1405. }
  1406. .entry-content h1{
  1407.     color:#000;
  1408.     text-transform: uppercase;
  1409.     font-family: 'Open Sans', sans-serif;
  1410.     margin-left:10px;
  1411.     margin-top:5px;
  1412. }
  1413.  
  1414. .program-header{
  1415.     margin:0 auto;
  1416. }
  1417. .program-header p{
  1418. color:#fff;
  1419. float:left;
  1420. width:65%;
  1421. }
  1422.  
  1423. #main.site-search,
  1424. .entry-content,
  1425. .entry-footer,
  1426. #comments{
  1427. -webkit-box-shadow: 0px 0px 25px -5px rgba(0,0,0,1);
  1428. -moz-box-shadow: 0px 0px 25px -5px rgba(0,0,0,1);
  1429. box-shadow: 0px 0px 25px -5px rgba(0,0,0,1);
  1430. background-color:#fff;
  1431. width:660px;
  1432. float:left;
  1433. clear:none;
  1434. padding-top:10px;
  1435. padding-bottom:10px;
  1436. margin-bottom:50px;
  1437. min-height: 400px;
  1438. }
  1439. #main.site-search{
  1440.     width:100%;
  1441. }
  1442. main.site-blog{width:100%;}
  1443.  
  1444. .site-program.entry-header,
  1445. .site-program .entry-title
  1446. {display:none;clear:none;}
  1447.  
  1448. .site-search,
  1449. .entry-content p,
  1450. .site-search p {
  1451.     margin:0px;
  1452. margin-left:12px;}
  1453. .site-search h1{
  1454.     color:#000;
  1455. }
  1456. .site-search .page-content.widget{
  1457.     margin:0 auto;
  1458.     width:50%;
  1459. }
  1460. .entry-content h3{
  1461. color:#AF0102;
  1462. text-transform:uppercase;
  1463. font-size:15px;
  1464. margin-left:8px;
  1465. font-family: 'PT Sans', sans-serif;
  1466. }
  1467. span.edit-link, .entry-footer{
  1468. display: none;
  1469. }
  1470. #main div.entry-content{margin-top:20px;}
  1471.  
  1472.  
  1473. #secondary{
  1474. width:260px;
  1475. display:block;
  1476. float:left;
  1477. color:#990000;
  1478. margin-left:20px;
  1479. margin-top:-27px;
  1480. margin-bottom:50px;
  1481. }
  1482.  
  1483. #secondary .widget{
  1484.     background-color: #fff;
  1485.     -webkit-box-shadow: 0px 0px 25px -5px rgba(0,0,0,1);
  1486.   -moz-box-shadow: 0px 0px 25px -5px rgba(0,0,0,1);
  1487.   box-shadow: 0px 0px 25px -5px rgba(0,0,0,1);
  1488. }
  1489.  
  1490. #secondary div.widget ul li a:link,
  1491. #secondary div .widget ul li a:visited,
  1492. {
  1493.     font-family: 'PT Sans', sans-serif;
  1494. text-decoration:none;
  1495. }
  1496.  
  1497. .get-started-form form{
  1498.     margin-left:5px;
  1499.     display:table;
  1500. }
  1501. .get-started-form h1{
  1502.     text-transform: uppercase;
  1503. }
  1504. /*--------------------------------------------------------------
  1505. 10.2 Asides
  1506. --------------------------------------------------------------*/
  1507. .blog .format-aside .entry-title,
  1508. .archive .format-aside .entry-title {
  1509.     display: none;
  1510. }
  1511.  
  1512. /*--------------------------------------------------------------
  1513. 10.3 Comments
  1514. --------------------------------------------------------------*/
  1515. .comment-content a {
  1516.     word-wrap: break-word;
  1517. }
  1518.  
  1519. .bypostauthor {
  1520.     display: block;
  1521. }
  1522.  
  1523. /*--------------------------------------------------------------
  1524. 11.0 Infinite scroll
  1525. --------------------------------------------------------------*/
  1526. /* Globally hidden elements when Infinite Scroll is supported and in use. */
  1527. .infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
  1528. .infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
  1529.     display: none;
  1530. }
  1531.  
  1532. /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
  1533. .infinity-end.neverending .site-footer {
  1534.     display: block;
  1535. }
  1536.  
  1537. /*--------------------------------------------------------------
  1538. 12.0 Media
  1539. --------------------------------------------------------------*/
  1540. .page-content img.wp-smiley,
  1541. .entry-content img.wp-smiley,
  1542. .comment-content img.wp-smiley {
  1543.     border: none;
  1544.     margin-bottom: 0;
  1545.     margin-top: 0;
  1546.     padding: 0;
  1547. }
  1548.  
  1549. /* Make sure embeds and iframes fit their containers */
  1550. embed,
  1551. iframe,
  1552. object {
  1553.     max-width: 100%;
  1554. }
  1555.  
  1556. /*----Blog ---*/
  1557. #main div.blog-header{
  1558.       background-image: url('http://placekitten.com/610/160/');
  1559.       background-repeat: no-repeat;
  1560.     background-position: right top;
  1561.     background-color:#000;
  1562.     height:160px;
  1563.     width:660px;
  1564.  
  1565. }
  1566.  
  1567. /*--------------------------------------------------------------
  1568. 12.1 Captions
  1569. --------------------------------------------------------------*/
  1570. .wp-caption {
  1571.     margin-bottom: 1.5em;
  1572.     max-width: 100%;
  1573. }
  1574.  
  1575. .wp-caption img[class*="wp-image-"] {
  1576.     display: block;
  1577.     margin: 0 auto;
  1578. }
  1579.  
  1580. .wp-caption-text {
  1581.     text-align: center;
  1582. }
  1583.  
  1584. .wp-caption .wp-caption-text {
  1585.     margin: 0.8075em 0;
  1586. }
  1587.  
  1588. /*--------------------------------------------------------------
  1589. 12.2 Galleries
  1590. --------------------------------------------------------------*/
  1591. .gallery {
  1592.     margin-bottom: 1.5em;
  1593. }
  1594.  
  1595. .gallery-item {
  1596.     display: inline-block;
  1597.     text-align: center;
  1598.     vertical-align: top;
  1599.     width: 100%;
  1600. }
  1601.  
  1602. .gallery-columns-2 .gallery-item {
  1603.     max-width: 50%;
  1604. }
  1605.  
  1606. .gallery-columns-3 .gallery-item {
  1607.     max-width: 33.33%;
  1608. }
  1609.  
  1610. .gallery-columns-4 .gallery-item {
  1611.     max-width: 25%;
  1612. }
  1613.  
  1614. .gallery-columns-5 .gallery-item {
  1615.     max-width: 20%;
  1616. }
  1617.  
  1618. .gallery-columns-6 .gallery-item {
  1619.     max-width: 16.66%;
  1620. }
  1621.  
  1622. .gallery-columns-7 .gallery-item {
  1623.     max-width: 14.28%;
  1624. }
  1625.  
  1626. .gallery-columns-8 .gallery-item {
  1627.     max-width: 12.5%;
  1628. }
  1629.  
  1630. .gallery-columns-9 .gallery-item {
  1631.     max-width: 11.11%;
  1632. }
  1633.  
  1634. .gallery-caption {
  1635.     display: block;
  1636. }
  1637. /*--- Responsive --*
  1638. /*  Tablet Layout: 768px. */
  1639. @media only screen and (min-width: 768px) and (max-width: 991px) {
  1640. }
  1641. /*  Mobile Layout: 320px. */
  1642. @media only screen and (max-width: 767px) {
  1643. }
  1644. /*  Wide Mobile Layout: 480px. */
  1645. @media only screen and (min-width: 480px) and (max-width: 767px) {
  1646. }
  1647.  
  1648. /*  Tablet Layout: 768px. */
  1649. @media only screen and (min-width: 768px) and (max-width: 991px) {
  1650. .hfeed{}
  1651. .site-header{width:100%;padding:0 10%;}
  1652. .site-main{width:100%;padding:0;overflow:auto;}
  1653. .content-area{width:63%;padding:0;float:left;display:inline;}
  1654. .widget-area{width:35%;padding:0;float:right;display:inline;}
  1655. .site-footer{width:100%;padding:0;}
  1656. }
  1657. /*  Mobile Layout: 320px. */
  1658. @media only screen and (max-width: 767px) {
  1659. .hfeed{width:100%;padding:0 10%;}
  1660. .site-header{width:100%;padding:0;}
  1661. .site-main{width:100%;padding:0;}
  1662. .content-area{width:100%;padding:0;}
  1663. .widget-area{width:100%;padding:0;}
  1664. .site-footer{width:100%;padding:0;}
  1665. }
  1666. /*  Wide Mobile Layout: 480px. */
  1667. @media only screen and (min-width: 480px) and (max-width: 767px) {
  1668. .hfeed{width:100%;padding:0 10%;}
  1669. .site-header{width:100%;padding:0;}
  1670. .site-main{width:100%;padding:0;}
  1671. .content-area{width:100%;padding:0;}
  1672. .widget-area{width:100%;padding:0;}
  1673. .site-footer{width:100%;padding:0;}
  1674. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement