Guest User

Untitled

a guest
Dec 16th, 2014
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 17.58 KB | None | 0 0
  1. */
  2.  @import url("css/mix.css");
  3.  @import url("css/font-awesome.min.css");
  4.  body{
  5.  background: #dddddd;
  6.  font-size:14px;
  7.  line-height:22px;
  8.  font-family: Arial, Helvetica, sans-serif;
  9.  color:#111111;
  10.  background-size: cover;
  11.  }
  12.  #wrapper{}
  13.  #wrapper_inner{ position:relative; display:block; width:100%; height:100%; float:left; }
  14.  
  15.  h2{ font-size:25px; line-height:30px; }
  16.  h3{ font-size:20px; line-height:26px; }
  17.  
  18.  /* Short hand CSS Style
  19.  ===============================================================*/
  20.  .radius{
  21.  -webkit-border-radius: 4px;
  22.  -moz-border-radius: 4px;
  23.  border-radius: 4px;
  24.  }
  25.  
  26.  .radius_buttom{
  27.  -moz-border-radius-bottomright: 4px;
  28.  -webkit-border-bottom-right-radius: 4px;
  29.  border-bottom-right-radius: 4px;
  30.  -moz-border-radius-bottomleft: 4px;
  31.  -webkit-border-bottom-left-radius: 4px;
  32.  border-bottom-left-radius: 4px;
  33.  }
  34.  
  35.  .radius_top{
  36.  -moz-border-radius-topleft: 4px;
  37.  -webkit-border-top-left-radius: 4px;
  38.  border-top-left-radius: 4px;
  39.  -moz-border-radius-topright: 4px;
  40.  -webkit-border-top-right-radius: 4px;
  41.  border-top-right-radius: 4px;
  42.  }
  43.  
  44.  .shadow{
  45.  -webkit-box-shadow: 0px 4px 6px rgba(50, 50, 50, 0.32);
  46.  -moz-box-shadow: 0px 4px 6px rgba(50, 50, 50, 0.32);
  47.  box-shadow: 0px 4px 6px rgba(50, 50, 50, 0.32);
  48.  }
  49.  
  50.  .dea{
  51.  background:#111111;
  52.  height:2px;
  53.  width:40px;
  54.  margin:0 auto;
  55.  margin-bottom:20px;
  56.  margin-top:20px;
  57.  }
  58.  
  59.  .con_style{
  60.  background:#FFF;
  61.  width:790px;
  62.  margin:0 auto;
  63.  }
  64.  
  65.  .content_inner{ margin:0 auto; width:74%; margin-bottom:50px; margin-top:20px; }
  66.  
  67.  .margin_top{ margin-top:20px; }
  68.  
  69.  /* logo_area
  70.  ===============================================================*/
  71.  .logo_area{
  72.  width:446px;
  73.  height:210px;
  74.  margin:0 auto;
  75.  background:#FFF;
  76.  margin-top:10px;
  77.  text-align:center;
  78.  
  79.  -moz-border-radius-topleft: 230px;
  80.  -webkit-border-top-left-radius: 230px;
  81.  border-top-left-radius: 230px;
  82.  -moz-border-radius-topright: 230px;
  83.  -webkit-border-top-right-radius: 230px;
  84.  border-top-right-radius: 230px;
  85.  margin-bottom:-30px;
  86.  }
  87.  
  88.  #logo h1{
  89.  font-family: Arial, Helvetica, sans-serif;
  90.  font-size:40px;
  91.  line-height:44px;
  92.  }
  93.  #logo h1 a{ color:#111111; text-decoration:none; }
  94.  #logo span{
  95.  text-transform:uppercase;
  96.  letter-spacing:3px;
  97.  font-size:12px;
  98.  font-weight:400;
  99.  }
  100.  
  101.  .logo_area .gap{ height:70px !important; }
  102.  
  103.  /* header_area
  104.  ===============================================================*/
  105.  .header_area{
  106.  text-align:center;
  107.  }
  108.  
  109.  /* main_menu
  110.  --------------------------------------------------------*/
  111.  .main_menu{ margin:0 auto; margin-top:30px; width:90%; border-bottom:solid 1px rgba(0,0,0,.05);}
  112.  #nav{ margin:0 auto; float:none; display: inline-block; margin-bottom:-6px; }
  113.  #nav li{ margin:0; padding:0; }
  114.  #nav li a{
  115.  font-size:10px;
  116.  color:#111111;
  117.  text-transform:uppercase;
  118.  letter-spacing:1px;
  119.  margin:0;
  120.  padding:0;
  121.  padding:17px 30px 12px 30px;
  122.  margin:0 .5px;
  123.  background:#FFF;
  124.  font-weight:400;
  125.  }
  126.  #nav li.current-menu-item a,
  127.  #nav li a:hover{
  128.  color:#111111;
  129.  background: rgba(0,0,0,.05);
  130.  }
  131.  
  132.  /* page_title
  133.  --------------------------------------------------------*/
  134.  .page_title h1{ font-size:24px; line-height:44px; font-weight:bold; margin-top:30px; margin-bottom:0; }
  135.  .page_title span{ font-size:15px; font-style:italic; color:#444444; line-height:28px; }
  136.  
  137.  /* content_area
  138.  ===============================================================*/
  139.  
  140.  /* social_bar
  141.  ===============================================================*/
  142.  .social_bar{position:fixed;top:10px;left:10px;width:30px; }
  143.  .logged-in.admin-bar .social_bar{ top:40px; }
  144.  .social_bar a{
  145.  background:rgba(0, 0, 0, .6);
  146.  height: 50px; width:52px;
  147.  display:inline-block;
  148.  margin-bottom:1.5px;
  149.  text-align:center;
  150.  line-height:52px;
  151.  color:#FFF !important;
  152.  font-size: 16px;
  153.  }
  154.  .social_bar a:hover{background:rgba(0, 0, 0, .8); color:#FFF;}
  155.  .social_bar a img{margin-top:16px;}
  156.  
  157.  /* copyright
  158.  ===============================================================*/
  159.  .copyright{ text-align:center; margin-bottom:16px; margin-top:16px; color:#111111; font-size:13px; font-weight:bold; }
  160.  .copyright span{ font-family: Arial, Helvetica, sans-serif; font-size:16px; }
  161.  
  162.  /* paginate
  163.  ===============================================================*/
  164.  .paginate{ width:100%; padding-bottom:10px; padding-top:10px; text-align:center; }
  165.  .paginate a{ text-decoration:none; color:#111111; padding:0 10px; }
  166.  .paginate .current{ color:#CCC; }
  167.  .paginate a.next{ background:url(images/right-arrow.png) no-repeat center center; float:right; text-indent:-9999px; display:inline-block; width:30px; }
  168.  .paginate a.prev{ background:url(images/left-arrow.png) no-repeat center center; float:left; text-indent:-9999px; display:inline-block; width:30px; }
  169.  
  170.  /* WPML
  171.  ===============================================================*/
  172.  .digita_wpml_flags{ width:18px; position:fixed; padding:8px 8px 5px 8px; background:rgba(0,0,0, 0.3); border-radius: 2px; top:30%; right:10px; }
  173.  .logged-in.admin-bar.page-template-template-home-php .digita_wpml_flags{ top:30%; right:10px; }
  174.  
  175.  .digita_wpml_flags a, .digita_wpml_flags a img{ line-height:0; }
  176.  .digita_wpml_flags a img{ border:solid 1px rgba(255,255,255, 0.3); }
  177.  
  178.  /* Supersized
  179.  ===============================================================*/
  180.  #prevslide{
  181.  position:fixed;
  182.  /*background:#FFF url(images/left-arrow.png) no-repeat center center;*/
  183.  background:#FFF;
  184.  display:block;
  185.  height:50px;
  186.  width:50px;
  187.  color:rgba(17, 17, 17, 0.44);
  188.  cursor:pointer;
  189.  opacity:1 !important;
  190.  text-align:center;
  191.  line-height:50px;
  192.  
  193.  }
  194.  #nextslide{
  195.  position:fixed;
  196.  /*background:#FFF url(images/right-arrow.png) no-repeat center center; */
  197.  background:#FFF;
  198.  display:block;
  199.  height:50px;
  200.  width:50px;
  201.  color:rgba(17, 17, 17, 0.44);
  202.  cursor:pointer;
  203.  opacity:1 !important;
  204.  text-align:center;
  205.  line-height:50px;
  206.  }
  207.  #prevslide:hover, #nextslide:hover{ color:rgba(17, 17, 17, 1); }
  208.  
  209.  #nextslide.inner_page{ top:10px; right:10px; }
  210.  #prevslide.inner_page{ top:10px; right:61px; }
  211.  
  212.  .logged-in.admin-bar #nextslide.inner_page{ top:40px; }
  213.  .logged-in.admin-bar #prevslide.inner_page{ top:40px; }
  214.  
  215.  #progress-back{ z-index:5; position:fixed; bottom:0; left:0; height:8px; width:100%; background:url('img/progress-back.png') repeat-x; }
  216.  #progress-bar{ position:relative; height:8px; width:100%; background:url('img/progress-bar.png') repeat-x; }
  217.  
  218.  /* Blog
  219.  ===============================================================*/
  220.  .blog_item h2{display:block; font-weight:300; text-align:center; margin-bottom:11px; }
  221.  .blog_item h2 a{ color:#111111; text-decoration:none; }
  222.  
  223.  .featured{ margin-left:8px; margin-right:8px; padding-top:8px; }
  224.  
  225.  .blog_item .date{ font-family: 'Old Standard TT' Arial, Helvetica, sans-serif; font-size:14px; font-style:italic; color:#111111; margin-bottom:15px; display:block; }
  226.  .blog_item .date a{ color:#111111; text-decoration:none; }
  227.  
  228.  .tags_area{ color:#999; }
  229.  .tags_area strong{ color:#111111; }
  230.  .tags_area a{ text-decoration:none; color:#999; }
  231.  
  232.  .author_bio{
  233.  background:#FFF;
  234.  margin-bottom:28px;
  235.  padding-bottom:40px;
  236.  padding-top:50px;
  237.  }
  238.  .author_bio .author_bio_inner{
  239.  margin:0 auto;
  240.  }
  241.  .author_bio .author_bio_inner h3{
  242.  display:inline-block;
  243.  }
  244.  .author_bio .author_bio_inner .avatar{
  245.  margin-right:16px;
  246.  margin-bottom:16px;
  247.  float:left;
  248.  margin-top:8px;
  249.  }
  250.  .author_bio .author_bio_inner .author_text{
  251.  
  252.  }
  253.  
  254.  /* Gallery
  255.  ===============================================================*/
  256.  .gallery_area{ margin:0 auto; width:790px; }
  257.  .gallery_area_inner{ float:left; margin-left:-20px; }
  258.  .gallery_item a{ display:inline-block; }
  259.  .gallery_item a .overly{ z-index:99; height:228px; width:233px; background:rgba(0,0,0,.5); display:inline-block; position:absolute; text-align:center; display:none; color:#FFF; font-size:16px; text-transform:uppercase; line-height:20px;}
  260.  .gallery_item a .overly .clear{ height:110px; }
  261.  .gallery_item:hover a .overly{ display:block; }
  262.  .gallery_item{ background:#FFF; padding:8px; display:inline-block; float:left; margin-left:20px; margin-top:20px; line-height:0; position:relative; }
  263.  .gallery_item img{ width: 233px; }
  264.  
  265.  .g_img img{ float:left; margin:5px; height:157px; width:157px; line-height:0; border:solid 5px rgba(0,0,0,0.03); -webkit-transition: 250ms linear all; -moz-transition: 250ms linear all; transition: 250ms linear all; }
  266.  .g_img img:hover{ border:solid 5px rgba(0,0,0,0.10); opacity:.8; }
  267.  
  268.  /* Contact
  269.  ===============================================================*/
  270.  .conatct_page{
  271.  background: #f5f2e9 url(images/bg-airmail-5.jpg) 0 0 repeat;
  272.  }
  273.  .conatct_page .contact_inner {
  274.  background:#FFF;
  275.  margin:8px;
  276.  display:block;
  277.  }
  278.  
  279.  /* Contact Form 7
  280.  ===============================================================*/
  281.  .wpcf7-form input[type="text"],
  282.  .wpcf7-form input[type="email"] {
  283.  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  284.  -moz-box-sizing: border-box; /* Firefox, other Gecko */
  285.  box-sizing: border-box; /* Opera/IE 8+ */
  286.  width: 100%;
  287.  max-width: 100%;
  288.  margin: 5px 0 0 0;
  289.  height:40px;
  290.  font-family:'Old Standard TT' Arial, Helvetica, sans-serif;
  291.  font-size:18px;
  292.  font-style:italic;
  293.  color:#a4a4a4;
  294.  }
  295.  
  296.  .wpcf7-form textarea {
  297.  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  298.  -moz-box-sizing: border-box; /* Firefox, other Gecko */
  299.  box-sizing: border-box; /* Opera/IE 8+ */
  300.  width: 100%;
  301.  max-width: 100%;
  302.  height:150px;
  303.  margin: 5px 0 0 0;
  304.  font-family:'Old Standard TT' Arial, Helvetica, sans-serif;
  305.  font-size:18px;
  306.  font-style:italic;
  307.  color:#a4a4a4;
  308.  
  309.  }
  310.  
  311.  .wpcf7-form input[type="submit"]{
  312.  font-size:18px;
  313.  font-style:italic;
  314.  padding-left:20px;
  315.  padding-right:20px;
  316.  background:#111111;
  317.  }
  318.  
  319.  .wpcf7-form select {
  320.  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  321.  -moz-box-sizing: border-box; /* Firefox, other Gecko */
  322.  box-sizing: border-box; /* Opera/IE 8+ */
  323.  max-width: 100%;
  324.  margin: 5px 0 0 0;
  325.  padding:8px;
  326.  }
  327.  
  328.  .wpcf7-form input[type="checkbox"] { width: auto }
  329.  
  330.  .wpcf7 form.wpcf7-form p {
  331.  font-weight: bold;
  332.  margin: 0 0 10px 0 !important;
  333.  }
  334.  
  335.  .wpcf7-list-item-label { font-weight: normal }
  336.  .wpcf7-response-output { display: none }
  337.  .wpcf7-form .invalid { color: #bf1515 !important }
  338.  .wpcf7-not-valid { border: 1px solid #bf1515 !important }
  339.  .wpcf7 span.wpcf7-not-valid-tip { display: none }
  340.  
  341.  div.wpcf7-response-output {
  342.  margin: 0px !important;
  343.  padding: 5px 10px !important;
  344.  }
  345.  
  346.  div.wpcf7-mail-sent-ok,
  347.  div.wpcf7-mail-sent-ng,
  348.  div.wpcf7-spam-blocked,
  349.  div.wpcf7-validation-errors{
  350.  position:relative;
  351.  border:1px solid #ddd !important;
  352.  display:block;
  353.  background-image:linear-gradient(bottom, #F7F7F7 0%, #FFFFFF 100%);
  354.  background-image:-o-linear-gradient(bottom, #F7F7F7 0%, #FFFFFF 100%);
  355.  background-image:-moz-linear-gradient(bottom, #F7F7F7 0%, #FFFFFF 100%);
  356.  background-image:-webkit-linear-gradient(bottom, #F7F7F7 0%, #FFFFFF 100%);
  357.  background-image:-ms-linear-gradient(bottom, #F7F7F7 0%, #FFFFFF 100%);
  358.  background-color:#F7F7F7;
  359.  -webkit-border-radius:3px;
  360.  -moz-border-radius:3px;
  361.  border-radius:3px;
  362.  -webkit-box-shadow:0px 1px 1px 0px rgba(180, 180, 180, 0.1);
  363.  -moz-box-shadow:0px 1px 1px 0px rgba(180, 180, 180, 0.1);
  364.  box-shadow:0px 1px 1px 0px rgba(180, 180, 180, 0.1);
  365.  font-weight:bold;
  366.  padding:10px 40px !important;
  367.  text-align:center;
  368.  margin-bottom:20px;
  369.  }
  370.  
  371.  div.wpcf7-mail-sent-ok {
  372.  background-image: linear-gradient(bottom, #e9f2d2 0%, #FFFFFF 100%);
  373.  background-image: -o-linear-gradient(bottom, #e9f2d2 0%, #FFFFFF 100%);
  374.  background-image: -moz-linear-gradient(bottom, #e9f2d2 0%, #FFFFFF 100%);
  375.  background-image: -webkit-linear-gradient(bottom, #e9f2d2 0%, #FFFFFF 100%);
  376.  background-image: -ms-linear-gradient(bottom, #e9f2d2 0%, #FFFFFF 100%);
  377.  background-color: #e9f2d2;
  378.  border-color: #c0da66 !important;
  379.  color: #88b12b;
  380.  }
  381.  
  382.  div.wpcf7-mail-sent-ng {
  383.  background-image: linear-gradient(bottom, #ffe9e9 0%, #FFFFFF 100%);
  384.  background-image: -o-linear-gradient(bottom, #ffe9e9 0%, #FFFFFF 100%);
  385.  background-image: -moz-linear-gradient(bottom, #ffe9e9 0%, #FFFFFF 100%);
  386.  background-image: -webkit-linear-gradient(bottom, #ffe9e9 0%, #FFFFFF 100%);
  387.  background-image: -ms-linear-gradient(bottom, #ffe9e9 0%, #FFFFFF 100%);
  388.  background-color: #ffe9e9;
  389.  border-color: #e99f9f !important;
  390.  color: #d25c5a;
  391.  }
  392.  
  393.  div.wpcf7-spam-blocked {
  394.  background-image: linear-gradient(bottom, #fbf6e3 0%, #FFFFFF 100%);
  395.  background-image: -o-linear-gradient(bottom, #fbf6e3 0%, #FFFFFF 100%);
  396.  background-image: -moz-linear-gradient(bottom, #fbf6e3 0%, #FFFFFF 100%);
  397.  background-image: -webkit-linear-gradient(bottom, #fbf6e3 0%, #FFFFFF 100%);
  398.  background-image: -ms-linear-gradient(bottom, #fbf6e3 0%, #FFFFFF 100%);
  399.  background-color: #fbf6e3;
  400.  border-color: #efd877 !important;
  401.  color: #c4a80a;
  402.  }
  403.  
  404.  div.wpcf7-validation-errors {
  405.  background-image: linear-gradient(bottom, #fbf6e3 0%, #FFFFFF 100%);
  406.  background-image: -o-linear-gradient(bottom, #fbf6e3 0%, #FFFFFF 100%);
  407.  background-image: -moz-linear-gradient(bottom, #fbf6e3 0%, #FFFFFF 100%);
  408.  background-image: -webkit-linear-gradient(bottom, #fbf6e3 0%, #FFFFFF 100%);
  409.  background-image: -ms-linear-gradient(bottom, #fbf6e3 0%, #FFFFFF 100%);
  410.  background-color: #fbf6e3;
  411.  border-color: #efd877 !important;
  412.  color: #c4a80a;
  413.  }
  414.  
  415.  .sticky { background:#CCC; }
  416.  
  417.  ul#supersized li img{ max-width:inherit !important; }
  418.  
  419.  /* Home Template
  420.  --------------------------------------------*/
  421.  .page-template-template-home-php .con_style{ display:none; }
  422.  .home-box-warper{ text-align:center; }
  423.  /*.home-box-warper img{ max-width:100%; width:50%; }*/
  424.  .home-box-warper h1 a{ font-family: Arial, Helvetica, sans-serif; text-decoration:none; color:#000; }
  425.  .home-box-warper span.subtitle { text-transform: uppercase; letter-spacing: 3px; font-size: 12px; font-weight: 400; }
  426.  
  427.  .front_menu{ position:absolute; right:10px; top:10px ; }
  428.  .front_menu #nav li.current-menu-item a,
  429.  .front_menu #nav li a:hover{ background: rgba(255,255,255,.8); }
  430.  .page-template-template-home-php .copyright{ position:fixed; right:10px; bottom:0; }
  431.  
  432.  .page-template-template-home-php #prevslide{ left:10px; bottom:10px !important; top:inherit !important; }
  433.  .page-template-template-home-php #nextslide{ left:61px; bottom:10px !important; top:inherit !important; }
  434.  
  435.  /*--circle--*/
  436.  .home_circle{
  437.  width:446px;
  438.  height:446px;
  439.  background:#FFF;
  440.  margin:0;
  441.  padding:0;
  442.  position:fixed;
  443.  top:50%;
  444.  left:50%;
  445.  margin-top:-211px;
  446.  margin-left:-211px;
  447.  -webkit-border-radius: 230px;
  448.  -moz-border-radius: 230px;
  449.  border-radius: 230px;
  450.  }
  451.  .home_circle .gap{ height:170px !important; }
  452.  
  453.  /*--square--*/
  454.  .home_square {
  455.  width:400px;
  456.  height:380px;
  457.  background:#FFF;
  458.  margin:0;
  459.  padding:0;
  460.  position:fixed;
  461.  top:50%;
  462.  left:50%;
  463.  margin-top:-190px;
  464.  margin-left:-200px;
  465.  }
  466.  .home_square .gap{ height:120px !important; }
  467.  
  468.  /*--rounded--*/
  469.  .home_rounded {
  470.  width:400px;
  471.  height:380px;
  472.  background:#FFF;
  473.  margin:0;
  474.  padding:0;
  475.  position:fixed;
  476.  top:50%;
  477.  left:50%;
  478.  margin-top:-190px;
  479.  margin-left:-200px;
  480.  -webkit-border-radius: 30px;
  481.  -moz-border-radius: 30px;
  482.  border-radius: 30px;
  483.  }
  484.  .home_rounded .gap{ height:120px !important; }
  485.  
  486.  /*--hexagon--*/
  487.  .home_hexagon {
  488.  width:420px;
  489.  height:230px;
  490.  background:#FFF;
  491.  position:fixed;
  492.  top:50%;
  493.  left:50%;
  494.  margin-top:-110px;
  495.  margin-left:-200px;
  496.  }
  497.  .home_hexagon:before {
  498.  content: "";
  499.  position: absolute;
  500.  top: -120px;
  501.  left: 0;
  502.  width: 0;
  503.  height: 0;
  504.  border-left: 210px solid transparent;
  505.  border-right: 210px solid transparent;
  506.  border-bottom: 120px solid #FFF;
  507.  }
  508.  .home_hexagon:after {
  509.  content: "";
  510.  position: absolute;
  511.  bottom: -120px;
  512.  left: 0;
  513.  width: 0;
  514.  height: 0;
  515.  border-left: 210px solid transparent;
  516.  border-right: 210px solid transparent;
  517.  border-top: 120px solid #FFF;
  518.  }
  519.  .home_hexagon .gap{ height:50px !important; }
  520.  
  521.  /*--egg--*/
  522.  .home_egg {
  523.  position:fixed;
  524.  top:50%;
  525.  left:50%;
  526.  margin-top:-200px;
  527.  margin-left:-150px;
  528.  display:block;
  529.  width: 300px;
  530.  height: 400px;
  531.  background-color: #FFF;
  532.  -webkit-border-radius: 63px 63px 63px 63px / 108px 108px 72px 72px;
  533.  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  534.  }
  535.  .home_egg .home-box-inner{ width:80%; margin:0 auto; }
  536.  .home_egg .gap{ height:130px !important; }
  537.  
  538.  /*--image-only--*/
  539.  .home_image-only {
  540.  width:400px;
  541.  margin:0;
  542.  padding:0;
  543.  position:fixed;
  544.  top:50%;
  545.  left:50%;
  546.  margin-top:-190px;
  547.  margin-left:-200px;
  548.  }
  549.  .home_image-only img{ width:100%; }
  550.  .home_image-only .gap{ height:150px !important; }
  551.  
  552. /*--people-iteam--*/
  553.  .people_itam{ width:100%; position:relative; margin-bottom:40px; }
  554.  .people_itam .people_image{ width:299px; height:299px; float:left; display:block; border-radius:50%; overflow:hidden; background-size:cover; background-position:center center; }
  555.  
  556.  .people_itam .people_info{ width:309px; height:309px; display:block; background-color:#111111; text-align:center; position:absolute; right:0px; border-radius:50%; }
  557.  .people_itam .people_info .dea{ background-color:#FFF; height:1px !important; margin-top: 14px;}
  558.  .people_itam .people_info h1 { font-size: 24px; line-height: 36px; font-weight: bold; margin-top: 86px; margin-bottom: 0; color:#FFF; }
  559.  .people_itam .people_info span { font-family: 'Old Standard TT' Arial, Helvetica, sans-serif; font-size:14px; font-style: italic; color:#A3A3A3; line-height: 28px; }
  560.  .people_itam .people_info a{ padding-left:5px; padding-right:5px; display:inline-block; color:#707070; font-size: 20px; }
  561.  .people_itam .people_info a:hover{ color:#CCC; }
  562.  
  563.  .people_itam .people_image.c_right{ float:right; }
  564.  .people_itam .people_info.c_left{ left:0px; }
Advertisement
Add Comment
Please, Sign In to add comment