Correção nos templates

3 participantes

Ver o tópico anterior Ver o tópico seguinte Ir para baixo

Tópico resolvido Correção nos templates

Mensagem por otmundobr 05.07.14 20:20

  • Descrição:
Olá Eu estou com alguns erros no meu tema meu logo não aparece e meu menu de navegação também e tenho outro erro também como na imagem eu quero deixar mais visível aquela parte marcada em vermelhoCorreção nos templates JPGpT1D

  • Informações:
Fórum:http://otland.forumeiros.com/Versão:PUNBB
Tipo:Erros diversosTags:Correção,templates



Última edição por otmundobr em 06.07.14 2:09, editado 1 vez(es)
otmundobr

otmundobr
***

Membro desde : 18/07/2011
Mensagens : 174
Pontos : 289

http://otmundobr.forumeiros.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Correção nos templates

Mensagem por Dr. 05.07.14 21:13

Libere seu fórum por favor, estando ele oculto nos impossibilita de ajudar.

Até mais.
Dr.

Dr.
Hiper Membro

Membro desde : 04/02/2013
Mensagens : 3072
Pontos : 3415

https://ajuda.forumeiros.com/

Ir para o topo Ir para baixo

Membro Entusiasta

Tópico resolvido Re: Correção nos templates

Mensagem por Roevs 05.07.14 21:20

Olá,

Poderia me disponibilizar o seu template "overall_header" e também a sua Folha de estilo CSS

Até
Roevs

Roevs
Membro Entusiasta
Membro Entusiasta

Membro desde : 10/02/2012
Mensagens : 6484
Pontos : 8343

https://www.sololevelingrpg.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Correção nos templates

Mensagem por otmundobr 05.07.14 21:26

@Matheus escreveu:Libere seu fórum por favor, estando ele oculto nos impossibilita de ajudar.

Até mais.

Pronto!
otmundobr

otmundobr
***

Membro desde : 18/07/2011
Mensagens : 174
Pontos : 289

http://otmundobr.forumeiros.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Correção nos templates

Mensagem por otmundobr 05.07.14 21:30

Overrall_Header \/
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" id="min-width" lang="{L_LANG_HTML}" xml:lang="{L_LANG_HTML}" {NAMESPACE_FB_LIKE} {NAMESPACE_FB} {NAMESPACE_BBCODE}>
<head>
   <title>{SITENAME_TITLE}{PAGE_TITLE}</title>
   <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
   <meta http-equiv="content-script-type" content="text/javascript" />
   <meta http-equiv="content-style-type" content="text/css" />
   <!-- BEGIN switch_compat_meta -->
   <meta http-equiv="X-UA-Compatible" content="IE={switch_compat_meta.VERSION}" />
   <!-- END switch_compat_meta -->
   <!-- BEGIN switch_canonical_url -->
   <link rel="canonical" href="{switch_canonical_url.CANONICAL_URL}" />
   <!-- END switch_canonical_url -->
   {META_FAVICO}
   {META}
   {META_FB_LIKE}
   <meta name="title" content="{SITENAME_TITLE}{PAGE_TITLE}" />
   {T_HEAD_STYLESHEET}
   {CSS}
   <link rel="search" type="application/opensearchdescription+xml" href="/improvedsearch.xml" title="{SITENAME}" />
   <link rel="search" type="application/opensearchdescription+xml" href="{URL_BOARD_DIRECTORY}/search/improvedsearch.xml" title="{SEARCH_FORUMS}" />
   <script src="{JQUERY_PATH}" type="text/javascript"></script>
   <script src="{JS_DIR}{L_LANG}.js" type="text/javascript"></script>

   <!-- BEGIN switch_fb_login -->
   <script src="http://connect.facebook.net/{switch_fb_login.FB_LOCAL}/all.js" type="text/javascript"></script>
   <script src="{switch_fb_login.JS_FB_LOGIN}" type="text/javascript"></script>
   <!-- END switch_fb_login -->

   <!-- BEGIN switch_ticker -->
   <link type="text/css" rel="stylesheet" href="{JS_DIR}jquery/ticker/ticker.css" />   
   <script src="{JS_DIR}jquery/ticker/ticker.js" type="text/javascript"></script>
   <!-- END switch_ticker -->

   <!-- BEGIN switch_ticker_new -->
   <script src="{JS_DIR}jquery/jcarousel/jquery.jcarousel.js" type="text/javascript"></script>
   <script type="text/javascript">//<![CDATA[
      /* Definir le sens de direction en fonction du panneau admin */
      var tickerDirParam = "{switch_ticker.DIRECTION}";
      var slid_vert = false;
      var auto_dir = 'next';
      var h_perso = parseInt({switch_ticker.HEIGHT});

      switch( tickerDirParam )
      {
         case 'top' :
            slid_vert = true;
            break;

         case 'left':
            break;

         case 'bottom':
            slid_vert = true;
            auto_dir = 'prev';
            break;

         case 'right':
            auto_dir = 'prev';
            break;

         default:
            slid_vert = true;
      }

      $(document).ready(function() {

         var width_max = $('ul#fa_ticker_content').width();
         var width_item = Math.floor(width_max / {switch_ticker.SIZE});

         if (width_max > 0)
         {
            $('#fa_ticker_content').css('display','block');

            $('ul#fa_ticker_content li').css('float','left').css('list-style','none').width(width_item).find('img').each(function () {
               if ($(this).width() > width_item)
               {
               var ratio      = $(this).width() / width_item;
               var new_height = Math.round($(this).height() / ratio);
               $(this).height(new_height).width(width_item);
               }
            });

            if (slid_vert)
            {
               var height_max = h_perso;

               $('ul#fa_ticker_content li').each( function () {
                  if ($(this).height() > height_max)
                  {
                     height_max = $(this).height();
                  }
               } );

               $('ul#fa_ticker_content').width(width_item).height(height_max).css('marginLeft','auto').css('marginRight','auto');
               $('ul#fa_ticker_content li').height(height_max);
            }

            $('#fa_ticker_content').jcarousel({
                  vertical: slid_vert,
               wrap: 'circular',
               auto: {switch_ticker.STOP_TIME},
               auto_direction: auto_dir,
            scroll: 1,
            size: {switch_ticker.SIZE},
            height_max: height_max,
            animation: {switch_ticker.SPEED}
            });
         }
         else
         {
            $('ul#fa_ticker_content li:not(:first)').css('display','none');
            $('ul#fa_ticker_content li:first').css('list-style','none').css('text-align','center');
         }
      });
   //]]>
   </script>
   <!-- END switch_ticker_new -->

   <script type="text/javascript">
   //<![CDATA[
   jQuery().ready(function(){
      <!-- BEGIN switch_enable_pm_popup -->
         pm = window.open('{U_PRIVATEMSGS_POPUP}', '_faprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');
         if(pm != null) { pm.focus(); }
      <!-- END switch_enable_pm_popup -->
      <!-- BEGIN switch_report_popup -->
         report = window.open('{switch_report_popup.U_REPORT_POPUP}', '_phpbbreport', 'HEIGHT={switch_report_popup.S_HEIGHT},resizable=yes,scrollbars=no,WIDTH={switch_report_popup.S_WIDTH}');
         if(report != null) { report.focus(); }
      <!-- END switch_report_popup -->
      <!-- BEGIN switch_ticker -->
         $(window).load(function() {            
            Ticker.start({
               height : {switch_ticker.HEIGHT},
               spacing : {switch_ticker.SPACING},
               speed : {switch_ticker.SPEED},
               direction : '{switch_ticker.DIRECTION}',
               pause : {switch_ticker.STOP_TIME}
            });
         });
      <!-- END switch_ticker -->
   });

   <!-- BEGIN switch_login_popup -->
      var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = false, logInBackgroundClass = false;
   <!-- END switch_login_popup -->

   <!-- BEGIN switch_login_popup -->
   $(document).ready( function() {
      $(window).resize(function() {
         var windowWidth = document.documentElement.clientWidth;
         var popupWidth = $("#login_popup").width();
         var mypopup = $("#login_popup");

         $("#login_popup").css({
         "left": windowWidth/2 - popupWidth/2
            });
      });
   });
   <!-- END switch_login_popup -->
   //]]>
   </script>
   {GREETING_POPUP}
   <!-- BEGIN switch_ticker_new -->
   <style>
   .jcarousel-skin-tango .jcarousel-item {
      text-align:center;
      width: 10px;
   }

   .jcarousel-skin-tango .jcarousel-item-horizontal {
      margin-right: {switch_ticker.SPACING}px;
   }

   .jcarousel-skin-tango .jcarousel-item-vertical {
      margin-bottom: {switch_ticker.SPACING}px;
   }
   </style>
   <!-- END switch_ticker_new -->
   {HOSTING_JS}
   <!-- BEGIN google_analytics_code -->
   <script type="text/javascript">
   //<![CDATA[
    var _gaq = _gaq || [];
    _gaq.push(["_setAccount", "{G_ANALYTICS_ID}"]);
    _gaq.push(["_trackPageview"]);
   _gaq.push(['_trackPageLoadTime']);

   <!-- BEGIN google_analytics_code_bis -->
   _gaq.push(['b._setAccount', '{G_ANALYTICS_ID_BIS}']);
   _gaq.push(['b._trackPageview']);
   <!-- END google_analytics_code_bis -->

    (function() {
      var ga = document.createElement("script"); ga.type = "text/javascript"; ga.async = true;
      ga.src = ("https:" == document.location.protocol ? "https://ssl" : "http://www") + ".google-analytics.com/ga.js";
      var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(ga, s);
    })();
   //]]>
   </script>
   <!-- END google_analytics_code -->
</head>

<body>
   <!-- BEGIN hitskin_preview -->
   <div id="hitskin_preview" style="display: block;">
      <h1><img src="http://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> <em>Hit</em>skin.com</h1>
      <div class="content">
         <p>
            {hitskin_preview.L_THEME_SITE_PREVIEW}
            <br />
            <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
         </p>
      </div>
   </div>
   <!-- END hitskin_preview -->

   <!-- BEGIN switch_login_popup -->
   <div id="login_popup" class="module main">
      <div id="login_popup_title" class="main-head">
         <div class="h3">{SITENAME}</div>
      </div>
      <div class="main-content">
         {LOGIN_POPUP_MSG}
         <div id="login_popup_buttons">
            <form action="{S_LOGIN_ACTION}" method="get">
               <input type="submit" class="button2" value="{L_LOGIN}" />
               <input type="button" class="button2" value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';" />
               <input id="login_popup_close" type="button" class="button2" value="{L_DONT_DISPLAY_AGAIN}" />
            </form>
         </div>
      </div>
   </div>
   <!-- END switch_login_popup -->

   <a id="top" name="top" accesskey="t"></a>

   <div class="minwidth_IE">
      <div class="layout_IE">
         <div class="container_IE">
            <div class="pun">
               <div id="pun-intro" class="clearfix">
                  <a href="{U_INDEX}" id="pun-logo"><img src="{LOGO}" alt="{L_INDEX}" /></a>

                  <!-- BEGIN switch_h1 -->
                  <div id="pun-title">{switch_h1.MAIN_SITENAME}</div>
                  <!-- END switch_h1 -->

                  <!-- BEGIN switch_desc -->
                  <p id="pun-desc">{switch_desc.SITE_DESCRIPTION}</p>
                  <!-- END switch_desc -->
               </div>
               <div id="pun-head">
                  <div id="pun-navlinks">
                     <ul class="clearfix">
                        <li>{GENERATED_NAV_BAR}</li>
                     </ul>
                  </div>
               </div>

               <!-- BEGIN switch_ticker_new -->
               <div id="fa_ticker_block" style="padding-top:4px;">
                  <div class="module main">
                     <div class="main-content clearfix">
                        <div id="fa_ticker_container">
                           <ul id="fa_ticker_content" class="jcarousel-skin-tango" style="display: none;width: 100%;">
                              <!-- BEGIN ticker_row -->
                              <li>{switch_ticker.ticker_row.ELEMENT}</li>
                              <!-- END ticker_row -->
                           </ul>
                        </div>
                     </div>
                  </div>
               </div>
               <!-- END switch_ticker_new -->

               <!-- BEGIN switch_ticker -->
               <div id="fa_ticker_block" style="padding-top:4px;">
                  <div class="module main">
                     <div class="main-content clearfix">
                        <div id="fa_ticker_container">
                           <div id="fa_ticker" style="height:{switch_ticker.HEIGHT}px;">
                              <div class="fa_ticker_content">
                                 <!-- BEGIN ticker_row -->
                                 <div>{switch_ticker.ticker_row.ELEMENT}</div>
                                 <!-- END ticker_row -->
                              </div>
                           </div>
                        </div>
                     </div>
                  </div>
               </div>
               <!-- END switch_ticker -->

               <div id="page-body">
                  <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
                     <div id="outer-wrapper">
                        <div id="wrapper">
                           <div id="container">
                              <div id="content">
                                 <div id="{ID_LEFT}">
                                    <!-- BEGIN giefmod_index1 -->
                                    {giefmod_index1.MODVAR}
                                    <!-- BEGIN saut -->
                                    <div style="height:{SPACE_ROW}px"></div>
                                    <!-- END saut -->
                                    <!-- END giefmod_index1 -->
                                 </div>
                                 <div id="main">
                                    <div id="main-content">

<!-- BEGIN html_validation -->
                                    </div>
                                 </div>
                              </div>
                           </div>
                        </div>
                     </div>
                  </div>
               </div>
            </div>
         </div>
      </div>
   </div>
</body>
</html>
<!-- END html_validation -->


CSS \/
Código:
body {
background: #EDEFF1 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: #4E565E;
font: normal 11px "Trebuchet MS",tahoma,helvetica,arial,sans-serif;
}

#pun-intro {
  display: none;
}

#pun-navlinks {
  display: none;
}

#pun-announcement {
border-style: 0 px solid;
border-width: 0px;
padding: 1em;
background: white;
}

.pun {
  margin-top:10px;
  background: white;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 5px;
  -moz-box-shadow: rgba(0,0,0,0.1) 0px 1px 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 5px;
  border: 1px solid #D6D8D9;
  margin-bottom: 10px;
}

.pun .main-content {
border: 1px solid #fff;
}

thead {
display: none;
}

fieldset {
-webkit-margin-start: 2px;
-webkit-margin-end: 2px;
-webkit-padding-before: 0.35em;
-webkit-padding-start: 0.75em;
-webkit-padding-end: 0.75em;
-webkit-padding-after: 0.625em;
border: 0px;
border-image: initial;
}
.wrapper {
margin: 0 auto;
min-width: 980px;
max-width: 1600px;
width: 90%;
}

.guestMessage {
    background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/highlight.png") repeat-x scroll 0px 0px rgb(249, 215, 155);
    border: 1px solid rgb(235, 185, 98);
    color: rgb(184, 95, 29);
    font-size: 13px;
    line-height: 140%;
    box-shadow: 0px 1px 4px rgb(253, 229, 187);
    margin:5px;
    margin-bottom: 10px;
    padding: 10px;
    text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.55);
}

#pun-about {
font-size: 0.8em;
text-align: left;
text-shadow: rgba(255, 255, 255, 0.8) 0px 1px 0px;
background: transparent;
border: none;
}

#pun-about form {
display: none;
}

/*help button*/
.pun .main-head a.exthelp, .pun .main-head a.exthelp:link, .pun .main-head a.exthelp:visited {
color: black;
background-image: url(http://cdn2.iconfinder.com/data/icons/humano2/16x16/apps/gnome-help.png);
background-position: left;
background-repeat: no-repeat;
padding-left: 20px;
}

/*categoria*/
.main .main-head {
  background: #C00000  url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: white;
text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 0px;
padding: 12px;
font-size: 12px;
font-weight: 300;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset #778594 0px 1px 3px;
-moz-box-shadow: inset #778594 0px 1px 3px;
box-shadow: inset #778594 0px 1px 3px;
overflow: hidden;
margin-bottom: 2px;
}

.main .main-foot {
  background: #A9B4C0 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: white;
text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 0px;
padding: 12px;
font-size: 12px;
font-weight: 300;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset #778594 0px 1px 3px;
-moz-box-shadow: inset #778594 0px 1px 3px;
box-shadow: inset #778594 0px 1px 3px;
overflow: hidden;
margin-bottom: 2px;
}

.pun tbody.statused td.tcl {
  background: white;
}

.pun tbody.statused td.tcr {
  background: white;
  border-left: 0px;
}



.pun table.table td {
border-color: #F3F3F3;
border-width: 1px;
padding: 0.6em 0px 0.7em;
}

.pun .main table td.tc2, .pun .main table td.tc3 {
  background: white;
  border-right: none;
  border-left: none;
}

.pun fieldset, .pun img {
vertical-align: middle;
}

/*userbar*/
#user_bar {
background: #CCC url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
border-top: 1px solid #CBCDD1;
border-bottom: 1px solid #95999C;
-webkit-box-shadow: white 0px 1px 0px;
-moz-box-shadow: #fff 0px 1px 0px;
box-shadow: white 0px 1px 0px;
height: 38px;
margin-bottom: 10px;
}

#user_navigation {
float: left;
color: #9F9F9F;
font-size: 11px;
line-height: 36px;
height: 36px;
overflow: hidden;
font-weight: bold;
border-left: 1px solid rgba(255, 255, 255, 0.15);
}

#user_navigation .ipsList_inline li {
margin: 0;
padding: /;
float: left;
}

#user_navigation a {
color: white;
text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 1px;
float: left;
padding: 0 12px;
line-height: 36px;
outline: none;
height: 36px;
border-right: 1px solid rgba(255, 255, 255, 0.15);
}

#user_navigation a:hover {
background: rgba(255, 255, 255, 0.12);
}

#user_navigation #sign_in img, #user_navigation #register_link img {
vertical-align: top;
position: relative;
margin: 10px 2px 0 0;
}

.login {
background: none;
cursor: pointer;
padding: 5px;
}

.ipsList_inline > li {
display: inline-block;
margin: 0 3px;
}

/*logado*/
#avatar img {
position: relative;
vertical-align: top;
padding: 0;
height: 24px;
width: 24px;
border: 1px solid #959595;
background: white;
padding: 1px;
margin-top: 4px;
}
#avatar {
  float: left;
}

#notify_link img, #inbox_link img {
width: 20px;
height: 20px;
background-repeat: no-repeat;
vertical-align: middle;
background-position: 0 0;
margin-top: 7px;
}

#notify_link, #inbox_link {
vertical-align: middle;
width: 20px;
padding: 0px 8px !important;
position: relative;
}

#inbox_link img {
background-image: url('http://i.imgur.com/LqnYXZB.png');
}

#notify_link img {
background-image: url('http://i.imgur.com/x3ICStu.png');
}

/*branding*/
#branding.withFixedTop {
padding-top: 38px;
}

#branding {
background: #262626 url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/branding_bg.png') repeat;
height: 69px;
border-bottom: 1px solid #141414;
}

#logo a:hover img {
opacity: 0.7;
}

#logo img {
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
}

#logo {
float: left;
}

/*navigation*/
#primary_nav {
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans30.png") repeat;
background: rgba(0, 0, 0, 0.3);
-webkit-box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px, inset black 0px 1px 4px;
-moz-box-shadow: rgba(255,255,255,0.1) 0px 1px 0px, rgba(255,255,255,0.05) 0px 0px 0px 1px, inset #000 0px 1px 4px;
box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px, inset black 0px 1px 4px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
font-size: 12px;
text-transform: uppercase;
font-weight: 700;
font-family: "Lato","Trebuchet MS",Arial,Helvetica,sans-serif;
float: right;
margin-top: 16px;
}

#community_app_menu > li {
margin: 0;
position: relative;
}

#community_app_menu > li.active > a {
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/nav_active.png") repeat;
background: rgba(255, 255, 255, 0.07);
color: #A2ECFF;
text-shadow: #A2ECFF 0px 0px 4px;
position: relative;
}

#community_app_menu > li > a:hover, #community_app_menu > li > a.menu_active {
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/nav_active.png") repeat;
background: rgba(255, 255, 255, 0.05);
color: white;
text-shadow: white 0px 0px 4px;
}

#community_app_menu > li > a {
color: #E9EBED;
display: block;
outline: none;
padding: 0px 10px;
line-height: 35px;
height: 35px;
-webkit-transition: all 0.15s ease-in-out;
-o-transition: all 0.15s ease-in-out;
-moz-transition: all 0.15s ease-in-out;
}

/*search box*/
#search {
  margin: 4px 0 0 0;
}

#search_wrap {
position: relative;
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans20.png") repeat;
background: rgba(0, 0, 0, 0.2);
display: block;
padding: 0 26px 0 7px;
height: 26px;
line-height: 25px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset rgba(0, 0, 0, 0.35) 0px 1px 3px, rgba(255, 255, 255, 0.2) 0px 1px 0px;
-moz-box-shadow: inset rgba(0,0,0,0.35) 0px 1px 3px, rgba(255,255,255,0.2) 0px 1px 0px;
box-shadow: inset rgba(0, 0, 0, 0.35) 0px 1px 3px, rgba(255, 255, 255, 0.2) 0px 1px 0px;
min-width: 250px;
}

#main_search {
font-size: 12px;
border: 0;
padding: 0;
background: transparent;
width: 138px;
outline: 0;
color: white;
text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 1px;
margin-top:5px;
}
 
#search_options_menucontent {
min-width: 130px;
padding: 0;
background: white;
border: 1px solid #C6C6C6;
}

#search_options {
max-width: 80px;
text-overflow: ellipsis;
overflow: hidden;
font-size: 10px;
height: 20px;
line-height: 20px;
margin: 3px 3px 3px 0;
padding: 0 6px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
background: url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans40.png') repeat;
background: rgba(0, 0, 0, 0.4);
display: inline-block;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
color: white;
float: right;
}

#search .submit_input {
background: #292929 url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/search_icon.png') no-repeat 50%;
text-indent: -3000em;
padding: 0;
border: 0;
display: block;
width: 26px;
height: 26px;
position: absolute;
right: 0;
top: 0;
bottom: 0;
-moz-border-radius: 0 3px 3px 0;
border-radius: 0 3px 3px 0;
border-radius: 0 3px 3px 0;
margin-right:-1px;
}

#search .submit_input:hover{background-color:#3e3e3e}

#adv_search {
width: 26px;
height: 26px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background: url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/advanced_search.png') no-repeat 50% 50%;
text-indent: -3000em;
display: inline-block;
margin-left: 3px;
}

#adv_search:hover{background-color:rgba(0,0,0,0.2)}

.right {
float: right;
}

/*Link*/
a {text-decoration:none;}
li{list-style-type:none;}

/*secondary navigation*/
.clearfix::after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
overflow: hidden;
}

#secondary_navigation.stickyTop {
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 999;
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans80.png") repeat;
background: rgba(0, 0, 0, 0.8);
}

#secondary_navigation {
background: #1C1C1C;
font-size: 11px;
text-shadow: rgba(0, 0, 0, 0.8) 0px 1px 1px;
-webkit-box-shadow: rgba(255, 255, 255, 0.05) 0px 1px 0px;
-moz-box-shadow: rgba(255,255,255,0.05) 0px 1px 0px;
box-shadow: rgba(255, 255, 255, 0.05) 0px 1px 0px;
border-bottom: 1px solid #0D0D0D;
overflow: hidden;
line-height: 37px;
clear: both;
}

#secondary_navigation {
font-size: 11px;
text-shadow: rgba(0, 0, 0, 0.8) 0px 1px 1px;
line-height: 37px;
}

#secondary_navigation #breadcrumb li a:hover span {
background-position: 100% -43px;
}

#secondary_navigation #breadcrumb li.first a span {
padding-left: 12px;
}

#secondary_navigation #breadcrumb li span {
display: block;
padding-right: 17px;
padding-left: 4px;
background: url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/secondary_nav.png') no-repeat 100% 0;
color: #DDD;
}

.breadcrumb {
color: #777;
font-size: 11px;
}

#secondary_navigation a:hover {
color: white;
text-shadow: white 0px 0px 3px;
}

#secondary_navigation a {
color: #DDD;
line-height: 37px;
}

#secondary_links {
overflow: hidden;
}

#secondary_links a {
padding: 0 12px;
display: block;
}

#secondary_links img {
vertical-align: top;
width: 16px;
height: 16px;
position: relative;
margin: 10px -3px 0 -3px;
}

#secondary_links a:hover
img{opacity:0.7}

#secondary_links li {
float: left;
margin: 0;
}

.right {
float: right;
}

/*Statistics*/
#board_statistics {
-moz-border-radius: 3px;
-moz-box-shadow: inset rgba(0,0,0,0.3) 0 1px 2px, rgba(255,255,255,1) 0 1px 0;
-webkit-border-radius: 3px;
-webkit-box-shadow: inset rgba(0, 0, 0, 0.3) 0 1px 2px, rgba(255, 255, 255, 1) 0 1px 0;
background: #EDEFF1 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: #768089;
text-shadow: rgba(255, 255, 255, 0.9) 0px 1px 0px;
-webkit-box-shadow: inset #B3BAC1 0px 1px 3px;
-moz-box-shadow: inset #b3bac1 0px 1px 3px;
box-shadow: inset #B3BAC1 0px 1px 3px;
padding: 3px 7px;
display: inline-block;
font-weight: 700;
margin-right: 3px;
text-shadow: rgba(255, 255, 255, 0.6) 0 1px 0;
border-top:none;
margin-left:15px;
}

/*Statistics*/
.statistics_head{
background: #262626;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset black 0px 1px 3px;
-moz-box-shadow: inset #000 0px 1px 3px;
box-shadow: inset black 0px 1px 3px;
font-size: 11px;
font-weight: bold;
padding: 8px;
}

.statistics_head h1{
color: white;
font-size: 12px;
font-weight: bold;
tahoma,helvetica,arial,sans-serif;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
margin-left:28px;
}

.icon {
background-image: url('http://cdn3.iconfinder.com/data/icons/prettyoffice/16/chart.png');
background-color: transparent;
background-repeat: no-repeat;
width: 16px;
height: 16px;
display: inline-block;
vertical-align: middle;
}

#onlinelist {
background: white;
border: 0px;
border-top:none;
}

#onlinechat {
background: white;
border-top: 1px solid #D8D8D8;
border-top:none;
}

#pun-visit, .main-box {
font-size:10px;
background: white;
border:none;
margin: 0px 0px 1em;
padding: 0.6em 1em;
}

/*rodapé*/
#footer_utilities, #footer_utilities a {
color: #CCC;
}

#footer_utilities {
padding: 8px;
font-size: 11px;
height: 45px;
position: relative;
border-top: 1px solid #141414;
text-shadow: rgba(0, 0, 0, 0.4) 0px -1px 0px;
background: #262626 url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/branding_bg.png') repeat;
}

#footer_utilities img {
  vertical-align: middle;
}
 
#stats_div {
height: 0px;
overflow: hidden;
}

.skin_link, .skin_link a {
color: #CCC !important;
}

#copyright {
text-align: right;
line-height: 22px;
float: right;
}

#footer_utilities .ipsList_inline {
margin-top: 3px;
clear: left;
float: left;
}

#backtotop, #bottomScroll {
width: 24px;
height: 24px;
line-height: 20px;
left: 50%;
top: 50%;
margin-left: -12px;
margin-top: -12px;
position: absolute;
display: inline-block;
background: url("https://cdn4.iconfinder.com/data/icons/cc_mono_icon_set/blacks/32x32/arrow_top.png") repeat;
background: rgba(0, 0, 0, 0.3);
-webkit-box-shadow: inset rgba(0, 0, 0, 0.7) 0px 1px 3px, rgba(255, 255, 255, 0.07) 0px 1px 0px;
-moz-box-shadow: inset rgba(0,0,0,0.7) 0px 1px 3px, rgba(255,255,255,0.07) 0px 1px 0px;
box-shadow: inset rgba(0, 0, 0, 0.7) 0px 1px 3px, rgba(255, 255, 255, 0.07) 0px 1px 0px;
text-align: center;
-moz-border-radius: 16px;
-webkit-border-radius: 16px;
border-radius: 16px;
outline: 0;
}

#bottomScroll:hover, #backtotop:hover {
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans70.png") repeat;
background: rgba(0, 0, 0, 0.7);
color: white;
}

#backtotop img {
  margin-top: 5px;
}

#backtotop:hover img {
opacity: 1;
}

#backtotop img {
opacity: 0.4;
}

#footer_utilities .ipsList_inline > li > a {
margin-right: 0px;
padding: 4px 10px;
display: inline-block;
}

/*standalone*/
.main-content.standalone .button {
border-radius: 5px;
}

/*user*/
.pun .user-ident .username {
display: block;
font-size: 1.3em;
font-weight: 400!important;
margin-top: 5px;
padding: 8px!important;
position: relative;
text-align: center;
text-decoration: none;
}

/*post*/
.pun .paged-foot, .pun .paged-head {
background-color: white;
border: 0px;
}

.pun .post {
  background: white;
}

.pun .postmain {
background-color: #fff;
border-left: 0px;
margin-left: 17em;
}

.pun .post .user {
    margin-top: 10px;
    display: block;
    border-right: 1px dashed #E4E8ED;
    position:relative;
    font-size: 12px;
    text-align: center;
}

.pun .user .user-ident .user-basic-info {
  text-align: center;
}

.pun .topic {
background: #fff;
border: 0px;
border-style: none solid;
}

#first-post-br {
border: 0;
border-top: 0px;
}

.pun .posthead {
  background: #282828 url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/branding_bg.png') repeat;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset black 0px 1px 3px;
-moz-box-shadow: inset #000 0px 1px 3px;
box-shadow: inset black 0px 1px 3px;
padding: 0 10px;
height: 36px;
line-height: 36px;
margin-top: 8px;
  border-bottom: 0px;
}

.post-options img:hover {
opacity: 0.7;
}

.posting img:hover {
opacity: 0.9;
}

.postfoot {
  border-top: 0px;
}

.pun .postfoot {
background: #EDEFF1 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset #B3BAC1 0px 1px 3px;
-moz-box-shadow: inset #b3bac1 0px 1px 3px;
box-shadow: inset #B3BAC1 0px 1px 3px;
margin-top: 10px;
}

.pun .posthead h2 {
  color: #BBB;
font-size: 11px;
font-weight: normal;
}

/*user img*/
.user-basic-info a img {
padding: 1px;
border: 1px solid #D5D5D5;
background: white;
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.user-basic-info a img:hover {
 border-color: #A1A1A1;
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

/*quick-reply*/
#quick_reply #textarea_content {
      clear: both;
      margin-left: 0px;
      margin-right: 0px;
      width: 100% !important;
      height: auto !important;
    }
     
    #text_editor_controls {
      display: !important;
    }
       
 #pun-qpost #textarea_content dt label{
  float:left;
}

fieldset.frm-set dl dd {
margin: auto!important;
}

/*smiley-box e quickreply*/
#smiley-box iframe{height: 280px;}
#smilies_categ{padding: 0px 0}
#smiley-box{border:1px solid #DDD;width:160px;margin:10px 0!important;padding:5px}
.pun .frm .frm-buttons input {
 
border: 1px solid #CCC;
border-bottom: 1px solid #BBB;
border-image: initial;
border-radius: 4px;
box-shadow: 0 1px 2px #ccc;
color: #333;
cursor: pointer;
margin: 0 2px 16px;
padding: 7px 22px;
}

#quick_reply fieldset.frm-set dl dd {
background: white;
border: solid 1px #CCC;
margin: 0 auto;
}
#quick_reply .frm-buttons {
-moz-border-radius-bottomleft: 5px;
-moz-border-radius-bottomright: 5px;
-webkit-border-bottom-left-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
background-color: #EEE;
border: solid 1px #CCC;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
border-top: 0;
margin: 0 auto;
padding: 5px;
text-align: center;
}

#textarea_content dt {display:none}

a.button2, body:last-child a.button1, button.button2, input.button1, input.button2 {
-webkit-transition: all 0.218s;
border: 1px solid;
border-radius: 3px;
padding: 0px 0.91em;
}
button.button2, input.button2 {
background-position: 50% 0%;
background-repeat: repeat-x;
border: 1px solid #BCBCBC;
}
a.button2, body:last-child a.button1, button.button2, input.button1, input.button2 {
padding: 1px 0px;
}
button.button2, input.button2 {
background-position: 50% 0%;
background-repeat: repeat-x;
border: 1px solid #BCBCBC;
margin: 0px 0.25em;
overflow: visible;
padding: 2px 3px;
}

/*profile*/
#profile-advanced-right .main-head .h3 {
-moz-border-radius: 10px;
-moz-box-shadow: inset 0 1px 3px rgba(0,0,0,0.5), rgba(255,255,255,0.16) 0 1px 0px, rgba(255,255,255,0.05) 0 0 0 1px;
-webkit-border-radius: 10px!important;
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.16) 0 1px 0px, rgba(255, 255, 255, 0.05) 0 0 0 1px;
background: rgba(0, 0, 0, 0.4);
border-radius: 10px;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.16) 0 1px 0px, rgba(255, 255, 255, 0.05) 0 0 0 1px;
color: white;
font-weight: 700;
opacity: 1;
padding: 4px 10px;
}

#profile-advanced-right .module.main .main-head {
background-color: #183C5D;
background-image: url(http://i.imgur.com/JnYGc.png);
border: none;
border-radius: 5px 5px 0 0;
box-shadow: none;
color: white;
font-size: 12px;
font-weight: 300;
overflow: hidden;
padding: 9px 12px;
text-shadow: black 0 1px 2px;
}

#profile-advanced-left #profile-advanced-details .main-head .subtitle {
font-size: 25px;
font-weight: 700;
line-height: 60px;
padding-left: 75px;
}

#profile-advanced-left #profile-advanced-details .main-head {
-webkit-box-shadow: inset 0 1px 0 #008186, inset 1px 0 0 #056B4E, inset -1px 0 0 #056B4E, inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 1px 2px #056B4E;
background-image: url(http://img86.xooimage.com/files/2/3/a/captur-36b3f67.png);
background-position: left;
background-color:transparent;
background-repeat: no-repeat;
border: 1px solid #026375;
height: 70px;
}

#profile-advanced-right .main-head .h3 span {
color: #FFD600!important;
font-size: 14px!important;
}

#profile-advanced-left #profile-advanced-details .main-head .subtitle span {
color: #00B8FF!important;
}

#profile-advanced-right .main-content.clearfix.center {
color: #777575;
font-size: 15px;
font-weight: 700;
text-shadow: 1px 1px 2px #F0F0F0;
}

/*chatbox*/
#chatbox, #chatbox_footer, #chatbox_members {
background: white;
}

.boxOut_chatbox {
background: white;
border: 1px solid #D2D2D2;
border-radius: 4px;
padding: 8px;
}

body.chatbox{background-color:#fff;background-image:none;margin:0;padding:0}#chatbox_header{ background: url ('http://i49.tinypic.com/2vkfaqh.jpg') repeat-x 0 0; height:40px; border-radius: 5px 5px 0px 0px; padding-bottom:0px;}.chatbox-title,.chatbox-title a.chat-title{color:#dedfdf;text-decoration:none}.chatbox-title{float:left;margin:0;padding:2px 5px 0;width:15em}.chatbox-options{float:right;font-size:11px;list-style:none;margin:.7em .5em .5em}.chatbox-options li{display:inline}.chatbox-options li,.chatbox-options li a,.chatbox-options li label{color:#dedfdf}#chatbox_members{border-right:1px dashed #ccc;bottom:30px;overflow:auto;position:absolute;top:30px;width:180px}#chatbox_messenger_form{margin:10px 0 0}#chatbox_members .member-title{background-color:#f4f9fd;background-image:none;color:#00569c;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;padding:.5em .25em;text-align:center}#chatbox_members ul{list-style:none;margin:0 0 0 1em}#chatbox_members ul li{margin:.5em .5em .5em 0}#chatbox{bottom:30px;left:181px;line-height:10px;overflow:auto;position:absolute;right:0;top:30px}#chatbox p{line-height:1.2em}.chatbox_row_1{background-color:#fbfbfb;padding:4px}.chatbox_row_2{background-color:#f4f4f4;padding:4px}.chatbox_row_3{background-color:#f4f9fd;padding:4px}#chatbox .user{font-weight:700}.memberlist_row_1{background-color:#fbfbfb}#chatbox_footer{border-top:1px dashed #ccc;bottom:0;left:0;position:absolute;right:0}#message,#submit_button{border-width:1px}.fontbutton{background:#E1E1E2 none repeat scroll 0;border:medium none;color:#000;cursor:pointer;float:left;margin-right:10px;padding:1px;text-align:left}.fontbutton_normal{background:#E1E1E2}.fontbutton_selected{background:#BBC7CE;border:1px solid #22229C}.fontbutton_clicked{background:#959595;border:1px solid #22229C}.fontbutton_hover{background:#E1E1E2;border:1px solid #22229C}* html #chatbox-members{height:expression((document.documentElement.clientHeight?document.documentElement.clientHeight:document.body.clientHeight) - ((parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 3) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2px * 0) ) + px)}* html #chatbox{height:expression((document.documentElement.clientHeight?document.documentElement.clientHeight:document.body.clientHeight) - ((parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 3) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2px * 0) ) + px);width:expression((document.documentElement.clientWidth?document.documentElement.clientWidth:document.body.clientWidth) - ((parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 10) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 1) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2px * 1.3) ) + px)}* html #chatbox-footer{width:expression((document.documentElement.clientWidth?document.documentElement.clientWidth:document.body.clientWidth) - ((parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 0) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 0) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2px * 0) ) + px)}#chatbox_contextmenu{background-color:#f4f9fd;border:2px solid #000}#chatbox_contextmenu p{background:#fbfbfb;border-bottom:1px solid #777;font-family:verdana, arial, sans-serif;margin:0;padding:1px 4px}#chatbox_contextmenu p.hover{background:#f4f4f4}#chatbox_contextmenu p.close{background:url();color:#fff;font-size:95%;padding:1px}#chatbox_contextmenu p.close img{padding-left:20px;vertical-align:middle}#chatbox_contextmenu a{color:#00569c;font-size:95%;text-decoration:none}.module{overflow:hidden!important}
h2.chatbox-title a.chat-title{color:#fff;font-size:1.2em;font-weight:700;line-height:1.1em;text-align:center;text-shadow:0 1px 0 #CCC,0 2px 0 #C9C9C9,0 3px 0 #BBB,0 3px 0 #B9B9B9,0 4px 0 #AAA,0 5px 1px rgba(0,0,0,.1),0 0 5px rgba(0,0,0,.1),0 1px 3px rgba(0,0,0,.3),0 3px 5px rgba(0,0,0,.2),0 5px 10px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.2),0 20px 20px rgba(0,0,0,.15)}#chatbox_header{height:30px}.aviso_normas{background:none repeat scroll 0 0 #F0E8E0;border:1px solid #C00000;font-family:Tahoma,Arial;font-size:11px;height:24px;line-height:24px;margin-bottom:3px;text-align:center}#chatbox_members .member-title{background:#F8E7DD;border-bottom:2px solid red;color:#A30000;text-shadow:1px 0 0 #fff}#chatbox_members{background:#F1F1F1;border-right:1px solid #C2C2C2}#chatbox_footer{background:#E9E9E9;border-top:1px solid #CACACA}#chatbox p{border-bottom:1px solid #DDD;border-top:1px solid #fff}.chatbox_row_1{background-color:#F8F8F8}#chatbox a,#chatbox_members a{color:#006B6B}#chatbox_messenger_form div.right img{visibility:hidden}

#chatbox_header .main-head {
background-image: url(http://i1135.photobucket.com/albums/m622/Mazeko1/bg-2.png) repeat;
border-radius: 3px;
height:40px;
}

#chatbox p {
border-bottom: 1px solid #DDD;
border-top: 1px solid white;
}
#chatbox p {
line-height: 1.2em;
}

#divsmilies img + img{visibility:visible!important}#divbold,#divcolor,#divitalic,#divsmilies,#divstrike,#divunderline{background-position:center;background-repeat:no-repeat;border:1px solid #383838;border-radius:5px}#divbold{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/bold10.png)}#divitalic{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/italic10.png)}#divunderline{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/underl10.png)}#divstrike{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/strike10.png)}#divcolor{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/font_c11.png)}#divsmilies{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/emotic10.png)}#código_creado_por_welmy{background:#E6E6E6;border:1px solid #222;border-radius:3px;font-family:arial;margin:auto;padding:5px;text-shadow:1px 1px #fff;width:228px}#th_avarx{background-image:url(http://i.imgur.com/EkPsC.png);background-size:100%;border:1px solid #1A1A1A;border-radius:2px;box-shadow:0 1px 2px #000;height:70px;width:70px}#th_avarx img{border-radius:2px;height:70px;width:70px}.lnk a{margin-left:5px;margin-right:5px}
#simple-wrap {
  background:white;
}

#chatbox_messenger_form input#message {
min-width: 450px;
}
#message, #submit_button {
border-width: 1px;
}

#chatbox_messenger_form #submit_button:hover {
background: #E2FCFF;
border: 1px solid #4CC3FC;
color: #027FAF;
}

#message, #submit_button {
border-width: 1px;
}

.pun .frm .frm-buttons input, input[type="reset"], input[type="submit"] {
border: 1px solid #CCC;
border-bottom: 1px solid #BBB;
border-radius: 4px;
box-shadow: 0 1px 2px #CCC;
color: #333;
}

input[type="password"], input[type="text"], textarea {
-webkit-border-radius: 3px;
background-color: white;
border: 1px solid #CCC;
border-radius: 3px;
color: #515151;
cursor: text;
display: inline-block;
font-size: 13px;
line-height: 15px;
outline: 0;
}

/*profile*/
#profile-advanced-right {
float: left;
width: 280px;
}
#profile-advanced-layout {
float: right;
margin-left: -300px;
margin-right: 0px;
}
#profile-advanced-left {
margin-left: 305px;
margin-right: 0px;
}
#profile-advanced-layout #new-message {
clear: both;
position: relative;
}
/*pagination*/
.paging a:hover, .paging b, td p.pag a:hover, td p.pag b {
background: #51A3CE;
color: white;
text-shadow: none;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset rgba(0, 0, 0, 0.4) 0px 1px 3px;
-moz-box-shadow: inset rgba(0,0,0,0.4) 0px 1px 3px;
box-shadow: inset rgba(0, 0, 0, 0.4) 0px 1px 3px;
padding: 1px 8px;
cursor: default;
}

.paged-foot .paging a, .paging a, td p.pag a {
background: #EDEFF1 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: #768089;
text-shadow: rgba(255, 255, 255, 0.9) 0px 1px 0px;
-webkit-box-shadow: inset #B3BAC1 0px 1px 3px;
-moz-box-shadow: inset #b3bac1 0px 1px 3px;
box-shadow: inset #B3BAC1 0px 1px 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
display: inline-block;
padding: 1px 8px;
text-transform: lowercase;
font-size: 11px;
font-weight: normal;
}

.paged-foot .paging a, .paged-foot .paging a:hover, .paged-foot .paging b, .paging a, .paging b, td p.pag a, td p.pag b {
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
font-size: 12px!important;
margin-right: 3px!important;
padding: 6px 9px!important;
}

/*botões de votar*/
.vote {
padding: 2px;
text-align: center;
width:16px;
background-color: #eaeaea;
border: 1px solid #d4d6d5;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-top-left-radius:5px;
-webkit-border-bottom-left-radius:5px;
-webkit-border-top-right-radius:5px;
-webkit-border-bottom-right-radius:5px;
}

.vote .vote-no-bar {
display: none;
}

.vote .vote-bar {
border-left: 0px;
border-right: 0px;
border-top: 1px solid #ffffff;
border-bottom: 1px solid #d4d6d5;
font-size: 0px;
height: 50px;
margin: 0px;
width: 16px;
}

.vote .vote-bar-plus {
margin-left: 5px;
width: 7px;
}

.vote .vote-bar-minus {
margin-left: 5px;
width: 7px;
}

.vote .vote-button a[href $="plus"] {
background:url('http://cdn3.iconfinder.com/data/icons/fugue/icon_shadowless/plus-circle.png');
background-repeat: no-repeat;
color:transparent;
display:block;
height:16px;
width:16px;
}

.vote .vote-button a[href $="minus"] {
background-image:url('http://cdn2.iconfinder.com/data/icons/fugue/icon_shadowless/minus_circle.png');
background-repeat: no-repeat;
color:transparent;
display:block;
height:16px;
width:16px;
}

/*----------------Ranks-------------------*/

.userVIP, .userVIP-ROSA, .userSuporte, .userADM, .userNovato, .userModerador, .userGerente, .userDesigner, .userMembro {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
background: #65a830;
border-radius: 3px;
color: #fff;
display: inline-block;
font-size: 11px;
font-weight: 700;
margin-top: 5px;
padding: 3px 8px;
text-shadow: rgba(0,0,0,0.2) 0 -1px 0;
}


.userNovato {
background: #4d4d4d;
}

 
.userADM {
background: #d71515;
}

.userModerador {
background: #0077db;
}

.userGerente {
background: #a500db;
}

.userDesigner{
background: #ffc000;
}

.userSuporte{
background: #00d1de;
}

.userVIP{
background: #1be300;
}

.userVIP-ROSA{
background: #ff00ea;
}

.userMembro{
background: #4d4d4d;


/*-------------------Aviso antes de apagar Mensagem----------------*/

.popup_delete {
background-color: #464646;
background-color: rgba(70, 70, 70, 0.6);
padding: 4px;
-webkit-box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7);
box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7 );
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
z-index: 999;
bottom: 5px;
right: 5px;
position: fixed;
}
.popup_delete_Inner {
background: white;
-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.4);
box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
overflow-x: hidden;
width: 350px;
max-height: 642px;
}
.popup_delete_Inner h3 {
background: -moz-linear-gradient(#444,#000);
background-color: #000;
background-image: -webkit-linear-gradient(#444,#000);
text-align: left;
color: white;
padding: 8px 10px 9px;
font-size: 16px;
font-weight: 300;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.Box_delete {
background: #f0f0f0;
padding: 9px;
}
.Box_container {
background: #fdfdfd;
border: 1px solid #dcdcdc;
}
.delete_center {
padding: 9px;
text-align: center;
}
.delete_center p {
margin-bottom: 5px;
}
.popup_delete_Close {
cursor: pointer;
position: absolute;
right: 20px;
top: 15px;
}

/*-------------------Aviso antes de apagar Mensagem----------------*/
otmundobr

otmundobr
***

Membro desde : 18/07/2011
Mensagens : 174
Pontos : 289

http://otmundobr.forumeiros.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Correção nos templates

Mensagem por Dr. 05.07.14 21:45

Procure por isso em seu template:

Código:
 <a href="{U_INDEX}" id="pun-logo"><img src="{LOGO}" alt="{L_INDEX}" /></a>

Onde está: {LOGO}, coloque entre as aspas a URL de sua imagem.
Quanto ao problema em seu rodapé, poderia me passar o link da página onde o problema é encontrado?

Até mais.
Dr.

Dr.
Hiper Membro

Membro desde : 04/02/2013
Mensagens : 3072
Pontos : 3415

https://ajuda.forumeiros.com/

Ir para o topo Ir para baixo

Membro Entusiasta

Tópico resolvido Re: Correção nos templates

Mensagem por Roevs 06.07.14 0:44

Olá,

Altere sua Folha de Estilo CSS por este

Código:
body {
background: #EDEFF1 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: #4E565E;
font: normal 11px "Trebuchet MS",tahoma,helvetica,arial,sans-serif;
}

#pun-intro {
  display: none;
}

#pun-navlinks {
  display: none;
}

#pun-announcement {
border-style: 0 px solid;
border-width: 0px;
padding: 1em;
background: white;
}

.pun {
  margin-top:10px;
  background: white;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 5px;
  -moz-box-shadow: rgba(0,0,0,0.1) 0px 1px 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 5px;
  border: 1px solid #D6D8D9;
  margin-bottom: 10px;
}

.pun .main-content {
border: 1px solid #fff;
}

thead {
display: none;
}

fieldset {
-webkit-margin-start: 2px;
-webkit-margin-end: 2px;
-webkit-padding-before: 0.35em;
-webkit-padding-start: 0.75em;
-webkit-padding-end: 0.75em;
-webkit-padding-after: 0.625em;
border: 0px;
border-image: initial;
}
.wrapper {
margin: 0 auto;
min-width: 980px;
max-width: 1600px;
width: 90%;
}

.guestMessage {
    background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/highlight.png") repeat-x scroll 0px 0px rgb(249, 215, 155);
    border: 1px solid rgb(235, 185, 98);
    color: rgb(184, 95, 29);
    font-size: 13px;
    line-height: 140%;
    box-shadow: 0px 1px 4px rgb(253, 229, 187);
    margin:5px;
    margin-bottom: 10px;
    padding: 10px;
    text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.55);
}

#pun-about {
font-size: 0.8em;
text-align: left;
text-shadow: rgba(255, 255, 255, 0.8) 0px 1px 0px;
background: transparent;
border: none;
}

#pun-about form {
display: none;
}

/*help button*/
.pun .main-head a.exthelp, .pun .main-head a.exthelp:link, .pun .main-head a.exthelp:visited {
color: black;
background-image: url(http://cdn2.iconfinder.com/data/icons/humano2/16x16/apps/gnome-help.png);
background-position: left;
background-repeat: no-repeat;
padding-left: 20px;
}

/*categoria*/
.main .main-head {
  background: #C00000  url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: white;
text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 0px;
padding: 12px;
font-size: 12px;
font-weight: 300;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset #778594 0px 1px 3px;
-moz-box-shadow: inset #778594 0px 1px 3px;
box-shadow: inset #778594 0px 1px 3px;
overflow: hidden;
margin-bottom: 2px;
}

.main .main-foot {
  background: #A9B4C0 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: white;
text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 0px;
padding: 12px;
font-size: 12px;
font-weight: 300;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset #778594 0px 1px 3px;
-moz-box-shadow: inset #778594 0px 1px 3px;
box-shadow: inset #778594 0px 1px 3px;
overflow: hidden;
margin-bottom: 2px;
}

.pun tbody.statused td.tcl {
  background: white;
}

.pun tbody.statused td.tcr {
  background: white;
  border-left: 0px;
}



.pun table.table td {
border-color: #F3F3F3;
border-width: 1px;
padding: 0.6em 0px 0.7em;
}

.pun .main table td.tc2, .pun .main table td.tc3 {
  background: white;
  border-right: none;
  border-left: none;
}

.pun fieldset, .pun img {
vertical-align: middle;
}

/*userbar*/
#user_bar {
background: #CCC url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
border-top: 1px solid #CBCDD1;
border-bottom: 1px solid #95999C;
-webkit-box-shadow: white 0px 1px 0px;
-moz-box-shadow: #fff 0px 1px 0px;
box-shadow: white 0px 1px 0px;
height: 38px;
margin-bottom: 10px;
}

#user_navigation {
float: left;
color: #9F9F9F;
font-size: 11px;
line-height: 36px;
height: 36px;
overflow: hidden;
font-weight: bold;
border-left: 1px solid rgba(255, 255, 255, 0.15);
}

#user_navigation .ipsList_inline li {
margin: 0;
padding: /;
float: left;
}

#user_navigation a {
color: white;
text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 1px;
float: left;
padding: 0 12px;
line-height: 36px;
outline: none;
height: 36px;
border-right: 1px solid rgba(255, 255, 255, 0.15);
}

#user_navigation a:hover {
background: rgba(255, 255, 255, 0.12);
}

#user_navigation #sign_in img, #user_navigation #register_link img {
vertical-align: top;
position: relative;
margin: 10px 2px 0 0;
}

.login {
background: none;
cursor: pointer;
padding: 5px;
}

.ipsList_inline > li {
display: inline-block;
margin: 0 3px;
}

/*logado*/
#avatar img {
position: relative;
vertical-align: top;
padding: 0;
height: 24px;
width: 24px;
border: 1px solid #959595;
background: white;
padding: 1px;
margin-top: 4px;
}
#avatar {
  float: left;
}

#notify_link img, #inbox_link img {
width: 20px;
height: 20px;
background-repeat: no-repeat;
vertical-align: middle;
background-position: 0 0;
margin-top: 7px;
}

#notify_link, #inbox_link {
vertical-align: middle;
width: 20px;
padding: 0px 8px !important;
position: relative;
}

#inbox_link img {
background-image: url('http://i.imgur.com/LqnYXZB.png');
}

#notify_link img {
background-image: url('http://i.imgur.com/x3ICStu.png');
}

/*branding*/
#branding.withFixedTop {
padding-top: 38px;
}

#branding {
background: #262626 url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/branding_bg.png') repeat;
height: 69px;
border-bottom: 1px solid #141414;
}

#logo a:hover img {
opacity: 0.7;
}

#logo img {
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
}

#logo {
float: left;
}

/*navigation*/
#primary_nav {
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans30.png") repeat;
background: rgba(0, 0, 0, 0.3);
-webkit-box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px, inset black 0px 1px 4px;
-moz-box-shadow: rgba(255,255,255,0.1) 0px 1px 0px, rgba(255,255,255,0.05) 0px 0px 0px 1px, inset #000 0px 1px 4px;
box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px, inset black 0px 1px 4px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
font-size: 12px;
text-transform: uppercase;
font-weight: 700;
font-family: "Lato","Trebuchet MS",Arial,Helvetica,sans-serif;
float: right;
margin-top: 16px;
}

#community_app_menu > li {
margin: 0;
position: relative;
}

#community_app_menu > li.active > a {
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/nav_active.png") repeat;
background: rgba(255, 255, 255, 0.07);
color: #A2ECFF;
text-shadow: #A2ECFF 0px 0px 4px;
position: relative;
}

#community_app_menu > li > a:hover, #community_app_menu > li > a.menu_active {
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/nav_active.png") repeat;
background: rgba(255, 255, 255, 0.05);
color: white;
text-shadow: white 0px 0px 4px;
}

#community_app_menu > li > a {
color: #E9EBED;
display: block;
outline: none;
padding: 0px 10px;
line-height: 35px;
height: 35px;
-webkit-transition: all 0.15s ease-in-out;
-o-transition: all 0.15s ease-in-out;
-moz-transition: all 0.15s ease-in-out;
}

/*search box*/
#search {
  margin: 4px 0 0 0;
}

#search_wrap {
position: relative;
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans20.png") repeat;
background: rgba(0, 0, 0, 0.2);
display: block;
padding: 0 26px 0 7px;
height: 26px;
line-height: 25px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset rgba(0, 0, 0, 0.35) 0px 1px 3px, rgba(255, 255, 255, 0.2) 0px 1px 0px;
-moz-box-shadow: inset rgba(0,0,0,0.35) 0px 1px 3px, rgba(255,255,255,0.2) 0px 1px 0px;
box-shadow: inset rgba(0, 0, 0, 0.35) 0px 1px 3px, rgba(255, 255, 255, 0.2) 0px 1px 0px;
min-width: 250px;
}

#main_search {
font-size: 12px;
border: 0;
padding: 0;
background: transparent;
width: 138px;
outline: 0;
color: white;
text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 1px;
margin-top:5px;
}
 
#search_options_menucontent {
min-width: 130px;
padding: 0;
background: white;
border: 1px solid #C6C6C6;
}

#search_options {
max-width: 80px;
text-overflow: ellipsis;
overflow: hidden;
font-size: 10px;
height: 20px;
line-height: 20px;
margin: 3px 3px 3px 0;
padding: 0 6px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
background: url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans40.png') repeat;
background: rgba(0, 0, 0, 0.4);
display: inline-block;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
color: white;
float: right;
}

#search .submit_input {
background: #292929 url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/search_icon.png') no-repeat 50%;
text-indent: -3000em;
padding: 0;
border: 0;
display: block;
width: 26px;
height: 26px;
position: absolute;
right: 0;
top: 0;
bottom: 0;
-moz-border-radius: 0 3px 3px 0;
border-radius: 0 3px 3px 0;
border-radius: 0 3px 3px 0;
margin-right:-1px;
}

#search .submit_input:hover{background-color:#3e3e3e}

#adv_search {
width: 26px;
height: 26px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background: url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/advanced_search.png') no-repeat 50% 50%;
text-indent: -3000em;
display: inline-block;
margin-left: 3px;
}

#adv_search:hover{background-color:rgba(0,0,0,0.2)}

.right {
float: right;
}

/*Link*/
a {text-decoration:none;}
li{list-style-type:none;}

/*secondary navigation*/
.clearfix::after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
overflow: hidden;
}

#secondary_navigation.stickyTop {
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 999;
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans80.png") repeat;
background: rgba(0, 0, 0, 0.8);
}

#secondary_navigation {
background: #1C1C1C;
font-size: 11px;
text-shadow: rgba(0, 0, 0, 0.8) 0px 1px 1px;
-webkit-box-shadow: rgba(255, 255, 255, 0.05) 0px 1px 0px;
-moz-box-shadow: rgba(255,255,255,0.05) 0px 1px 0px;
box-shadow: rgba(255, 255, 255, 0.05) 0px 1px 0px;
border-bottom: 1px solid #0D0D0D;
overflow: hidden;
line-height: 37px;
clear: both;
}

#secondary_navigation {
font-size: 11px;
text-shadow: rgba(0, 0, 0, 0.8) 0px 1px 1px;
line-height: 37px;
}

#secondary_navigation #breadcrumb li a:hover span {
background-position: 100% -43px;
}

#secondary_navigation #breadcrumb li.first a span {
padding-left: 12px;
}

#secondary_navigation #breadcrumb li span {
display: block;
padding-right: 17px;
padding-left: 4px;
background: url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/secondary_nav.png') no-repeat 100% 0;
color: #DDD;
}

.breadcrumb {
color: #777;
font-size: 11px;
}

#secondary_navigation a:hover {
color: white;
text-shadow: white 0px 0px 3px;
}

#secondary_navigation a {
color: #DDD;
line-height: 37px;
}

#secondary_links {
overflow: hidden;
}

#secondary_links a {
padding: 0 12px;
display: block;
}

#secondary_links img {
vertical-align: top;
width: 16px;
height: 16px;
position: relative;
margin: 10px -3px 0 -3px;
}

#secondary_links a:hover
img{opacity:0.7}

#secondary_links li {
float: left;
margin: 0;
}

.right {
float: right;
}

/*Statistics*/
#board_statistics {
-moz-border-radius: 3px;
-moz-box-shadow: inset rgba(0,0,0,0.3) 0 1px 2px, rgba(255,255,255,1) 0 1px 0;
-webkit-border-radius: 3px;
-webkit-box-shadow: inset rgba(0, 0, 0, 0.3) 0 1px 2px, rgba(255, 255, 255, 1) 0 1px 0;
background: #EDEFF1 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: #768089;
text-shadow: rgba(255, 255, 255, 0.9) 0px 1px 0px;
-webkit-box-shadow: inset #B3BAC1 0px 1px 3px;
-moz-box-shadow: inset #b3bac1 0px 1px 3px;
box-shadow: inset #B3BAC1 0px 1px 3px;
padding: 3px 7px;
display: inline-block;
font-weight: 700;
margin-right: 3px;
text-shadow: rgba(255, 255, 255, 0.6) 0 1px 0;
border-top:none;
margin-left:15px;
}

/*Statistics*/
.statistics_head{
background: #262626;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset black 0px 1px 3px;
-moz-box-shadow: inset #000 0px 1px 3px;
box-shadow: inset black 0px 1px 3px;
font-size: 11px;
font-weight: bold;
padding: 8px;
}

.statistics_head h1{
color: white;
font-size: 12px;
font-weight: bold;
tahoma,helvetica,arial,sans-serif;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
margin-left:28px;
}

.icon {
background-image: url('http://cdn3.iconfinder.com/data/icons/prettyoffice/16/chart.png');
background-color: transparent;
background-repeat: no-repeat;
width: 16px;
height: 16px;
display: inline-block;
vertical-align: middle;
}

#onlinelist {
background: white;
border: 0px;
border-top:none;
}

#onlinechat {
background: white;
border-top: 1px solid #D8D8D8;
border-top:none;
}

#pun-visit, .main-box {
font-size:10px;
background: white;
border:none;
margin: 0px 0px 1em;
padding: 0.6em 1em;
}

/*rodapé*/
#footer_utilities, #footer_utilities a {
color: #CCC;
}

#footer_utilities {
padding: 8px;
font-size: 11px;
height: 45px;
position: relative;
border-top: 1px solid #141414;
text-shadow: rgba(0, 0, 0, 0.4) 0px -1px 0px;
background: #262626 url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/branding_bg.png') repeat;
}

#footer_utilities img {
  vertical-align: middle;
}
 
#stats_div {
height: 0px;
overflow: hidden;
}

.skin_link, .skin_link a {
color: #CCC !important;
}

#copyright {
text-align: right;
line-height: 22px;
float: right;
}

#footer_utilities .ipsList_inline {
margin-top: 3px;
clear: left;
float: left;
}

#backtotop, #bottomScroll {
width: 24px;
height: 24px;
line-height: 20px;
left: 50%;
top: 50%;
margin-left: -12px;
margin-top: -12px;
position: absolute;
display: inline-block;
background: url("https://cdn4.iconfinder.com/data/icons/cc_mono_icon_set/blacks/32x32/arrow_top.png") repeat;
background: rgba(0, 0, 0, 0.3);
-webkit-box-shadow: inset rgba(0, 0, 0, 0.7) 0px 1px 3px, rgba(255, 255, 255, 0.07) 0px 1px 0px;
-moz-box-shadow: inset rgba(0,0,0,0.7) 0px 1px 3px, rgba(255,255,255,0.07) 0px 1px 0px;
box-shadow: inset rgba(0, 0, 0, 0.7) 0px 1px 3px, rgba(255, 255, 255, 0.07) 0px 1px 0px;
text-align: center;
-moz-border-radius: 16px;
-webkit-border-radius: 16px;
border-radius: 16px;
outline: 0;
}

#bottomScroll:hover, #backtotop:hover {
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans70.png") repeat;
background: rgba(0, 0, 0, 0.7);
color: white;
}

#backtotop img {
  margin-top: 5px;
}

#backtotop:hover img {
opacity: 1;
}

#backtotop img {
opacity: 0.4;
}

#footer_utilities .ipsList_inline > li > a {
margin-right: 0px;
padding: 4px 10px;
display: inline-block;
}

/*standalone*/
.main-content.standalone .button {
border-radius: 5px;
}

/*user*/
.pun .user-ident .username {
display: block;
font-size: 1.3em;
font-weight: 400!important;
margin-top: 5px;
padding: 8px!important;
position: relative;
text-align: center;
text-decoration: none;
}

/*post*/
.pun .paged-foot, .pun .paged-head {
background-color: white;
border: 0px;
}

.pun .post {
  background: white;
}

.pun .postmain {
background-color: #fff;
border-left: 0px;
margin-left: 17em;
}

.pun .post .user {
    margin-top: 10px;
    display: block;
    border-right: 1px dashed #E4E8ED;
    position:relative;
    font-size: 12px;
    text-align: center;
}

.pun .user .user-ident .user-basic-info {
  text-align: center;
}

.pun .topic {
background: #fff;
border: 0px;
border-style: none solid;
}

#first-post-br {
border: 0;
border-top: 0px;
}

.pun .posthead {
  background: #282828 url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/branding_bg.png') repeat;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset black 0px 1px 3px;
-moz-box-shadow: inset #000 0px 1px 3px;
box-shadow: inset black 0px 1px 3px;
padding: 0 10px;
height: 36px;
line-height: 36px;
margin-top: 8px;
  border-bottom: 0px;
}

.post-options img:hover {
opacity: 0.7;
}

.posting img:hover {
opacity: 0.9;
}

.postfoot {
  border-top: 0px;
}

.pun .postfoot {
background: #EDEFF1 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset #B3BAC1 0px 1px 3px;
-moz-box-shadow: inset #b3bac1 0px 1px 3px;
box-shadow: inset #B3BAC1 0px 1px 3px;
margin-top: 10px;
}

.pun .posthead h2 {
  color: #BBB;
font-size: 11px;
font-weight: normal;
}

/*user img*/
.user-basic-info a img {
padding: 1px;
border: 1px solid #D5D5D5;
background: white;
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.user-basic-info a img:hover {
 border-color: #A1A1A1;
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

/*quick-reply*/
#quick_reply #textarea_content {
      clear: both;
      margin-left: 0px;
      margin-right: 0px;
      width: 100% !important;
      height: auto !important;
    }
     
    #text_editor_controls {
      display: !important;
    }
       
 #pun-qpost #textarea_content dt label{
  float:left;
}

fieldset.frm-set dl dd {
margin: auto!important;
}

/*smiley-box e quickreply*/
#smiley-box iframe{height: 280px;}
#smilies_categ{padding: 0px 0}
#smiley-box{border:1px solid #DDD;width:160px;margin:10px 0!important;padding:5px}
.pun .frm .frm-buttons input {
 
border: 1px solid #CCC;
border-bottom: 1px solid #BBB;
border-image: initial;
border-radius: 4px;
box-shadow: 0 1px 2px #ccc;
color: #333;
cursor: pointer;
margin: 0 2px 16px;
padding: 7px 22px;
}

#quick_reply fieldset.frm-set dl dd {
background: white;
border: solid 1px #CCC;
margin: 0 auto;
}
#quick_reply .frm-buttons {
-moz-border-radius-bottomleft: 5px;
-moz-border-radius-bottomright: 5px;
-webkit-border-bottom-left-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
background-color: #EEE;
border: solid 1px #CCC;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
border-top: 0;
margin: 0 auto;
padding: 5px;
text-align: center;
}

#textarea_content dt {display:none}

a.button2, body:last-child a.button1, button.button2, input.button1, input.button2 {
-webkit-transition: all 0.218s;
border: 1px solid;
border-radius: 3px;
padding: 0px 0.91em;
}
button.button2, input.button2 {
background-position: 50% 0%;
background-repeat: repeat-x;
border: 1px solid #BCBCBC;
}
a.button2, body:last-child a.button1, button.button2, input.button1, input.button2 {
padding: 1px 0px;
}
button.button2, input.button2 {
background-position: 50% 0%;
background-repeat: repeat-x;
border: 1px solid #BCBCBC;
margin: 0px 0.25em;
overflow: visible;
padding: 2px 3px;
}

/*profile*/
#profile-advanced-right .main-head .h3 {
-moz-border-radius: 10px;
-moz-box-shadow: inset 0 1px 3px rgba(0,0,0,0.5), rgba(255,255,255,0.16) 0 1px 0px, rgba(255,255,255,0.05) 0 0 0 1px;
-webkit-border-radius: 10px!important;
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.16) 0 1px 0px, rgba(255, 255, 255, 0.05) 0 0 0 1px;
background: rgba(0, 0, 0, 0.4);
border-radius: 10px;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.16) 0 1px 0px, rgba(255, 255, 255, 0.05) 0 0 0 1px;
color: white;
font-weight: 700;
opacity: 1;
padding: 4px 10px;
}

#profile-advanced-right .module.main .main-head {
background-color: #183C5D;
background-image: url(http://i.imgur.com/JnYGc.png);
border: none;
border-radius: 5px 5px 0 0;
box-shadow: none;
color: white;
font-size: 12px;
font-weight: 300;
overflow: hidden;
padding: 9px 12px;
text-shadow: black 0 1px 2px;
}

#profile-advanced-left #profile-advanced-details .main-head .subtitle {
font-size: 25px;
font-weight: 700;
line-height: 60px;
padding-left: 75px;
}

#profile-advanced-left #profile-advanced-details .main-head {
-webkit-box-shadow: inset 0 1px 0 #008186, inset 1px 0 0 #056B4E, inset -1px 0 0 #056B4E, inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 1px 2px #056B4E;
background-image: url(http://img86.xooimage.com/files/2/3/a/captur-36b3f67.png);
background-position: left;
background-color:transparent;
background-repeat: no-repeat;
border: 1px solid #026375;
height: 70px;
}

#profile-advanced-right .main-head .h3 span {
color: #FFD600!important;
font-size: 14px!important;
}

#profile-advanced-left #profile-advanced-details .main-head .subtitle span {
color: #00B8FF!important;
}

#profile-advanced-right .main-content.clearfix.center {
color: #777575;
font-size: 15px;
font-weight: 700;
text-shadow: 1px 1px 2px #F0F0F0;
}

/*chatbox*/
#chatbox, #chatbox_footer, #chatbox_members {
background: white;
}

.boxOut_chatbox {
background: white;
border: 1px solid #D2D2D2;
border-radius: 4px;
padding: 8px;
}

body.chatbox{background-color:#fff;background-image:none;margin:0;padding:0}#chatbox_header{ background: url ('http://i49.tinypic.com/2vkfaqh.jpg') repeat-x 0 0; height:40px; border-radius: 5px 5px 0px 0px; padding-bottom:0px;}.chatbox-title,.chatbox-title a.chat-title{color:#dedfdf;text-decoration:none}.chatbox-title{float:left;margin:0;padding:2px 5px 0;width:15em}.chatbox-options{float:right;font-size:11px;list-style:none;margin:.7em .5em .5em}.chatbox-options li{display:inline}.chatbox-options li,.chatbox-options li a,.chatbox-options li label{color:#dedfdf}#chatbox_members{border-right:1px dashed #ccc;bottom:30px;overflow:auto;position:absolute;top:30px;width:180px}#chatbox_messenger_form{margin:10px 0 0}#chatbox_members .member-title{background-color:#f4f9fd;background-image:none;color:#00569c;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;padding:.5em .25em;text-align:center}#chatbox_members ul{list-style:none;margin:0 0 0 1em}#chatbox_members ul li{margin:.5em .5em .5em 0}#chatbox{bottom:30px;left:181px;line-height:10px;overflow:auto;position:absolute;right:0;top:30px}#chatbox p{line-height:1.2em}.chatbox_row_1{background-color:#fbfbfb;padding:4px}.chatbox_row_2{background-color:#f4f4f4;padding:4px}.chatbox_row_3{background-color:#f4f9fd;padding:4px}#chatbox .user{font-weight:700}.memberlist_row_1{background-color:#fbfbfb}#chatbox_footer{border-top:1px dashed #ccc;bottom:0;left:0;position:absolute;right:0}#message,#submit_button{border-width:1px}.fontbutton{background:#E1E1E2 none repeat scroll 0;border:medium none;color:#000;cursor:pointer;float:left;margin-right:10px;padding:1px;text-align:left}.fontbutton_normal{background:#E1E1E2}.fontbutton_selected{background:#BBC7CE;border:1px solid #22229C}.fontbutton_clicked{background:#959595;border:1px solid #22229C}.fontbutton_hover{background:#E1E1E2;border:1px solid #22229C}* html #chatbox-members{height:expression((document.documentElement.clientHeight?document.documentElement.clientHeight:document.body.clientHeight) - ((parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 3) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2px * 0) ) + px)}* html #chatbox{height:expression((document.documentElement.clientHeight?document.documentElement.clientHeight:document.body.clientHeight) - ((parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 3) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2px * 0) ) + px);width:expression((document.documentElement.clientWidth?document.documentElement.clientWidth:document.body.clientWidth) - ((parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 10) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 1) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2px * 1.3) ) + px)}* html #chatbox-footer{width:expression((document.documentElement.clientWidth?document.documentElement.clientWidth:document.body.clientWidth) - ((parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 0) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 0) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2px * 0) ) + px)}#chatbox_contextmenu{background-color:#f4f9fd;border:2px solid #000}#chatbox_contextmenu p{background:#fbfbfb;border-bottom:1px solid #777;font-family:verdana, arial, sans-serif;margin:0;padding:1px 4px}#chatbox_contextmenu p.hover{background:#f4f4f4}#chatbox_contextmenu p.close{background:url();color:#fff;font-size:95%;padding:1px}#chatbox_contextmenu p.close img{padding-left:20px;vertical-align:middle}#chatbox_contextmenu a{color:#00569c;font-size:95%;text-decoration:none}.module{overflow:hidden!important}
h2.chatbox-title a.chat-title{color:#fff;font-size:1.2em;font-weight:700;line-height:1.1em;text-align:center;text-shadow:0 1px 0 #CCC,0 2px 0 #C9C9C9,0 3px 0 #BBB,0 3px 0 #B9B9B9,0 4px 0 #AAA,0 5px 1px rgba(0,0,0,.1),0 0 5px rgba(0,0,0,.1),0 1px 3px rgba(0,0,0,.3),0 3px 5px rgba(0,0,0,.2),0 5px 10px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.2),0 20px 20px rgba(0,0,0,.15)}#chatbox_header{height:30px}.aviso_normas{background:none repeat scroll 0 0 #F0E8E0;border:1px solid #C00000;font-family:Tahoma,Arial;font-size:11px;height:24px;line-height:24px;margin-bottom:3px;text-align:center}#chatbox_members .member-title{background:#F8E7DD;border-bottom:2px solid red;color:#A30000;text-shadow:1px 0 0 #fff}#chatbox_members{background:#F1F1F1;border-right:1px solid #C2C2C2}#chatbox_footer{background:#E9E9E9;border-top:1px solid #CACACA}#chatbox p{border-bottom:1px solid #DDD;border-top:1px solid #fff}.chatbox_row_1{background-color:#F8F8F8}#chatbox a,#chatbox_members a{color:#006B6B}#chatbox_messenger_form div.right img{visibility:hidden}

#chatbox_header .main-head {
background-image: url(http://i1135.photobucket.com/albums/m622/Mazeko1/bg-2.png) repeat;
border-radius: 3px;
height:40px;
}

#chatbox p {
border-bottom: 1px solid #DDD;
border-top: 1px solid white;
}
#chatbox p {
line-height: 1.2em;
}

#divsmilies img + img{visibility:visible!important}#divbold,#divcolor,#divitalic,#divsmilies,#divstrike,#divunderline{background-position:center;background-repeat:no-repeat;border:1px solid #383838;border-radius:5px}#divbold{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/bold10.png)}#divitalic{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/italic10.png)}#divunderline{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/underl10.png)}#divstrike{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/strike10.png)}#divcolor{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/font_c11.png)}#divsmilies{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/emotic10.png)}#código_creado_por_welmy{background:#E6E6E6;border:1px solid #222;border-radius:3px;font-family:arial;margin:auto;padding:5px;text-shadow:1px 1px #fff;width:228px}#th_avarx{background-image:url(http://i.imgur.com/EkPsC.png);background-size:100%;border:1px solid #1A1A1A;border-radius:2px;box-shadow:0 1px 2px #000;height:70px;width:70px}#th_avarx img{border-radius:2px;height:70px;width:70px}.lnk a{margin-left:5px;margin-right:5px}
#simple-wrap {
  background:white;
}

#chatbox_messenger_form input#message {
min-width: 450px;
}
#message, #submit_button {
border-width: 1px;
}

#chatbox_messenger_form #submit_button:hover {
background: #E2FCFF;
border: 1px solid #4CC3FC;
color: #027FAF;
}

#message, #submit_button {
border-width: 1px;
}

.pun .frm .frm-buttons input, input[type="reset"], input[type="submit"] {
border: 1px solid #CCC;
border-bottom: 1px solid #BBB;
border-radius: 4px;
box-shadow: 0 1px 2px #CCC;
color: #333;
}

input[type="password"], input[type="text"], textarea {
-webkit-border-radius: 3px;
background-color: white;
border: 1px solid #CCC;
border-radius: 3px;
color: #515151;
cursor: text;
display: inline-block;
font-size: 13px;
line-height: 15px;
outline: 0;
}

/*profile*/
#profile-advanced-right {
float: left;
width: 280px;
}
#profile-advanced-layout {
float: right;
margin-left: -300px;
margin-right: 0px;
}
#profile-advanced-left {
margin-left: 305px;
margin-right: 0px;
}
#profile-advanced-layout #new-message {
clear: both;
position: relative;
}
/*pagination*/
.paging a:hover, .paging b, td p.pag a:hover, td p.pag b {
background: #51A3CE;
color: white;
text-shadow: none;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset rgba(0, 0, 0, 0.4) 0px 1px 3px;
-moz-box-shadow: inset rgba(0,0,0,0.4) 0px 1px 3px;
box-shadow: inset rgba(0, 0, 0, 0.4) 0px 1px 3px;
padding: 1px 8px;
cursor: default;
}

.paged-foot .paging a, .paging a, td p.pag a {
background: #EDEFF1 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: #768089;
text-shadow: rgba(255, 255, 255, 0.9) 0px 1px 0px;
-webkit-box-shadow: inset #B3BAC1 0px 1px 3px;
-moz-box-shadow: inset #b3bac1 0px 1px 3px;
box-shadow: inset #B3BAC1 0px 1px 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
display: inline-block;
padding: 1px 8px;
text-transform: lowercase;
font-size: 11px;
font-weight: normal;
}

.paged-foot .paging a, .paged-foot .paging a:hover, .paged-foot .paging b, .paging a, .paging b, td p.pag a, td p.pag b {
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
font-size: 12px!important;
margin-right: 3px!important;
padding: 6px 9px!important;
}

/*botões de votar*/
.vote {
padding: 2px;
text-align: center;
width:16px;
background-color: #eaeaea;
border: 1px solid #d4d6d5;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-top-left-radius:5px;
-webkit-border-bottom-left-radius:5px;
-webkit-border-top-right-radius:5px;
-webkit-border-bottom-right-radius:5px;
}

.vote .vote-no-bar {
display: none;
}

.vote .vote-bar {
border-left: 0px;
border-right: 0px;
border-top: 1px solid #ffffff;
border-bottom: 1px solid #d4d6d5;
font-size: 0px;
height: 50px;
margin: 0px;
width: 16px;
}

.vote .vote-bar-plus {
margin-left: 5px;
width: 7px;
}

.vote .vote-bar-minus {
margin-left: 5px;
width: 7px;
}

.vote .vote-button a[href $="plus"] {
background:url('http://cdn3.iconfinder.com/data/icons/fugue/icon_shadowless/plus-circle.png');
background-repeat: no-repeat;
color:transparent;
display:block;
height:16px;
width:16px;
}

.vote .vote-button a[href $="minus"] {
background-image:url('http://cdn2.iconfinder.com/data/icons/fugue/icon_shadowless/minus_circle.png');
background-repeat: no-repeat;
color:transparent;
display:block;
height:16px;
width:16px;
}

/*----------------Ranks-------------------*/

.userVIP, .userVIP-ROSA, .userSuporte, .userADM, .userNovato, .userModerador, .userGerente, .userDesigner, .userMembro {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
background: #65a830;
border-radius: 3px;
color: #fff;
display: inline-block;
font-size: 11px;
font-weight: 700;
margin-top: 5px;
padding: 3px 8px;
text-shadow: rgba(0,0,0,0.2) 0 -1px 0;
}


.userNovato {
background: #4d4d4d;
}

 
.userADM {
background: #d71515;
}

.userModerador {
background: #0077db;
}

.userGerente {
background: #a500db;
}

.userDesigner{
background: #ffc000;
}

.userSuporte{
background: #00d1de;
}

.userVIP{
background: #1be300;
}

.userVIP-ROSA{
background: #ff00ea;
}

.userMembro{
background: #4d4d4d;


/*-------------------Aviso antes de apagar Mensagem----------------*/

.popup_delete {
background-color: #464646;
background-color: rgba(70, 70, 70, 0.6);
padding: 4px;
-webkit-box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7);
box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7 );
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
z-index: 999;
bottom: 5px;
right: 5px;
position: fixed;
}
.popup_delete_Inner {
background: white;
-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.4);
box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
overflow-x: hidden;
width: 350px;
max-height: 642px;
}
.popup_delete_Inner h3 {
background: -moz-linear-gradient(#444,#000);
background-color: #000;
background-image: -webkit-linear-gradient(#444,#000);
text-align: left;
color: white;
padding: 8px 10px 9px;
font-size: 16px;
font-weight: 300;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.Box_delete {
background: #f0f0f0;
padding: 9px;
}
.Box_container {
background: #fdfdfd;
border: 1px solid #dcdcdc;
}
.delete_center {
padding: 9px;
text-align: center;
}
.delete_center p {
margin-bottom: 5px;
}
.popup_delete_Close {
cursor: pointer;
position: absolute;
right: 20px;
top: 15px;
}

/*-------------------Aviso antes de apagar Mensagem----------------*/

Até
Roevs

Roevs
Membro Entusiasta
Membro Entusiasta

Membro desde : 10/02/2012
Mensagens : 6484
Pontos : 8343

https://www.sololevelingrpg.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Correção nos templates

Mensagem por otmundobr 06.07.14 0:55

@Matheus escreveu:Procure por isso em seu template:

Código:
 <a href="{U_INDEX}" id="pun-logo"><img src="{LOGO}" alt="{L_INDEX}" /></a>

Onde está: {LOGO}, coloque entre as aspas a URL de sua imagem.
Quanto ao problema em seu rodapé, poderia me passar o link da página onde o problema é encontrado?

Até mais.

eu fiz oq vc falou mais nem o logo e nem o menu de navegação aparece
ah e o problema do rodapé ocorre em qualquer fóruns e sub-fóruns da pagina
otmundobr

otmundobr
***

Membro desde : 18/07/2011
Mensagens : 174
Pontos : 289

http://otmundobr.forumeiros.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Correção nos templates

Mensagem por otmundobr 06.07.14 1:00

Quakeline escreveu:Olá,

Altere sua Folha de Estilo CSS por este

Código:
body {
background: #EDEFF1 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: #4E565E;
font: normal 11px "Trebuchet MS",tahoma,helvetica,arial,sans-serif;
}

#pun-intro {
  display: none;
}

#pun-navlinks {
  display: none;
}

#pun-announcement {
border-style: 0 px solid;
border-width: 0px;
padding: 1em;
background: white;
}

.pun {
  margin-top:10px;
  background: white;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 5px;
  -moz-box-shadow: rgba(0,0,0,0.1) 0px 1px 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 5px;
  border: 1px solid #D6D8D9;
  margin-bottom: 10px;
}

.pun .main-content {
border: 1px solid #fff;
}

thead {
display: none;
}

fieldset {
-webkit-margin-start: 2px;
-webkit-margin-end: 2px;
-webkit-padding-before: 0.35em;
-webkit-padding-start: 0.75em;
-webkit-padding-end: 0.75em;
-webkit-padding-after: 0.625em;
border: 0px;
border-image: initial;
}
.wrapper {
margin: 0 auto;
min-width: 980px;
max-width: 1600px;
width: 90%;
}

.guestMessage {
    background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/highlight.png") repeat-x scroll 0px 0px rgb(249, 215, 155);
    border: 1px solid rgb(235, 185, 98);
    color: rgb(184, 95, 29);
    font-size: 13px;
    line-height: 140%;
    box-shadow: 0px 1px 4px rgb(253, 229, 187);
    margin:5px;
    margin-bottom: 10px;
    padding: 10px;
    text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.55);
}

#pun-about {
font-size: 0.8em;
text-align: left;
text-shadow: rgba(255, 255, 255, 0.8) 0px 1px 0px;
background: transparent;
border: none;
}

#pun-about form {
display: none;
}

/*help button*/
.pun .main-head a.exthelp, .pun .main-head a.exthelp:link, .pun .main-head a.exthelp:visited {
color: black;
background-image: url(http://cdn2.iconfinder.com/data/icons/humano2/16x16/apps/gnome-help.png);
background-position: left;
background-repeat: no-repeat;
padding-left: 20px;
}

/*categoria*/
.main .main-head {
  background: #C00000  url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: white;
text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 0px;
padding: 12px;
font-size: 12px;
font-weight: 300;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset #778594 0px 1px 3px;
-moz-box-shadow: inset #778594 0px 1px 3px;
box-shadow: inset #778594 0px 1px 3px;
overflow: hidden;
margin-bottom: 2px;
}

.main .main-foot {
   background: #A9B4C0 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: white;
text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 0px;
padding: 12px;
font-size: 12px;
font-weight: 300;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset #778594 0px 1px 3px;
-moz-box-shadow: inset #778594 0px 1px 3px;
box-shadow: inset #778594 0px 1px 3px;
overflow: hidden;
margin-bottom: 2px;
}

.pun tbody.statused td.tcl {
  background: white;
}

.pun tbody.statused td.tcr {
  background: white;
  border-left: 0px;
}



.pun table.table td {
border-color: #F3F3F3;
border-width: 1px;
padding: 0.6em 0px 0.7em;
}

.pun .main table td.tc2, .pun .main table td.tc3 {
  background: white;
  border-right: none;
  border-left: none;
}

.pun fieldset, .pun img {
vertical-align: middle;
}

/*userbar*/
#user_bar {
background: #CCC url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
border-top: 1px solid #CBCDD1;
border-bottom: 1px solid #95999C;
-webkit-box-shadow: white 0px 1px 0px;
-moz-box-shadow: #fff 0px 1px 0px;
box-shadow: white 0px 1px 0px;
height: 38px;
margin-bottom: 10px;
}

#user_navigation {
float: left;
color: #9F9F9F;
font-size: 11px;
line-height: 36px;
height: 36px;
overflow: hidden;
font-weight: bold;
border-left: 1px solid rgba(255, 255, 255, 0.15);
}

#user_navigation .ipsList_inline li {
margin: 0;
padding: /;
float: left;
}

#user_navigation a {
color: white;
text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 1px;
float: left;
padding: 0 12px;
line-height: 36px;
outline: none;
height: 36px;
border-right: 1px solid rgba(255, 255, 255, 0.15);
}

#user_navigation a:hover {
background: rgba(255, 255, 255, 0.12);
}

#user_navigation #sign_in img, #user_navigation #register_link img {
vertical-align: top;
position: relative;
margin: 10px 2px 0 0;
}

.login {
background: none;
cursor: pointer;
padding: 5px;
}

.ipsList_inline > li {
display: inline-block;
margin: 0 3px;
}

/*logado*/
#avatar img {
position: relative;
vertical-align: top;
padding: 0;
height: 24px;
width: 24px;
border: 1px solid #959595;
background: white;
padding: 1px;
margin-top: 4px;
}
#avatar {
  float: left;
}

#notify_link img, #inbox_link img {
width: 20px;
height: 20px;
background-repeat: no-repeat;
vertical-align: middle;
background-position: 0 0;
margin-top: 7px;
}

#notify_link, #inbox_link {
vertical-align: middle;
width: 20px;
padding: 0px 8px !important;
position: relative;
}

#inbox_link img {
background-image: url('http://i.imgur.com/LqnYXZB.png');
}

#notify_link img {
background-image: url('http://i.imgur.com/x3ICStu.png');
}

/*branding*/
#branding.withFixedTop {
padding-top: 38px;
}

#branding {
background: #262626 url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/branding_bg.png') repeat;
height: 69px;
border-bottom: 1px solid #141414;
}

#logo a:hover img {
opacity: 0.7;
}

#logo img {
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
}

#logo {
float: left;
}

/*navigation*/
#primary_nav {
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans30.png") repeat;
background: rgba(0, 0, 0, 0.3);
-webkit-box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px, inset black 0px 1px 4px;
-moz-box-shadow: rgba(255,255,255,0.1) 0px 1px 0px, rgba(255,255,255,0.05) 0px 0px 0px 1px, inset #000 0px 1px 4px;
box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px, inset black 0px 1px 4px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
font-size: 12px;
text-transform: uppercase;
font-weight: 700;
font-family: "Lato","Trebuchet MS",Arial,Helvetica,sans-serif;
float: right;
margin-top: 16px;
}

#community_app_menu > li {
margin: 0;
position: relative;
}

#community_app_menu > li.active > a {
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/nav_active.png") repeat;
background: rgba(255, 255, 255, 0.07);
color: #A2ECFF;
text-shadow: #A2ECFF 0px 0px 4px;
position: relative;
}

#community_app_menu > li > a:hover, #community_app_menu > li > a.menu_active {
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/nav_active.png") repeat;
background: rgba(255, 255, 255, 0.05);
color: white;
text-shadow: white 0px 0px 4px;
}

#community_app_menu > li > a {
color: #E9EBED;
display: block;
outline: none;
padding: 0px 10px;
line-height: 35px;
height: 35px;
-webkit-transition: all 0.15s ease-in-out;
-o-transition: all 0.15s ease-in-out;
-moz-transition: all 0.15s ease-in-out;
}

/*search box*/
#search {
  margin: 4px 0 0 0;
}

#search_wrap {
position: relative;
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans20.png") repeat;
background: rgba(0, 0, 0, 0.2);
display: block;
padding: 0 26px 0 7px;
height: 26px;
line-height: 25px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset rgba(0, 0, 0, 0.35) 0px 1px 3px, rgba(255, 255, 255, 0.2) 0px 1px 0px;
-moz-box-shadow: inset rgba(0,0,0,0.35) 0px 1px 3px, rgba(255,255,255,0.2) 0px 1px 0px;
box-shadow: inset rgba(0, 0, 0, 0.35) 0px 1px 3px, rgba(255, 255, 255, 0.2) 0px 1px 0px;
min-width: 250px;
}

#main_search {
font-size: 12px;
border: 0;
padding: 0;
background: transparent;
width: 138px;
outline: 0;
color: white;
text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 1px;
margin-top:5px;
}
  
#search_options_menucontent {
min-width: 130px;
padding: 0;
background: white;
border: 1px solid #C6C6C6;
}

#search_options {
max-width: 80px;
text-overflow: ellipsis;
overflow: hidden;
font-size: 10px;
height: 20px;
line-height: 20px;
margin: 3px 3px 3px 0;
padding: 0 6px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
background: url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans40.png') repeat;
background: rgba(0, 0, 0, 0.4);
display: inline-block;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
color: white;
float: right;
}

#search .submit_input {
background: #292929 url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/search_icon.png') no-repeat 50%;
text-indent: -3000em;
padding: 0;
border: 0;
display: block;
width: 26px;
height: 26px;
position: absolute;
right: 0;
top: 0;
bottom: 0;
-moz-border-radius: 0 3px 3px 0;
border-radius: 0 3px 3px 0;
border-radius: 0 3px 3px 0;
margin-right:-1px;
}

#search .submit_input:hover{background-color:#3e3e3e}

#adv_search {
width: 26px;
height: 26px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background: url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/advanced_search.png') no-repeat 50% 50%;
text-indent: -3000em;
display: inline-block;
margin-left: 3px;
}

#adv_search:hover{background-color:rgba(0,0,0,0.2)}

.right {
float: right;
}

/*Link*/
a {text-decoration:none;}
li{list-style-type:none;}

/*secondary navigation*/
.clearfix::after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
overflow: hidden;
}

#secondary_navigation.stickyTop {
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 999;
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans80.png") repeat;
background: rgba(0, 0, 0, 0.8);
}

#secondary_navigation {
background: #1C1C1C;
font-size: 11px;
text-shadow: rgba(0, 0, 0, 0.8) 0px 1px 1px;
-webkit-box-shadow: rgba(255, 255, 255, 0.05) 0px 1px 0px;
-moz-box-shadow: rgba(255,255,255,0.05) 0px 1px 0px;
box-shadow: rgba(255, 255, 255, 0.05) 0px 1px 0px;
border-bottom: 1px solid #0D0D0D;
overflow: hidden;
line-height: 37px;
clear: both;
}

#secondary_navigation {
font-size: 11px;
text-shadow: rgba(0, 0, 0, 0.8) 0px 1px 1px;
line-height: 37px;
}

#secondary_navigation #breadcrumb li a:hover span {
background-position: 100% -43px;
}

#secondary_navigation #breadcrumb li.first a span {
padding-left: 12px;
}

#secondary_navigation #breadcrumb li span {
display: block;
padding-right: 17px;
padding-left: 4px;
background: url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/secondary_nav.png') no-repeat 100% 0;
color: #DDD;
}

.breadcrumb {
color: #777;
font-size: 11px;
}

#secondary_navigation a:hover {
color: white;
text-shadow: white 0px 0px 3px;
}

#secondary_navigation a {
color: #DDD;
line-height: 37px;
}

#secondary_links {
overflow: hidden;
}

#secondary_links a {
padding: 0 12px;
display: block;
}

#secondary_links img {
vertical-align: top;
width: 16px;
height: 16px;
position: relative;
margin: 10px -3px 0 -3px;
}

#secondary_links a:hover
img{opacity:0.7}

#secondary_links li {
float: left;
margin: 0;
}

.right {
float: right;
}

/*Statistics*/
#board_statistics {
-moz-border-radius: 3px;
-moz-box-shadow: inset rgba(0,0,0,0.3) 0 1px 2px, rgba(255,255,255,1) 0 1px 0;
-webkit-border-radius: 3px;
-webkit-box-shadow: inset rgba(0, 0, 0, 0.3) 0 1px 2px, rgba(255, 255, 255, 1) 0 1px 0;
background: #EDEFF1 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: #768089;
text-shadow: rgba(255, 255, 255, 0.9) 0px 1px 0px;
-webkit-box-shadow: inset #B3BAC1 0px 1px 3px;
-moz-box-shadow: inset #b3bac1 0px 1px 3px;
box-shadow: inset #B3BAC1 0px 1px 3px;
padding: 3px 7px;
display: inline-block;
font-weight: 700;
margin-right: 3px;
text-shadow: rgba(255, 255, 255, 0.6) 0 1px 0;
border-top:none;
margin-left:15px;
}

/*Statistics*/
.statistics_head{
background: #262626;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset black 0px 1px 3px;
-moz-box-shadow: inset #000 0px 1px 3px;
box-shadow: inset black 0px 1px 3px;
font-size: 11px;
font-weight: bold;
padding: 8px;
}

.statistics_head h1{
color: white;
font-size: 12px;
font-weight: bold;
tahoma,helvetica,arial,sans-serif;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
margin-left:28px;
}

.icon {
background-image: url('http://cdn3.iconfinder.com/data/icons/prettyoffice/16/chart.png');
background-color: transparent;
background-repeat: no-repeat;
width: 16px;
height: 16px;
display: inline-block;
vertical-align: middle;
}

#onlinelist {
background: white;
border: 0px;
border-top:none;
}

#onlinechat {
background: white;
border-top: 1px solid #D8D8D8;
border-top:none;
}

#pun-visit, .main-box {
font-size:10px;
background: white;
border:none;
margin: 0px 0px 1em;
padding: 0.6em 1em;
}

/*rodapé*/
#footer_utilities, #footer_utilities a {
color: #CCC;
}

#footer_utilities {
padding: 8px;
font-size: 11px;
height: 45px;
position: relative;
border-top: 1px solid #141414;
text-shadow: rgba(0, 0, 0, 0.4) 0px -1px 0px;
background: #262626 url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/branding_bg.png') repeat;
}

#footer_utilities img {
  vertical-align: middle;
}
  
#stats_div {
height: 0px;
overflow: hidden;
}

.skin_link, .skin_link a {
color: #CCC !important;
}

#copyright {
text-align: right;
line-height: 22px;
float: right;
}

#footer_utilities .ipsList_inline {
margin-top: 3px;
clear: left;
float: left;
}

#backtotop, #bottomScroll {
width: 24px;
height: 24px;
line-height: 20px;
left: 50%;
top: 50%;
margin-left: -12px;
margin-top: -12px;
position: absolute;
display: inline-block;
background: url("https://cdn4.iconfinder.com/data/icons/cc_mono_icon_set/blacks/32x32/arrow_top.png") repeat;
background: rgba(0, 0, 0, 0.3);
-webkit-box-shadow: inset rgba(0, 0, 0, 0.7) 0px 1px 3px, rgba(255, 255, 255, 0.07) 0px 1px 0px;
-moz-box-shadow: inset rgba(0,0,0,0.7) 0px 1px 3px, rgba(255,255,255,0.07) 0px 1px 0px;
box-shadow: inset rgba(0, 0, 0, 0.7) 0px 1px 3px, rgba(255, 255, 255, 0.07) 0px 1px 0px;
text-align: center;
-moz-border-radius: 16px;
-webkit-border-radius: 16px;
border-radius: 16px;
outline: 0;
}

#bottomScroll:hover, #backtotop:hover {
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans70.png") repeat;
background: rgba(0, 0, 0, 0.7);
color: white;
}

#backtotop img {
  margin-top: 5px;
}

#backtotop:hover img {
opacity: 1;
}

#backtotop img {
opacity: 0.4;
}

#footer_utilities .ipsList_inline > li > a {
margin-right: 0px;
padding: 4px 10px;
display: inline-block;
}

/*standalone*/
.main-content.standalone .button {
border-radius: 5px;
}

/*user*/
.pun .user-ident .username {
display: block;
font-size: 1.3em;
font-weight: 400!important;
margin-top: 5px;
padding: 8px!important;
position: relative;
text-align: center;
text-decoration: none;
}

/*post*/
.pun .paged-foot, .pun .paged-head {
background-color: white;
border: 0px;
}

.pun .post {
  background: white;
}

.pun .postmain {
background-color: #fff;
border-left: 0px;
margin-left: 17em;
}

.pun .post .user {
    margin-top: 10px;
    display: block;
    border-right: 1px dashed #E4E8ED;
    position:relative;
    font-size: 12px;
    text-align: center;
}

.pun .user .user-ident .user-basic-info {
  text-align: center;
}

.pun .topic {
background: #fff;
border: 0px;
border-style: none solid;
}

#first-post-br {
border: 0;
border-top: 0px;
}

.pun .posthead {
  background: #282828 url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/branding_bg.png') repeat;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset black 0px 1px 3px;
-moz-box-shadow: inset #000 0px 1px 3px;
box-shadow: inset black 0px 1px 3px;
padding: 0 10px;
height: 36px;
line-height: 36px;
margin-top: 8px;
  border-bottom: 0px;
}

.post-options img:hover {
opacity: 0.7;
}

.posting img:hover {
opacity: 0.9;
}

.postfoot {
  border-top: 0px;
}

.pun .postfoot {
background: #EDEFF1 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset #B3BAC1 0px 1px 3px;
-moz-box-shadow: inset #b3bac1 0px 1px 3px;
box-shadow: inset #B3BAC1 0px 1px 3px;
margin-top: 10px;
}

.pun .posthead h2 {
  color: #BBB;
font-size: 11px;
font-weight: normal;
}

/*user img*/
.user-basic-info a img {
padding: 1px;
border: 1px solid #D5D5D5;
background: white;
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.user-basic-info a img:hover {
 border-color: #A1A1A1;
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

/*quick-reply*/
#quick_reply #textarea_content {
       clear: both;
       margin-left: 0px;
       margin-right: 0px;
       width: 100% !important;
       height: auto !important;
     }
      
     #text_editor_controls {
       display: !important;
     }
        
 #pun-qpost #textarea_content dt label{
  float:left;
}

fieldset.frm-set dl dd {
margin: auto!important;
}

/*smiley-box e quickreply*/
#smiley-box iframe{height: 280px;}
#smilies_categ{padding: 0px 0}
#smiley-box{border:1px solid #DDD;width:160px;margin:10px 0!important;padding:5px}
.pun .frm .frm-buttons input {
 
border: 1px solid #CCC;
border-bottom: 1px solid #BBB;
border-image: initial;
border-radius: 4px;
box-shadow: 0 1px 2px #ccc;
color: #333;
cursor: pointer;
margin: 0 2px 16px;
padding: 7px 22px;
}

#quick_reply fieldset.frm-set dl dd {
background: white;
border: solid 1px #CCC;
margin: 0 auto;
}
#quick_reply .frm-buttons {
-moz-border-radius-bottomleft: 5px;
-moz-border-radius-bottomright: 5px;
-webkit-border-bottom-left-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
background-color: #EEE;
border: solid 1px #CCC;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
border-top: 0;
margin: 0 auto;
padding: 5px;
text-align: center;
}

#textarea_content dt {display:none}

a.button2, body:last-child a.button1, button.button2, input.button1, input.button2 {
-webkit-transition: all 0.218s;
border: 1px solid;
border-radius: 3px;
padding: 0px 0.91em;
}
button.button2, input.button2 {
background-position: 50% 0%;
background-repeat: repeat-x;
border: 1px solid #BCBCBC;
}
a.button2, body:last-child a.button1, button.button2, input.button1, input.button2 {
padding: 1px 0px;
}
button.button2, input.button2 {
background-position: 50% 0%;
background-repeat: repeat-x;
border: 1px solid #BCBCBC;
margin: 0px 0.25em;
overflow: visible;
padding: 2px 3px;
}

/*profile*/
#profile-advanced-right .main-head .h3 {
-moz-border-radius: 10px;
-moz-box-shadow: inset 0 1px 3px rgba(0,0,0,0.5), rgba(255,255,255,0.16) 0 1px 0px, rgba(255,255,255,0.05) 0 0 0 1px;
-webkit-border-radius: 10px!important;
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.16) 0 1px 0px, rgba(255, 255, 255, 0.05) 0 0 0 1px;
background: rgba(0, 0, 0, 0.4);
border-radius: 10px;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.16) 0 1px 0px, rgba(255, 255, 255, 0.05) 0 0 0 1px;
color: white;
font-weight: 700;
opacity: 1;
padding: 4px 10px;
}

#profile-advanced-right .module.main .main-head {
background-color: #183C5D;
background-image: url(http://i.imgur.com/JnYGc.png);
border: none;
border-radius: 5px 5px 0 0;
box-shadow: none;
color: white;
font-size: 12px;
font-weight: 300;
overflow: hidden;
padding: 9px 12px;
text-shadow: black 0 1px 2px;
}

#profile-advanced-left #profile-advanced-details .main-head .subtitle {
font-size: 25px;
font-weight: 700;
line-height: 60px;
padding-left: 75px;
}

#profile-advanced-left #profile-advanced-details .main-head {
-webkit-box-shadow: inset 0 1px 0 #008186, inset 1px 0 0 #056B4E, inset -1px 0 0 #056B4E, inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 1px 2px #056B4E;
background-image: url(http://img86.xooimage.com/files/2/3/a/captur-36b3f67.png);
background-position: left;
background-color:transparent;
background-repeat: no-repeat;
border: 1px solid #026375;
height: 70px;
}

#profile-advanced-right .main-head .h3 span {
color: #FFD600!important;
font-size: 14px!important;
}

#profile-advanced-left #profile-advanced-details .main-head .subtitle span {
color: #00B8FF!important;
}

#profile-advanced-right .main-content.clearfix.center {
color: #777575;
font-size: 15px;
font-weight: 700;
text-shadow: 1px 1px 2px #F0F0F0;
}

/*chatbox*/
#chatbox, #chatbox_footer, #chatbox_members {
background: white;
}

.boxOut_chatbox {
background: white;
border: 1px solid #D2D2D2;
border-radius: 4px;
padding: 8px;
}

body.chatbox{background-color:#fff;background-image:none;margin:0;padding:0}#chatbox_header{ background: url ('http://i49.tinypic.com/2vkfaqh.jpg') repeat-x 0 0; height:40px; border-radius: 5px 5px 0px 0px; padding-bottom:0px;}.chatbox-title,.chatbox-title a.chat-title{color:#dedfdf;text-decoration:none}.chatbox-title{float:left;margin:0;padding:2px 5px 0;width:15em}.chatbox-options{float:right;font-size:11px;list-style:none;margin:.7em .5em .5em}.chatbox-options li{display:inline}.chatbox-options li,.chatbox-options li a,.chatbox-options li label{color:#dedfdf}#chatbox_members{border-right:1px dashed #ccc;bottom:30px;overflow:auto;position:absolute;top:30px;width:180px}#chatbox_messenger_form{margin:10px 0 0}#chatbox_members .member-title{background-color:#f4f9fd;background-image:none;color:#00569c;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;padding:.5em .25em;text-align:center}#chatbox_members ul{list-style:none;margin:0 0 0 1em}#chatbox_members ul li{margin:.5em .5em .5em 0}#chatbox{bottom:30px;left:181px;line-height:10px;overflow:auto;position:absolute;right:0;top:30px}#chatbox p{line-height:1.2em}.chatbox_row_1{background-color:#fbfbfb;padding:4px}.chatbox_row_2{background-color:#f4f4f4;padding:4px}.chatbox_row_3{background-color:#f4f9fd;padding:4px}#chatbox .user{font-weight:700}.memberlist_row_1{background-color:#fbfbfb}#chatbox_footer{border-top:1px dashed #ccc;bottom:0;left:0;position:absolute;right:0}#message,#submit_button{border-width:1px}.fontbutton{background:#E1E1E2 none repeat scroll 0;border:medium none;color:#000;cursor:pointer;float:left;margin-right:10px;padding:1px;text-align:left}.fontbutton_normal{background:#E1E1E2}.fontbutton_selected{background:#BBC7CE;border:1px solid #22229C}.fontbutton_clicked{background:#959595;border:1px solid #22229C}.fontbutton_hover{background:#E1E1E2;border:1px solid #22229C}* html #chatbox-members{height:expression((document.documentElement.clientHeight?document.documentElement.clientHeight:document.body.clientHeight) - ((parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 3) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2px * 0) ) + px)}* html #chatbox{height:expression((document.documentElement.clientHeight?document.documentElement.clientHeight:document.body.clientHeight) - ((parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 3) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2px * 0) ) + px);width:expression((document.documentElement.clientWidth?document.documentElement.clientWidth:document.body.clientWidth) - ((parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 10) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 1) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2px * 1.3) ) + px)}* html #chatbox-footer{width:expression((document.documentElement.clientWidth?document.documentElement.clientWidth:document.body.clientWidth) - ((parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 0) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 0) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2px * 0) ) + px)}#chatbox_contextmenu{background-color:#f4f9fd;border:2px solid #000}#chatbox_contextmenu p{background:#fbfbfb;border-bottom:1px solid #777;font-family:verdana, arial, sans-serif;margin:0;padding:1px 4px}#chatbox_contextmenu p.hover{background:#f4f4f4}#chatbox_contextmenu p.close{background:url();color:#fff;font-size:95%;padding:1px}#chatbox_contextmenu p.close img{padding-left:20px;vertical-align:middle}#chatbox_contextmenu a{color:#00569c;font-size:95%;text-decoration:none}.module{overflow:hidden!important}
h2.chatbox-title a.chat-title{color:#fff;font-size:1.2em;font-weight:700;line-height:1.1em;text-align:center;text-shadow:0 1px 0 #CCC,0 2px 0 #C9C9C9,0 3px 0 #BBB,0 3px 0 #B9B9B9,0 4px 0 #AAA,0 5px 1px rgba(0,0,0,.1),0 0 5px rgba(0,0,0,.1),0 1px 3px rgba(0,0,0,.3),0 3px 5px rgba(0,0,0,.2),0 5px 10px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.2),0 20px 20px rgba(0,0,0,.15)}#chatbox_header{height:30px}.aviso_normas{background:none repeat scroll 0 0 #F0E8E0;border:1px solid #C00000;font-family:Tahoma,Arial;font-size:11px;height:24px;line-height:24px;margin-bottom:3px;text-align:center}#chatbox_members .member-title{background:#F8E7DD;border-bottom:2px solid red;color:#A30000;text-shadow:1px 0 0 #fff}#chatbox_members{background:#F1F1F1;border-right:1px solid #C2C2C2}#chatbox_footer{background:#E9E9E9;border-top:1px solid #CACACA}#chatbox p{border-bottom:1px solid #DDD;border-top:1px solid #fff}.chatbox_row_1{background-color:#F8F8F8}#chatbox a,#chatbox_members a{color:#006B6B}#chatbox_messenger_form div.right img{visibility:hidden}

#chatbox_header .main-head {
background-image: url(http://i1135.photobucket.com/albums/m622/Mazeko1/bg-2.png) repeat;
border-radius: 3px;
height:40px;
}

#chatbox p {
border-bottom: 1px solid #DDD;
border-top: 1px solid white;
}
#chatbox p {
line-height: 1.2em;
}

#divsmilies img + img{visibility:visible!important}#divbold,#divcolor,#divitalic,#divsmilies,#divstrike,#divunderline{background-position:center;background-repeat:no-repeat;border:1px solid #383838;border-radius:5px}#divbold{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/bold10.png)}#divitalic{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/italic10.png)}#divunderline{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/underl10.png)}#divstrike{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/strike10.png)}#divcolor{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/font_c11.png)}#divsmilies{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/emotic10.png)}#código_creado_por_welmy{background:#E6E6E6;border:1px solid #222;border-radius:3px;font-family:arial;margin:auto;padding:5px;text-shadow:1px 1px #fff;width:228px}#th_avarx{background-image:url(http://i.imgur.com/EkPsC.png);background-size:100%;border:1px solid #1A1A1A;border-radius:2px;box-shadow:0 1px 2px #000;height:70px;width:70px}#th_avarx img{border-radius:2px;height:70px;width:70px}.lnk a{margin-left:5px;margin-right:5px}
#simple-wrap {
  background:white;
}

#chatbox_messenger_form input#message {
min-width: 450px;
}
#message, #submit_button {
border-width: 1px;
}

#chatbox_messenger_form #submit_button:hover {
background: #E2FCFF;
border: 1px solid #4CC3FC;
color: #027FAF;
}

#message, #submit_button {
border-width: 1px;
}

.pun .frm .frm-buttons input, input[type="reset"], input[type="submit"] {
border: 1px solid #CCC;
border-bottom: 1px solid #BBB;
border-radius: 4px;
box-shadow: 0 1px 2px #CCC;
color: #333;
}

input[type="password"], input[type="text"], textarea {
-webkit-border-radius: 3px;
background-color: white;
border: 1px solid #CCC;
border-radius: 3px;
color: #515151;
cursor: text;
display: inline-block;
font-size: 13px;
line-height: 15px;
outline: 0;
}

/*profile*/
#profile-advanced-right {
float: left;
width: 280px;
}
#profile-advanced-layout {
float: right;
margin-left: -300px;
margin-right: 0px;
}
#profile-advanced-left {
margin-left: 305px;
margin-right: 0px;
}
#profile-advanced-layout #new-message {
clear: both;
position: relative;
}
/*pagination*/
.paging a:hover, .paging b, td p.pag a:hover, td p.pag b {
background: #51A3CE;
color: white;
text-shadow: none;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset rgba(0, 0, 0, 0.4) 0px 1px 3px;
-moz-box-shadow: inset rgba(0,0,0,0.4) 0px 1px 3px;
box-shadow: inset rgba(0, 0, 0, 0.4) 0px 1px 3px;
padding: 1px 8px;
cursor: default;
}

.paged-foot .paging a, .paging a, td p.pag a {
background: #EDEFF1 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: #768089;
text-shadow: rgba(255, 255, 255, 0.9) 0px 1px 0px;
-webkit-box-shadow: inset #B3BAC1 0px 1px 3px;
-moz-box-shadow: inset #b3bac1 0px 1px 3px;
box-shadow: inset #B3BAC1 0px 1px 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
display: inline-block;
padding: 1px 8px;
text-transform: lowercase;
font-size: 11px;
font-weight: normal;
}

.paged-foot .paging a, .paged-foot .paging a:hover, .paged-foot .paging b, .paging a, .paging b, td p.pag a, td p.pag b {
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
font-size: 12px!important;
margin-right: 3px!important;
padding: 6px 9px!important;
}

/*botões de votar*/
.vote {
padding: 2px;
text-align: center;
width:16px;
background-color: #eaeaea;
border: 1px solid #d4d6d5;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-top-left-radius:5px;
-webkit-border-bottom-left-radius:5px;
-webkit-border-top-right-radius:5px;
-webkit-border-bottom-right-radius:5px;
}

.vote .vote-no-bar {
display: none;
}

.vote .vote-bar {
border-left: 0px;
border-right: 0px;
border-top: 1px solid #ffffff;
border-bottom: 1px solid #d4d6d5;
font-size: 0px;
height: 50px;
margin: 0px;
width: 16px;
}

.vote .vote-bar-plus {
margin-left: 5px;
width: 7px;
}

.vote .vote-bar-minus {
margin-left: 5px;
width: 7px;
}

.vote .vote-button a[href $="plus"] {
background:url('http://cdn3.iconfinder.com/data/icons/fugue/icon_shadowless/plus-circle.png');
background-repeat: no-repeat;
color:transparent;
display:block;
height:16px;
width:16px;
}

.vote .vote-button a[href $="minus"] {
background-image:url('http://cdn2.iconfinder.com/data/icons/fugue/icon_shadowless/minus_circle.png');
background-repeat: no-repeat;
color:transparent;
display:block;
height:16px;
width:16px;
}

/*----------------Ranks-------------------*/

.userVIP, .userVIP-ROSA, .userSuporte, .userADM, .userNovato, .userModerador, .userGerente, .userDesigner, .userMembro {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
background: #65a830;
border-radius: 3px;
color: #fff;
display: inline-block;
font-size: 11px;
font-weight: 700;
margin-top: 5px;
padding: 3px 8px;
text-shadow: rgba(0,0,0,0.2) 0 -1px 0;
}


.userNovato {
background: #4d4d4d;
}

  
.userADM {
background: #d71515;
}

.userModerador {
background: #0077db;
}

.userGerente {
background: #a500db;
}

.userDesigner{
background: #ffc000;
}

.userSuporte{
background: #00d1de;
}

.userVIP{
background: #1be300;
}

.userVIP-ROSA{
background: #ff00ea;
}

.userMembro{
background: #4d4d4d;
}  

/*-------------------Aviso antes de apagar Mensagem----------------*/

.popup_delete {
background-color: #464646;
background-color: rgba(70, 70, 70, 0.6);
padding: 4px;
-webkit-box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7);
box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7 );
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
z-index: 999;
bottom: 5px;
right: 5px;
position: fixed;
}
.popup_delete_Inner {
background: white;
-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.4);
box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
overflow-x: hidden;
width: 350px;
max-height: 642px;
}
.popup_delete_Inner h3 {
background: -moz-linear-gradient(#444,#000);
background-color: #000;
background-image: -webkit-linear-gradient(#444,#000);
text-align: left;
color: white;
padding: 8px 10px 9px;
font-size: 16px;
font-weight: 300;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.Box_delete {
background: #f0f0f0;
padding: 9px;
}
.Box_container {
background: #fdfdfd;
border: 1px solid #dcdcdc;
}
.delete_center {
padding: 9px;
text-align: center;
}
.delete_center p {
margin-bottom: 5px;
}
.popup_delete_Close {
cursor: pointer;
position: absolute;
right: 20px;
top: 15px;
}

/*-------------------Aviso antes de apagar Mensagem----------------*/

Até

Não Funcionou Chorando ou muito tr 
otmundobr

otmundobr
***

Membro desde : 18/07/2011
Mensagens : 174
Pontos : 289

http://otmundobr.forumeiros.com/

Ir para o topo Ir para baixo

Membro Entusiasta

Tópico resolvido Re: Correção nos templates

Mensagem por Roevs 06.07.14 1:05

Olá,

Substitua por este

Código:
body {
background: #EDEFF1 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: #4E565E;
font: normal 11px "Trebuchet MS",tahoma,helvetica,arial,sans-serif;
}

#pun-announcement {
border-style: 0 px solid;
border-width: 0px;
padding: 1em;
background: white;
}

.pun {
  margin-top:10px;
  background: white;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 5px;
  -moz-box-shadow: rgba(0,0,0,0.1) 0px 1px 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 5px;
  border: 1px solid #D6D8D9;
  margin-bottom: 10px;
}

.pun .main-content {
border: 1px solid #fff;
}

thead {
display: none;
}

fieldset {
-webkit-margin-start: 2px;
-webkit-margin-end: 2px;
-webkit-padding-before: 0.35em;
-webkit-padding-start: 0.75em;
-webkit-padding-end: 0.75em;
-webkit-padding-after: 0.625em;
border: 0px;
border-image: initial;
}
.wrapper {
margin: 0 auto;
min-width: 980px;
max-width: 1600px;
width: 90%;
}

.guestMessage {
    background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/highlight.png") repeat-x scroll 0px 0px rgb(249, 215, 155);
    border: 1px solid rgb(235, 185, 98);
    color: rgb(184, 95, 29);
    font-size: 13px;
    line-height: 140%;
    box-shadow: 0px 1px 4px rgb(253, 229, 187);
    margin:5px;
    margin-bottom: 10px;
    padding: 10px;
    text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.55);
}

#pun-about {
font-size: 0.8em;
text-align: left;
text-shadow: rgba(255, 255, 255, 0.8) 0px 1px 0px;
background: transparent;
border: none;
}

#pun-about form {
display: none;
}

/*help button*/
.pun .main-head a.exthelp, .pun .main-head a.exthelp:link, .pun .main-head a.exthelp:visited {
color: black;
background-image: url(http://cdn2.iconfinder.com/data/icons/humano2/16x16/apps/gnome-help.png);
background-position: left;
background-repeat: no-repeat;
padding-left: 20px;
}

/*categoria*/
.main .main-head {
  background: #C00000  url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: white;
text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 0px;
padding: 12px;
font-size: 12px;
font-weight: 300;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset #778594 0px 1px 3px;
-moz-box-shadow: inset #778594 0px 1px 3px;
box-shadow: inset #778594 0px 1px 3px;
overflow: hidden;
margin-bottom: 2px;
}

.main .main-foot {
  background: #A9B4C0 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: white;
text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 0px;
padding: 12px;
font-size: 12px;
font-weight: 300;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset #778594 0px 1px 3px;
-moz-box-shadow: inset #778594 0px 1px 3px;
box-shadow: inset #778594 0px 1px 3px;
overflow: hidden;
margin-bottom: 2px;
}

.pun tbody.statused td.tcl {
  background: white;
}

.pun tbody.statused td.tcr {
  background: white;
  border-left: 0px;
}



.pun table.table td {
border-color: #F3F3F3;
border-width: 1px;
padding: 0.6em 0px 0.7em;
}

.pun .main table td.tc2, .pun .main table td.tc3 {
  background: white;
  border-right: none;
  border-left: none;
}

.pun fieldset, .pun img {
vertical-align: middle;
}

/*userbar*/
#user_bar {
background: #CCC url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
border-top: 1px solid #CBCDD1;
border-bottom: 1px solid #95999C;
-webkit-box-shadow: white 0px 1px 0px;
-moz-box-shadow: #fff 0px 1px 0px;
box-shadow: white 0px 1px 0px;
height: 38px;
margin-bottom: 10px;
}

#user_navigation {
float: left;
color: #9F9F9F;
font-size: 11px;
line-height: 36px;
height: 36px;
overflow: hidden;
font-weight: bold;
border-left: 1px solid rgba(255, 255, 255, 0.15);
}

#user_navigation .ipsList_inline li {
margin: 0;
padding: /;
float: left;
}

#user_navigation a {
color: white;
text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 1px;
float: left;
padding: 0 12px;
line-height: 36px;
outline: none;
height: 36px;
border-right: 1px solid rgba(255, 255, 255, 0.15);
}

#user_navigation a:hover {
background: rgba(255, 255, 255, 0.12);
}

#user_navigation #sign_in img, #user_navigation #register_link img {
vertical-align: top;
position: relative;
margin: 10px 2px 0 0;
}

.login {
background: none;
cursor: pointer;
padding: 5px;
}

.ipsList_inline > li {
display: inline-block;
margin: 0 3px;
}

/*logado*/
#avatar img {
position: relative;
vertical-align: top;
padding: 0;
height: 24px;
width: 24px;
border: 1px solid #959595;
background: white;
padding: 1px;
margin-top: 4px;
}
#avatar {
  float: left;
}

#notify_link img, #inbox_link img {
width: 20px;
height: 20px;
background-repeat: no-repeat;
vertical-align: middle;
background-position: 0 0;
margin-top: 7px;
}

#notify_link, #inbox_link {
vertical-align: middle;
width: 20px;
padding: 0px 8px !important;
position: relative;
}

#inbox_link img {
background-image: url('http://i.imgur.com/LqnYXZB.png');
}

#notify_link img {
background-image: url('http://i.imgur.com/x3ICStu.png');
}

/*branding*/
#branding.withFixedTop {
padding-top: 38px;
}

#branding {
background: #262626 url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/branding_bg.png') repeat;
height: 69px;
border-bottom: 1px solid #141414;
}

#logo a:hover img {
opacity: 0.7;
}

#logo img {
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
}

#logo {
float: left;
}

/*navigation*/
#primary_nav {
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans30.png") repeat;
background: rgba(0, 0, 0, 0.3);
-webkit-box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px, inset black 0px 1px 4px;
-moz-box-shadow: rgba(255,255,255,0.1) 0px 1px 0px, rgba(255,255,255,0.05) 0px 0px 0px 1px, inset #000 0px 1px 4px;
box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px, inset black 0px 1px 4px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
font-size: 12px;
text-transform: uppercase;
font-weight: 700;
font-family: "Lato","Trebuchet MS",Arial,Helvetica,sans-serif;
float: right;
margin-top: 16px;
}

#community_app_menu > li {
margin: 0;
position: relative;
}

#community_app_menu > li.active > a {
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/nav_active.png") repeat;
background: rgba(255, 255, 255, 0.07);
color: #A2ECFF;
text-shadow: #A2ECFF 0px 0px 4px;
position: relative;
}

#community_app_menu > li > a:hover, #community_app_menu > li > a.menu_active {
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/nav_active.png") repeat;
background: rgba(255, 255, 255, 0.05);
color: white;
text-shadow: white 0px 0px 4px;
}

#community_app_menu > li > a {
color: #E9EBED;
display: block;
outline: none;
padding: 0px 10px;
line-height: 35px;
height: 35px;
-webkit-transition: all 0.15s ease-in-out;
-o-transition: all 0.15s ease-in-out;
-moz-transition: all 0.15s ease-in-out;
}

/*search box*/
#search {
  margin: 4px 0 0 0;
}

#search_wrap {
position: relative;
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans20.png") repeat;
background: rgba(0, 0, 0, 0.2);
display: block;
padding: 0 26px 0 7px;
height: 26px;
line-height: 25px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset rgba(0, 0, 0, 0.35) 0px 1px 3px, rgba(255, 255, 255, 0.2) 0px 1px 0px;
-moz-box-shadow: inset rgba(0,0,0,0.35) 0px 1px 3px, rgba(255,255,255,0.2) 0px 1px 0px;
box-shadow: inset rgba(0, 0, 0, 0.35) 0px 1px 3px, rgba(255, 255, 255, 0.2) 0px 1px 0px;
min-width: 250px;
}

#main_search {
font-size: 12px;
border: 0;
padding: 0;
background: transparent;
width: 138px;
outline: 0;
color: white;
text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 1px;
margin-top:5px;
}
 
#search_options_menucontent {
min-width: 130px;
padding: 0;
background: white;
border: 1px solid #C6C6C6;
}

#search_options {
max-width: 80px;
text-overflow: ellipsis;
overflow: hidden;
font-size: 10px;
height: 20px;
line-height: 20px;
margin: 3px 3px 3px 0;
padding: 0 6px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
background: url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans40.png') repeat;
background: rgba(0, 0, 0, 0.4);
display: inline-block;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
color: white;
float: right;
}

#search .submit_input {
background: #292929 url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/search_icon.png') no-repeat 50%;
text-indent: -3000em;
padding: 0;
border: 0;
display: block;
width: 26px;
height: 26px;
position: absolute;
right: 0;
top: 0;
bottom: 0;
-moz-border-radius: 0 3px 3px 0;
border-radius: 0 3px 3px 0;
border-radius: 0 3px 3px 0;
margin-right:-1px;
}

#search .submit_input:hover{background-color:#3e3e3e}

#adv_search {
width: 26px;
height: 26px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background: url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/advanced_search.png') no-repeat 50% 50%;
text-indent: -3000em;
display: inline-block;
margin-left: 3px;
}

#adv_search:hover{background-color:rgba(0,0,0,0.2)}

.right {
float: right;
}

/*Link*/
a {text-decoration:none;}
li{list-style-type:none;}

/*secondary navigation*/
.clearfix::after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
overflow: hidden;
}

#secondary_navigation.stickyTop {
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 999;
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans80.png") repeat;
background: rgba(0, 0, 0, 0.8);
}

#secondary_navigation {
background: #1C1C1C;
font-size: 11px;
text-shadow: rgba(0, 0, 0, 0.8) 0px 1px 1px;
-webkit-box-shadow: rgba(255, 255, 255, 0.05) 0px 1px 0px;
-moz-box-shadow: rgba(255,255,255,0.05) 0px 1px 0px;
box-shadow: rgba(255, 255, 255, 0.05) 0px 1px 0px;
border-bottom: 1px solid #0D0D0D;
overflow: hidden;
line-height: 37px;
clear: both;
}

#secondary_navigation {
font-size: 11px;
text-shadow: rgba(0, 0, 0, 0.8) 0px 1px 1px;
line-height: 37px;
}

#secondary_navigation #breadcrumb li a:hover span {
background-position: 100% -43px;
}

#secondary_navigation #breadcrumb li.first a span {
padding-left: 12px;
}

#secondary_navigation #breadcrumb li span {
display: block;
padding-right: 17px;
padding-left: 4px;
background: url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/secondary_nav.png') no-repeat 100% 0;
color: #DDD;
}

.breadcrumb {
color: #777;
font-size: 11px;
}

#secondary_navigation a:hover {
color: white;
text-shadow: white 0px 0px 3px;
}

#secondary_navigation a {
color: #DDD;
line-height: 37px;
}

#secondary_links {
overflow: hidden;
}

#secondary_links a {
padding: 0 12px;
display: block;
}

#secondary_links img {
vertical-align: top;
width: 16px;
height: 16px;
position: relative;
margin: 10px -3px 0 -3px;
}

#secondary_links a:hover
img{opacity:0.7}

#secondary_links li {
float: left;
margin: 0;
}

.right {
float: right;
}

/*Statistics*/
#board_statistics {
-moz-border-radius: 3px;
-moz-box-shadow: inset rgba(0,0,0,0.3) 0 1px 2px, rgba(255,255,255,1) 0 1px 0;
-webkit-border-radius: 3px;
-webkit-box-shadow: inset rgba(0, 0, 0, 0.3) 0 1px 2px, rgba(255, 255, 255, 1) 0 1px 0;
background: #EDEFF1 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: #768089;
text-shadow: rgba(255, 255, 255, 0.9) 0px 1px 0px;
-webkit-box-shadow: inset #B3BAC1 0px 1px 3px;
-moz-box-shadow: inset #b3bac1 0px 1px 3px;
box-shadow: inset #B3BAC1 0px 1px 3px;
padding: 3px 7px;
display: inline-block;
font-weight: 700;
margin-right: 3px;
text-shadow: rgba(255, 255, 255, 0.6) 0 1px 0;
border-top:none;
margin-left:15px;
}

/*Statistics*/
.statistics_head{
background: #262626;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset black 0px 1px 3px;
-moz-box-shadow: inset #000 0px 1px 3px;
box-shadow: inset black 0px 1px 3px;
font-size: 11px;
font-weight: bold;
padding: 8px;
}

.statistics_head h1{
color: white;
font-size: 12px;
font-weight: bold;
tahoma,helvetica,arial,sans-serif;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
margin-left:28px;
}

.icon {
background-image: url('http://cdn3.iconfinder.com/data/icons/prettyoffice/16/chart.png');
background-color: transparent;
background-repeat: no-repeat;
width: 16px;
height: 16px;
display: inline-block;
vertical-align: middle;
}

#onlinelist {
background: white;
border: 0px;
border-top:none;
}

#onlinechat {
background: white;
border-top: 1px solid #D8D8D8;
border-top:none;
}

#pun-visit, .main-box {
font-size:10px;
background: white;
border:none;
margin: 0px 0px 1em;
padding: 0.6em 1em;
}

/*rodapé*/
#footer_utilities, #footer_utilities a {
color: #CCC;
}

#footer_utilities {
padding: 8px;
font-size: 11px;
height: 45px;
position: relative;
border-top: 1px solid #141414;
text-shadow: rgba(0, 0, 0, 0.4) 0px -1px 0px;
background: #262626 url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/branding_bg.png') repeat;
}

#footer_utilities img {
  vertical-align: middle;
}
 
#stats_div {
height: 0px;
overflow: hidden;
}

.skin_link, .skin_link a {
color: #CCC !important;
}

#copyright {
text-align: right;
line-height: 22px;
float: right;
}

#footer_utilities .ipsList_inline {
margin-top: 3px;
clear: left;
float: left;
}

#backtotop, #bottomScroll {
width: 24px;
height: 24px;
line-height: 20px;
left: 50%;
top: 50%;
margin-left: -12px;
margin-top: -12px;
position: absolute;
display: inline-block;
background: url("https://cdn4.iconfinder.com/data/icons/cc_mono_icon_set/blacks/32x32/arrow_top.png") repeat;
background: rgba(0, 0, 0, 0.3);
-webkit-box-shadow: inset rgba(0, 0, 0, 0.7) 0px 1px 3px, rgba(255, 255, 255, 0.07) 0px 1px 0px;
-moz-box-shadow: inset rgba(0,0,0,0.7) 0px 1px 3px, rgba(255,255,255,0.07) 0px 1px 0px;
box-shadow: inset rgba(0, 0, 0, 0.7) 0px 1px 3px, rgba(255, 255, 255, 0.07) 0px 1px 0px;
text-align: center;
-moz-border-radius: 16px;
-webkit-border-radius: 16px;
border-radius: 16px;
outline: 0;
}

#bottomScroll:hover, #backtotop:hover {
background: url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/trans70.png") repeat;
background: rgba(0, 0, 0, 0.7);
color: white;
}

#backtotop img {
  margin-top: 5px;
}

#backtotop:hover img {
opacity: 1;
}

#backtotop img {
opacity: 0.4;
}

#footer_utilities .ipsList_inline > li > a {
margin-right: 0px;
padding: 4px 10px;
display: inline-block;
}

/*standalone*/
.main-content.standalone .button {
border-radius: 5px;
}

/*user*/
.pun .user-ident .username {
display: block;
font-size: 1.3em;
font-weight: 400!important;
margin-top: 5px;
padding: 8px!important;
position: relative;
text-align: center;
text-decoration: none;
}

/*post*/
.pun .paged-foot, .pun .paged-head {
background-color: white;
border: 0px;
}

.pun .post {
  background: white;
}

.pun .postmain {
background-color: #fff;
border-left: 0px;
margin-left: 17em;
}

.pun .post .user {
    margin-top: 10px;
    display: block;
    border-right: 1px dashed #E4E8ED;
    position:relative;
    font-size: 12px;
    text-align: center;
}

.pun .user .user-ident .user-basic-info {
  text-align: center;
}

.pun .topic {
background: #fff;
border: 0px;
border-style: none solid;
}

#first-post-br {
border: 0;
border-top: 0px;
}

.pun .posthead {
  background: #282828 url('http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/branding_bg.png') repeat;
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset black 0px 1px 3px;
-moz-box-shadow: inset #000 0px 1px 3px;
box-shadow: inset black 0px 1px 3px;
padding: 0 10px;
height: 36px;
line-height: 36px;
margin-top: 8px;
  border-bottom: 0px;
}

.post-options img:hover {
opacity: 0.7;
}

.posting img:hover {
opacity: 0.9;
}

.postfoot {
  border-top: 0px;
}

.pun .postfoot {
background: #EDEFF1 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset #B3BAC1 0px 1px 3px;
-moz-box-shadow: inset #b3bac1 0px 1px 3px;
box-shadow: inset #B3BAC1 0px 1px 3px;
margin-top: 10px;
}

.pun .posthead h2 {
  color: #BBB;
font-size: 11px;
font-weight: normal;
}

/*user img*/
.user-basic-info a img {
padding: 1px;
border: 1px solid #D5D5D5;
background: white;
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.user-basic-info a img:hover {
 border-color: #A1A1A1;
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

/*quick-reply*/
#quick_reply #textarea_content {
      clear: both;
      margin-left: 0px;
      margin-right: 0px;
      width: 100% !important;
      height: auto !important;
    }
     
    #text_editor_controls {
      display: !important;
    }
       
 #pun-qpost #textarea_content dt label{
  float:left;
}

fieldset.frm-set dl dd {
margin: auto!important;
}

/*smiley-box e quickreply*/
#smiley-box iframe{height: 280px;}
#smilies_categ{padding: 0px 0}
#smiley-box{border:1px solid #DDD;width:160px;margin:10px 0!important;padding:5px}
.pun .frm .frm-buttons input {
 
border: 1px solid #CCC;
border-bottom: 1px solid #BBB;
border-image: initial;
border-radius: 4px;
box-shadow: 0 1px 2px #ccc;
color: #333;
cursor: pointer;
margin: 0 2px 16px;
padding: 7px 22px;
}

#quick_reply fieldset.frm-set dl dd {
background: white;
border: solid 1px #CCC;
margin: 0 auto;
}
#quick_reply .frm-buttons {
-moz-border-radius-bottomleft: 5px;
-moz-border-radius-bottomright: 5px;
-webkit-border-bottom-left-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
background-color: #EEE;
border: solid 1px #CCC;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
border-top: 0;
margin: 0 auto;
padding: 5px;
text-align: center;
}

#textarea_content dt {display:none}

a.button2, body:last-child a.button1, button.button2, input.button1, input.button2 {
-webkit-transition: all 0.218s;
border: 1px solid;
border-radius: 3px;
padding: 0px 0.91em;
}
button.button2, input.button2 {
background-position: 50% 0%;
background-repeat: repeat-x;
border: 1px solid #BCBCBC;
}
a.button2, body:last-child a.button1, button.button2, input.button1, input.button2 {
padding: 1px 0px;
}
button.button2, input.button2 {
background-position: 50% 0%;
background-repeat: repeat-x;
border: 1px solid #BCBCBC;
margin: 0px 0.25em;
overflow: visible;
padding: 2px 3px;
}

/*profile*/
#profile-advanced-right .main-head .h3 {
-moz-border-radius: 10px;
-moz-box-shadow: inset 0 1px 3px rgba(0,0,0,0.5), rgba(255,255,255,0.16) 0 1px 0px, rgba(255,255,255,0.05) 0 0 0 1px;
-webkit-border-radius: 10px!important;
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.16) 0 1px 0px, rgba(255, 255, 255, 0.05) 0 0 0 1px;
background: rgba(0, 0, 0, 0.4);
border-radius: 10px;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.16) 0 1px 0px, rgba(255, 255, 255, 0.05) 0 0 0 1px;
color: white;
font-weight: 700;
opacity: 1;
padding: 4px 10px;
}

#profile-advanced-right .module.main .main-head {
background-color: #183C5D;
background-image: url(http://i.imgur.com/JnYGc.png);
border: none;
border-radius: 5px 5px 0 0;
box-shadow: none;
color: white;
font-size: 12px;
font-weight: 300;
overflow: hidden;
padding: 9px 12px;
text-shadow: black 0 1px 2px;
}

#profile-advanced-left #profile-advanced-details .main-head .subtitle {
font-size: 25px;
font-weight: 700;
line-height: 60px;
padding-left: 75px;
}

#profile-advanced-left #profile-advanced-details .main-head {
-webkit-box-shadow: inset 0 1px 0 #008186, inset 1px 0 0 #056B4E, inset -1px 0 0 #056B4E, inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 1px 2px #056B4E;
background-image: url(http://img86.xooimage.com/files/2/3/a/captur-36b3f67.png);
background-position: left;
background-color:transparent;
background-repeat: no-repeat;
border: 1px solid #026375;
height: 70px;
}

#profile-advanced-right .main-head .h3 span {
color: #FFD600!important;
font-size: 14px!important;
}

#profile-advanced-left #profile-advanced-details .main-head .subtitle span {
color: #00B8FF!important;
}

#profile-advanced-right .main-content.clearfix.center {
color: #777575;
font-size: 15px;
font-weight: 700;
text-shadow: 1px 1px 2px #F0F0F0;
}

/*chatbox*/
#chatbox, #chatbox_footer, #chatbox_members {
background: white;
}

.boxOut_chatbox {
background: white;
border: 1px solid #D2D2D2;
border-radius: 4px;
padding: 8px;
}

body.chatbox{background-color:#fff;background-image:none;margin:0;padding:0}#chatbox_header{ background: url ('http://i49.tinypic.com/2vkfaqh.jpg') repeat-x 0 0; height:40px; border-radius: 5px 5px 0px 0px; padding-bottom:0px;}.chatbox-title,.chatbox-title a.chat-title{color:#dedfdf;text-decoration:none}.chatbox-title{float:left;margin:0;padding:2px 5px 0;width:15em}.chatbox-options{float:right;font-size:11px;list-style:none;margin:.7em .5em .5em}.chatbox-options li{display:inline}.chatbox-options li,.chatbox-options li a,.chatbox-options li label{color:#dedfdf}#chatbox_members{border-right:1px dashed #ccc;bottom:30px;overflow:auto;position:absolute;top:30px;width:180px}#chatbox_messenger_form{margin:10px 0 0}#chatbox_members .member-title{background-color:#f4f9fd;background-image:none;color:#00569c;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;padding:.5em .25em;text-align:center}#chatbox_members ul{list-style:none;margin:0 0 0 1em}#chatbox_members ul li{margin:.5em .5em .5em 0}#chatbox{bottom:30px;left:181px;line-height:10px;overflow:auto;position:absolute;right:0;top:30px}#chatbox p{line-height:1.2em}.chatbox_row_1{background-color:#fbfbfb;padding:4px}.chatbox_row_2{background-color:#f4f4f4;padding:4px}.chatbox_row_3{background-color:#f4f9fd;padding:4px}#chatbox .user{font-weight:700}.memberlist_row_1{background-color:#fbfbfb}#chatbox_footer{border-top:1px dashed #ccc;bottom:0;left:0;position:absolute;right:0}#message,#submit_button{border-width:1px}.fontbutton{background:#E1E1E2 none repeat scroll 0;border:medium none;color:#000;cursor:pointer;float:left;margin-right:10px;padding:1px;text-align:left}.fontbutton_normal{background:#E1E1E2}.fontbutton_selected{background:#BBC7CE;border:1px solid #22229C}.fontbutton_clicked{background:#959595;border:1px solid #22229C}.fontbutton_hover{background:#E1E1E2;border:1px solid #22229C}* html #chatbox-members{height:expression((document.documentElement.clientHeight?document.documentElement.clientHeight:document.body.clientHeight) - ((parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 3) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2px * 0) ) + px)}* html #chatbox{height:expression((document.documentElement.clientHeight?document.documentElement.clientHeight:document.body.clientHeight) - ((parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 3) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2px * 0) ) + px);width:expression((document.documentElement.clientWidth?document.documentElement.clientWidth:document.body.clientWidth) - ((parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 10) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 1) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2px * 1.3) ) + px)}* html #chatbox-footer{width:expression((document.documentElement.clientWidth?document.documentElement.clientWidth:document.body.clientWidth) - ((parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 0) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 0) + (parseInt(document.body.currentStyle.fontSize) * 1.3333333px * 2px * 0) ) + px)}#chatbox_contextmenu{background-color:#f4f9fd;border:2px solid #000}#chatbox_contextmenu p{background:#fbfbfb;border-bottom:1px solid #777;font-family:verdana, arial, sans-serif;margin:0;padding:1px 4px}#chatbox_contextmenu p.hover{background:#f4f4f4}#chatbox_contextmenu p.close{background:url();color:#fff;font-size:95%;padding:1px}#chatbox_contextmenu p.close img{padding-left:20px;vertical-align:middle}#chatbox_contextmenu a{color:#00569c;font-size:95%;text-decoration:none}.module{overflow:hidden!important}
h2.chatbox-title a.chat-title{color:#fff;font-size:1.2em;font-weight:700;line-height:1.1em;text-align:center;text-shadow:0 1px 0 #CCC,0 2px 0 #C9C9C9,0 3px 0 #BBB,0 3px 0 #B9B9B9,0 4px 0 #AAA,0 5px 1px rgba(0,0,0,.1),0 0 5px rgba(0,0,0,.1),0 1px 3px rgba(0,0,0,.3),0 3px 5px rgba(0,0,0,.2),0 5px 10px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.2),0 20px 20px rgba(0,0,0,.15)}#chatbox_header{height:30px}.aviso_normas{background:none repeat scroll 0 0 #F0E8E0;border:1px solid #C00000;font-family:Tahoma,Arial;font-size:11px;height:24px;line-height:24px;margin-bottom:3px;text-align:center}#chatbox_members .member-title{background:#F8E7DD;border-bottom:2px solid red;color:#A30000;text-shadow:1px 0 0 #fff}#chatbox_members{background:#F1F1F1;border-right:1px solid #C2C2C2}#chatbox_footer{background:#E9E9E9;border-top:1px solid #CACACA}#chatbox p{border-bottom:1px solid #DDD;border-top:1px solid #fff}.chatbox_row_1{background-color:#F8F8F8}#chatbox a,#chatbox_members a{color:#006B6B}#chatbox_messenger_form div.right img{visibility:hidden}

#chatbox_header .main-head {
background-image: url(http://i1135.photobucket.com/albums/m622/Mazeko1/bg-2.png) repeat;
border-radius: 3px;
height:40px;
}

#chatbox p {
border-bottom: 1px solid #DDD;
border-top: 1px solid white;
}
#chatbox p {
line-height: 1.2em;
}

#divsmilies img + img{visibility:visible!important}#divbold,#divcolor,#divitalic,#divsmilies,#divstrike,#divunderline{background-position:center;background-repeat:no-repeat;border:1px solid #383838;border-radius:5px}#divbold{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/bold10.png)}#divitalic{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/italic10.png)}#divunderline{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/underl10.png)}#divstrike{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/strike10.png)}#divcolor{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/font_c11.png)}#divsmilies{background-image:url(http://i26.servimg.com/u/f26/12/56/56/12/emotic10.png)}#código_creado_por_welmy{background:#E6E6E6;border:1px solid #222;border-radius:3px;font-family:arial;margin:auto;padding:5px;text-shadow:1px 1px #fff;width:228px}#th_avarx{background-image:url(http://i.imgur.com/EkPsC.png);background-size:100%;border:1px solid #1A1A1A;border-radius:2px;box-shadow:0 1px 2px #000;height:70px;width:70px}#th_avarx img{border-radius:2px;height:70px;width:70px}.lnk a{margin-left:5px;margin-right:5px}
#simple-wrap {
  background:white;
}

#chatbox_messenger_form input#message {
min-width: 450px;
}
#message, #submit_button {
border-width: 1px;
}

#chatbox_messenger_form #submit_button:hover {
background: #E2FCFF;
border: 1px solid #4CC3FC;
color: #027FAF;
}

#message, #submit_button {
border-width: 1px;
}

.pun .frm .frm-buttons input, input[type="reset"], input[type="submit"] {
border: 1px solid #CCC;
border-bottom: 1px solid #BBB;
border-radius: 4px;
box-shadow: 0 1px 2px #CCC;
color: #333;
}

input[type="password"], input[type="text"], textarea {
-webkit-border-radius: 3px;
background-color: white;
border: 1px solid #CCC;
border-radius: 3px;
color: #515151;
cursor: text;
display: inline-block;
font-size: 13px;
line-height: 15px;
outline: 0;
}

/*profile*/
#profile-advanced-right {
float: left;
width: 280px;
}
#profile-advanced-layout {
float: right;
margin-left: -300px;
margin-right: 0px;
}
#profile-advanced-left {
margin-left: 305px;
margin-right: 0px;
}
#profile-advanced-layout #new-message {
clear: both;
position: relative;
}
/*pagination*/
.paging a:hover, .paging b, td p.pag a:hover, td p.pag b {
background: #51A3CE;
color: white;
text-shadow: none;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset rgba(0, 0, 0, 0.4) 0px 1px 3px;
-moz-box-shadow: inset rgba(0,0,0,0.4) 0px 1px 3px;
box-shadow: inset rgba(0, 0, 0, 0.4) 0px 1px 3px;
padding: 1px 8px;
cursor: default;
}

.paged-foot .paging a, .paging a, td p.pag a {
background: #EDEFF1 url("http://www.ipbforumskins.com/skindemo/public/style_images/marble34x/noise.png") repeat;
color: #768089;
text-shadow: rgba(255, 255, 255, 0.9) 0px 1px 0px;
-webkit-box-shadow: inset #B3BAC1 0px 1px 3px;
-moz-box-shadow: inset #b3bac1 0px 1px 3px;
box-shadow: inset #B3BAC1 0px 1px 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
display: inline-block;
padding: 1px 8px;
text-transform: lowercase;
font-size: 11px;
font-weight: normal;
}

.paged-foot .paging a, .paged-foot .paging a:hover, .paged-foot .paging b, .paging a, .paging b, td p.pag a, td p.pag b {
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
font-size: 12px!important;
margin-right: 3px!important;
padding: 6px 9px!important;
}

/*botões de votar*/
.vote {
padding: 2px;
text-align: center;
width:16px;
background-color: #eaeaea;
border: 1px solid #d4d6d5;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-top-left-radius:5px;
-webkit-border-bottom-left-radius:5px;
-webkit-border-top-right-radius:5px;
-webkit-border-bottom-right-radius:5px;
}

.vote .vote-no-bar {
display: none;
}

.vote .vote-bar {
border-left: 0px;
border-right: 0px;
border-top: 1px solid #ffffff;
border-bottom: 1px solid #d4d6d5;
font-size: 0px;
height: 50px;
margin: 0px;
width: 16px;
}

.vote .vote-bar-plus {
margin-left: 5px;
width: 7px;
}

.vote .vote-bar-minus {
margin-left: 5px;
width: 7px;
}

.vote .vote-button a[href $="plus"] {
background:url('http://cdn3.iconfinder.com/data/icons/fugue/icon_shadowless/plus-circle.png');
background-repeat: no-repeat;
color:transparent;
display:block;
height:16px;
width:16px;
}

.vote .vote-button a[href $="minus"] {
background-image:url('http://cdn2.iconfinder.com/data/icons/fugue/icon_shadowless/minus_circle.png');
background-repeat: no-repeat;
color:transparent;
display:block;
height:16px;
width:16px;
}

/*----------------Ranks-------------------*/

.userVIP, .userVIP-ROSA, .userSuporte, .userADM, .userNovato, .userModerador, .userGerente, .userDesigner, .userMembro {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
background: #65a830;
border-radius: 3px;
color: #fff;
display: inline-block;
font-size: 11px;
font-weight: 700;
margin-top: 5px;
padding: 3px 8px;
text-shadow: rgba(0,0,0,0.2) 0 -1px 0;
}


.userNovato {
background: #4d4d4d;
}

 
.userADM {
background: #d71515;
}

.userModerador {
background: #0077db;
}

.userGerente {
background: #a500db;
}

.userDesigner{
background: #ffc000;
}

.userSuporte{
background: #00d1de;
}

.userVIP{
background: #1be300;
}

.userVIP-ROSA{
background: #ff00ea;
}

.userMembro{
background: #4d4d4d;


/*-------------------Aviso antes de apagar Mensagem----------------*/

.popup_delete {
background-color: #464646;
background-color: rgba(70, 70, 70, 0.6);
padding: 4px;
-webkit-box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7);
box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.7 );
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
z-index: 999;
bottom: 5px;
right: 5px;
position: fixed;
}
.popup_delete_Inner {
background: white;
-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.4);
box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
overflow-x: hidden;
width: 350px;
max-height: 642px;
}
.popup_delete_Inner h3 {
background: -moz-linear-gradient(#444,#000);
background-color: #000;
background-image: -webkit-linear-gradient(#444,#000);
text-align: left;
color: white;
padding: 8px 10px 9px;
font-size: 16px;
font-weight: 300;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.Box_delete {
background: #f0f0f0;
padding: 9px;
}
.Box_container {
background: #fdfdfd;
border: 1px solid #dcdcdc;
}
.delete_center {
padding: 9px;
text-align: center;
}
.delete_center p {
margin-bottom: 5px;
}
.popup_delete_Close {
cursor: pointer;
position: absolute;
right: 20px;
top: 15px;
}

/*-------------------Aviso antes de apagar Mensagem----------------*/

Até
Roevs

Roevs
Membro Entusiasta
Membro Entusiasta

Membro desde : 10/02/2012
Mensagens : 6484
Pontos : 8343

https://www.sololevelingrpg.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Correção nos templates

Mensagem por otmundobr 06.07.14 1:24

ah e agora como deixar mais bonito o menu de navegação
otmundobr

otmundobr
***

Membro desde : 18/07/2011
Mensagens : 174
Pontos : 289

http://otmundobr.forumeiros.com/

Ir para o topo Ir para baixo

Membro Entusiasta

Tópico resolvido Re: Correção nos templates

Mensagem por Roevs 06.07.14 1:28

Olá,

Isso fica a seu critério poderá utilizar a edição de CSS,HTML ou JS

Até
Roevs

Roevs
Membro Entusiasta
Membro Entusiasta

Membro desde : 10/02/2012
Mensagens : 6484
Pontos : 8343

https://www.sololevelingrpg.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Correção nos templates

Mensagem por otmundobr 06.07.14 1:31

Mais tipo vc pode me ajudar a editar Porq editaram o titulo do tópico e colocaram "correção de templates" então quero corrigir o menu de navegação
otmundobr

otmundobr
***

Membro desde : 18/07/2011
Mensagens : 174
Pontos : 289

http://otmundobr.forumeiros.com/

Ir para o topo Ir para baixo

Membro Entusiasta
  • 0

Tópico resolvido Re: Correção nos templates

Mensagem por Roevs 06.07.14 2:44

Olá,

Eu te ajudei na dúvida que era arrumar o Menu de Navegação e o Logo que não estavam aparecendo, agora na personalização do menu fica a seu critério se deseja alterar a cor dele o tamanho ou fazer igual a de outro fórum então você deverá criar uma nova dúvida falando como deseja o menu oque deseja alterar entre outras informações

Até
Roevs

Roevs
Membro Entusiasta
Membro Entusiasta

Membro desde : 10/02/2012
Mensagens : 6484
Pontos : 8343

https://www.sololevelingrpg.com/

Ir para o topo Ir para baixo

Tópico resolvido Re: Correção nos templates

Mensagem por otmundobr 06.07.14 3:13

Ok Obrigado Podem Fechar o Tópico.
otmundobr

otmundobr
***

Membro desde : 18/07/2011
Mensagens : 174
Pontos : 289

http://otmundobr.forumeiros.com/

Ir para o topo Ir para baixo

Ver o tópico anterior Ver o tópico seguinte Ir para o topo

- Tópicos semelhantes

Permissões neste sub-fórum
Não podes responder a tópicos