473,396 Members | 1,764 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Css cursor not working with Internet Explorer and partially works with Firefox

matheussousuke
249 100+
I have this in my css code:


Expand|Select|Wrap|Line Numbers
  1. body, a { 
  2. cursor: url(http://forum.mghospedagem.com/ffcursormouse8bits.png), pointer; 
  3.  
  4. a:hover{
  5. cursor: url(http://forum.mghospedagem.com/ffcursormouseup8bits.png), hand; 
  6. }


Full css:

Expand|Select|Wrap|Line Numbers
  1. /* Styles for the general looks for the Curve theme.
  2. ------------------------------------------------------- */
  3.  
  4. /* Normal, standard links. */
  5. a:link, a:visited
  6. {
  7.     color: #346;
  8.     text-decoration: none;
  9. }
  10.  
  11.  
  12. a:hover
  13. {
  14.     text-decoration: underline;
  15. /*    cursor: pointer;*/
  16. }
  17.  
  18.  
  19.  
  20.  
  21.  
  22. /* Links that open in a new window. */
  23. a.new_win:link, a.new_win:visited
  24. {
  25.     color: #346;
  26.     text-decoration: none;
  27. }
  28. a.new_win:hover
  29. {
  30.     text-decoration: underline;
  31. }
  32.  
  33. /* Tables should show empty cells. */
  34. table
  35. {
  36.     empty-cells: show;
  37. }
  38.  
  39. /* Set a fontsize that will look the same in all browsers. */
  40. body
  41. {
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.     background: url(../images/theme/bg.jpg) fixed top no-repeat; */
  57.     font: 78%/130% "arial", "Arial", "Helvetica", sans-serif;
  58.     margin: 0 auto;
  59.     padding: 15px;
  60.  
  61.  
  62.  
  63.  
  64.  
  65. }
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122. /* Help popups require a different styling of the body element. */
  123. body#help_popup
  124. {
  125.     padding: 1em;
  126. }
  127.  
  128. /* use dark grey for the text, leaving #000 for headers etc */
  129. body, td, th, tr, a
  130. {
  131.     color:444;
  132.     }
  133.  
  134.  
  135. body, a { 
  136. cursor: url(http://forum.mghospedagem.com/ffcursormouse8bits.png), default; 
  137.  
  138. a:hover{
  139. cursor: url(http://forum.mghospedagem.com/ffcursormouseup8bits.png), hand; 
  140. }
  141.  
  142.  
  143.  
  144.  
  145. /* This division wraps the entire forum when a forum width is set. */
  146. div#wrapper
  147. {
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156. padding: 10px;
  157. padding-top:180px;
  158. padding-bottom:180px;
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.     margin: 0 auto;
  171.     min-width: 764px;
  172.     max-width: 2300px;
  173. }
  174.  
  175. /* lets give all forms zero padding/margins */
  176. form
  177. {
  178.     padding: 0;
  179.     margin: 0;
  180. }
  181.  
  182. /* We can style the different types of input buttons to be uniform throughout different browsers and their color themes.
  183.     .button_submit - covers input[type=submit], input[type=button], button[type=submit] and button[type=button] in all browsers
  184.     .button_reset  - covers input[type=reset] and button[type=reset] throughout all browsers
  185.     .input_check   - covers input[type=checkbox] throughout all browsers
  186.     .input_radio   - covers input[type=radio] throughout all browsers
  187.     .input_text    - covers input[type=text] throughout all browsers
  188.     .input_file    - covers input[type=file] throughout all browsers
  189. */
  190.  
  191. input, button, select, textarea
  192. {
  193.     font: 95%/115% arial, Helvetica, sans-serif;
  194.     color: #000;
  195.     background: #fff;
  196.     border: 1px solid #7f9db9;
  197.     padding: 2px;
  198. }
  199.  
  200. /* Select elements look horrible with the extra padding, so leave them unpadded. */
  201. select
  202. {
  203.     padding: 0;
  204. }
  205.  
  206. /* Add some padding to the options instead. */
  207. select option
  208. {
  209.     padding: 1px;
  210. }
  211.  
  212. /* The font size of textareas should be just a little bit larger. */
  213. textarea
  214. {
  215.     font: 100%/130% arial, Helvetica, sans-serif;
  216. }
  217.  
  218. /* Buttons should be styled a bit differently, in order to make them look more button'ish. */
  219. .button_submit, .button_reset
  220. {
  221.     background: #cde7ff url(../images/theme/submit_bg.png) no-repeat;
  222.     border: 1px solid #aaa;
  223.  
  224.  
  225.  
  226. cursor: url(http://forum.mghospedagem.com/ffcursormouseup8bits.png), pointer; 
  227.  
  228.  
  229.  
  230. /*
  231.     cursor: pointer;
  232. */
  233.  
  234.  
  235.  
  236.     font-weight: normal;
  237. }
  238. input:hover, textarea:hover, button:hover, select:hover
  239. {
  240.     border: 1px solid #454545;
  241. }
  242. .button_submit:hover, .button_reset:hover
  243. {
  244.     border: 1px solid #aaa;
  245.     background: url(../images/theme/submit_bg.png) no-repeat 0 -140px #cde7ff;
  246. }
  247. input:focus, textarea:focus, button:focus, select:focus
  248. {
  249.     border: 1px solid #454545;
  250. }
  251.  
  252. /* All input elements that are checkboxes or radio buttons shouldn't have a border around them. */
  253. input.input_check, input.input_radio
  254. {
  255.     border: none;
  256.     background: none;
  257. }
  258. h3.catbg input.input_check
  259. {
  260.     margin: 9px 7px 0 7px;
  261. }
  262.  
  263. /* Give disabled text input elements a different background color. */
  264. input[disabled].input_text
  265. {
  266.     background-color: #eee;
  267. }
  268.  
  269. /* Standard horizontal rule.. ([hr], etc.) */
  270. hr, .hrcolor
  271. {
  272.     height: 1px;
  273.     border: 0;
  274.     color: #ccc;
  275.     background-color: #ccc;
  276. }
  277.  
  278. /* By default set the color on these tags as #000. */
  279. h1, h2, h3, h4, h5, h6
  280. {
  281.     color: #000;
  282.     font-size: 1em;
  283.     font-family:Arial, Helvetica, sans-serif;
  284.     margin: 0;
  285.     padding: 0;
  286. }
  287.  
  288. /* Fieldsets are used to group elements. */
  289. fieldset
  290. {
  291.     border: 1px solid #c4c4c4;
  292.     padding: 1em;
  293.     margin: 0 0 0.5em 0;
  294. }
  295. fieldset legend
  296. {
  297.     font-weight: bold;
  298.     color: #444;
  299. }
  300. /* No image should have a border when linked. */
  301. a img
  302. {
  303.     border: 0;
  304. }
  305.  
  306. /* Define strong as bold, and em as italics */
  307. strong
  308. {
  309.     font-weight: bold;
  310. }
  311.  
  312. em
  313. {
  314.     font-style: italic;
  315. }
  316. /* Alternative for u tag */
  317. .underline
  318. {
  319.     text-decoration: underline;
  320. }
  321.  
  322. /* Common classes to easy styling.
  323. ------------------------------------------------------- */
  324.  
  325. .floatright
  326. {
  327.     float: right;
  328. }
  329. .floatleft
  330. {
  331.     float: left;
  332. }
  333.  
  334. .flow_auto
  335. {
  336.     overflow: auto;
  337. }
  338. .flow_hidden
  339. {
  340.     overflow: hidden;
  341. }
  342. .flow_hidden .windowbg, .flow_hidden .windowbg2
  343. {
  344.     margin-top: 2px;
  345. }
  346. .clear
  347. {
  348.     clear: both;
  349. }
  350. .clear_left
  351. {
  352.     clear: left;
  353. }
  354. .clear_right
  355. {
  356.     clear: right;
  357. }
  358.  
  359. /* Default font sizes: small (8pt), normal (10pt), and large (14pt). */
  360. .smalltext, tr.smalltext th
  361. {
  362.     font-size: 0.85em;
  363.     font-family: arial, sans-serif;
  364. }
  365. .middletext
  366. {
  367.     font-size: 0.9em;
  368.     line-height: 1em;
  369.     font-family: arial, sans-serif;
  370. }
  371. .normaltext
  372. {
  373.     font-size: 1em;
  374.     line-height: 1.2em;
  375.  
  376.  
  377.  
  378.  
  379. }
  380. .largetext
  381. {
  382.     font-size: 1.4em;
  383. }
  384. .centertext
  385. {
  386.     margin: 0 auto;
  387.     text-align: center;
  388.  
  389.  
  390.  
  391. }
  392. .righttext
  393. {
  394.     margin-left: auto;
  395.     margin-right: 0;
  396.     text-align: right;
  397. }
  398. .lefttext
  399. {
  400.     margin-left: 0;
  401.     margin-right: auto;
  402.     text-align: left;
  403. }
  404. .double_height
  405. {
  406.     line-height: 2em;
  407. }
  408. /* some common padding styles */
  409. .padding
  410. {
  411.     padding: 0.7em;
  412. }
  413. .main_section, .lower_padding
  414. {
  415.     padding-bottom: 0.5em;
  416. }
  417. /* a quick reset list class. */
  418. ul.reset, ul.reset li
  419. {
  420.     padding: 0;
  421.     margin: 0;
  422.     list-style: none;
  423.     s
  424. }
  425.  
  426. /* Some BBC related styles.
  427. ------------------------------------------------------- */
  428.  
  429. /* A quote, perhaps from another post. */
  430. blockquote.bbc_standard_quote, blockquote.bbc_alternate_quote
  431. {
  432.     font-size: x-small;
  433.     color: #000;
  434.     line-height: 1.4em;
  435.     background: url(../images/theme/quote.png) 0.1em 0.1em no-repeat;
  436.     border-top: 2px solid #99A;
  437.     border-bottom: 2px solid #99A;
  438.     padding: 1.1em 1.4em;
  439.     margin: 0.1em 0 0.3em 0;
  440.     overflow: auto;
  441. }
  442.  
  443. /* Alterate blockquote stylings */
  444. blockquote.bbc_standard_quote
  445. {
  446.     background-color: #d7daec;
  447. }
  448. blockquote.bbc_alternate_quote
  449. {
  450.     background-color: #e7eafc;
  451. }
  452.  
  453. /* A code block - maybe PHP ;). */
  454. code.bbc_code
  455. {
  456.     display: block;
  457.     font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
  458.     font-size: x-small;
  459.     background: #eef;
  460.     border-top: 2px solid #999;
  461.     border-bottom: 2px solid #999;
  462.     line-height: 1.5em;
  463.     padding: 3px 1em;
  464.     overflow: auto;
  465.     white-space: nowrap;
  466.     /* Show a scrollbar after about 24 lines. */
  467.     max-height: 24em;
  468. }
  469.  
  470. /* The "Quote:" and "Code:" header parts... */
  471. .codeheader, .quoteheader
  472. {
  473.     color: #666;
  474.     font-size: x-small;
  475.     font-weight: bold;
  476.     padding: 0 0.3em;
  477. }
  478.  
  479. /* For links to change the code stuff... */
  480. .codeoperation
  481. {
  482.     font-weight: normal;
  483. }
  484.  
  485. /* Styling for BBC tags */
  486. .bbc_link:link, .bbc_link:visited
  487. {
  488.     border-bottom: 1px solid #A8B6CF;
  489. }
  490. .bbc_link:hover
  491. {
  492.     text-decoration: none;
  493.     border-bottom: 1px solid #346;
  494. }
  495. .bbc_size
  496. {
  497.     line-height: 1.4em;
  498. }
  499. .bbc_color a
  500. {
  501.     color: inherit;
  502. }
  503. .bbc_img
  504. {
  505.     border: 0;
  506. }
  507. .bbc_table
  508. {
  509.     font: inherit;
  510.     color: inherit;
  511. }
  512. .bbc_table td
  513. {
  514.     font: inherit;
  515.     color: inherit;
  516.     vertical-align: top;
  517. }
  518. .bbc_u
  519. {
  520.     text-decoration: underline;
  521. }
  522. .bbc_list
  523. {
  524.     text-align: left;
  525. }
  526. .bbc_tt
  527. {
  528.     font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
  529. }
  530.  
  531. /* Generally, those [?] icons.  This makes your cursor a help icon. */
  532. .help
  533. {
  534.     cursor: help;
  535. }
  536.  
  537. /* /me uses this a lot. (emote, try typing /me in a post.) */
  538. .meaction
  539. {
  540.     color: red;
  541. }
  542.  
  543. /* Highlighted text - such as search results. */
  544. .highlight
  545. {
  546.     font-weight: bold;
  547.     color: #ff7200 !important;
  548.     font-size: 1.1em;
  549. }
  550.  
  551. /* A more discreet highlight color, for selected membergroups etc. */
  552. .highlight2
  553. {
  554.     background-color: #D1E1EF;
  555.     color: #000 !important;
  556. }
  557.  
  558. /* Generic, mostly color-related, classes.
  559. ------------------------------------------------------- */
  560.  
  561. .titlebg, .titlebg2, tr.titlebg th, tr.titlebg td, tr.titlebg2 td
  562. {
  563.     color: #222;
  564.     font-family: arial, helvetica, sans-serif;
  565.     font-size: 1.1em;
  566.     font-weight: bold;
  567.     background: #e3e9ef url(../images/theme/main_block.png) no-repeat -10px -380px;
  568. }
  569. .catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th
  570. {
  571.     color: #fff;
  572.     font-family: arial, helvetica, sans-serif;
  573.     font-size: 1.1em;
  574.     font-weight: bold;
  575.     background: #a7b9cd url(../images/theme/main_block.png) no-repeat -10px -280px;
  576. }
  577.  
  578.  
  579.  
  580. /* adjust the table versions of headers */
  581. tr.titlebg th, tr.titlebg2 th, td.titlebg, td.titlebg2, tr.catbg th, tr.catbg2 th, td.catbg, td.catbg2
  582. {
  583.     padding: 0 6px;
  584. }
  585. tr.titlebg th a:link, tr.titlebg th a:visited, tr.titlebg2 td a:link, tr.titlebg2 td a:visited
  586. {
  587.     color: #222;
  588. }
  589. tr.catbg th a:link, tr.catbg th a:visited, tr.catbg2 td a:link, tr.catbg2 td a:visited
  590. {
  591.     color: #fff;
  592. }
  593. .catbg select
  594. {
  595.     height: 1.5em;
  596.     font-size: 0.85em;
  597. }
  598.  
  599. /* Alternating backgrounds for posts, and several other sections of the forum. */
  600. .windowbg, #preview_body
  601. {
  602.     color: #000;
  603.     background: url(../images/theme/oldpaper.jpg);
  604.     width:100%;
  605.  
  606. }
  607.  
  608.  
  609.  
  610.  
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622. .windowbg2
  623. {
  624.     color: #000;
  625.     background-image:url(../images/postbg2.jpg);
  626. }
  627.  
  628.  
  629.  
  630.  
  631.  
  632.  
  633.  
  634.  
  635.  
  636.  
  637.  
  638.  
  639.  
  640.  
  641.  
  642.  
  643. .windowbg3
  644. {
  645.     color: #000;
  646.     background-color: #cacdd3;
  647. }
  648.  
  649. /* the page navigation area */
  650. .pagesection
  651. {
  652.     font-size: 12px;
  653.     font-family:Arial, Helvetica, sans-serif;
  654.     padding: 0.2em;
  655.     overflow: hidden;
  656.     margin-bottom: 1px;
  657. }
  658. div.pagesection div.floatright input
  659. {
  660.     margin-top: 3px;
  661. }
  662.  
  663. .pagelinks
  664. {
  665.     padding: 0.6em 0 0.4em 0;
  666. }
  667.  
  668. /* Colors for background of posts requiring approval */
  669. .approvebg
  670. {
  671.     color: #000;
  672.     background-color: #ffeaea;
  673. }
  674. .approvebg2
  675. {
  676.     color: #000;
  677.     background-color: #fff2f2;
  678. }
  679.  
  680. /* Color for background of *topics* requiring approval */
  681. .approvetbg
  682. {
  683.     color: #000;
  684.     background-color: #e4a17c;
  685. }
  686. .approvetbg2
  687. {
  688.     color: #000;
  689.     background-color: #f3bd9f;
  690. }
  691.  
  692. /* Sticky topics get a different background */
  693. .stickybg
  694. {
  695.     background: #e8d8cf;
  696. }
  697. .stickybg2
  698. {
  699.     background: #f2e3d9;
  700. }
  701.  
  702. /* Locked posts get a different shade, too! */
  703. .lockedbg
  704. {
  705.     background: #d4dce2;
  706.     font-style: italic;
  707. }
  708. .lockedbg2
  709. {
  710.     background: #d8e1e7;
  711.     font-style: italic;
  712. }
  713.  
  714.  
  715.  
  716.  
  717.  
  718.  
  719.  
  720.  
  721.  
  722.  
  723.  
  724.  
  725.  
  726. /* Posts and personal messages displayed throughout the forum. 
  727. .post, .personalmessage
  728. {
  729.     overflow: auto;
  730.     line-height: 1.4em;
  731.     padding: 0.1em 0;
  732. }*/
  733. .post, .personalmessage
  734. {
  735.     overflow: auto;
  736.     line-height: 1.4em;
  737.     padding: 0.1em 0;
  738.     font-size: 12.5px;
  739.     font-family: "comic sans ms";
  740.  
  741.  
  742.  
  743. }
  744.  
  745.  
  746.  
  747.  
  748.  
  749.  
  750.  
  751.  
  752.  
  753.  
  754.  
  755.  
  756.  
  757.  
  758.  
  759. /* All the signatures used in the forum.  If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
  760. .signature, .attachments
  761. {
  762.     width: 98%;
  763.     overflow: auto;
  764.     clear: right;
  765.     padding: 1em 0 3px 0;
  766.     border-top: 1px solid #aaa;
  767.     line-height: 1.4em;
  768.     font-size: 0.85em;
  769. }
  770. .custom_fields_above_signature
  771. {
  772.     width: 98%;
  773.     clear: right;
  774.     padding: 1em 0 3px 0;
  775.     border-top: 1px solid #aaa;
  776.     line-height: 1.4em;
  777.     font-size: 0.85em;
  778. }
  779.  
  780. /* Sometimes there will be an error when you post */
  781. .error
  782. {
  783.     color: red;
  784. }
  785.  
  786. /* Messages that somehow need to attract the attention. */
  787. .alert
  788. {
  789.     color: red;
  790. }
  791.  
  792. /* Calendar colors for birthdays, events and holidays */
  793. .birthday
  794. {
  795.     color: #920ac4;
  796. }
  797.  
  798. .event
  799. {
  800.     color: #078907;
  801. }
  802.  
  803. .holiday
  804. {
  805.     color: #000080;
  806. }
  807.  
  808. /* Colors for warnings */
  809. .warn_mute
  810. {
  811.     color: red;
  812. }
  813.  
  814. .warn_moderate
  815. {
  816.     color: #ffa500;
  817. }
  818.  
  819. .warn_watch, .success
  820. {
  821.     color: green;
  822. }
  823.  
  824. a.moderation_link, a.moderation_link:visited
  825. {
  826.     color: red;
  827.     font-weight: bold;
  828. }
  829.  
  830. .openid_login
  831. {
  832.     background: white url(../images/openid.gif) no-repeat;
  833.     padding-left: 18px;
  834. }
  835.  
  836. /* a descriptive style */
  837. .description, .description_board, .plainbox
  838. {
  839.     padding: 0.5em 1em;
  840.     font-size: 0.9em;
  841.     line-height: 1.4em;
  842.     border: 1px solid #bbb;
  843.     background: #f5f5f0;
  844.     margin: 0.2em 1px 1em 1px;
  845. }
  846. .description_board
  847. {
  848.     margin: 1em 1px 0 1px;
  849. }
  850.  
  851. /* an informative style */
  852. .information
  853. {
  854.     padding: 0.5em 1em;
  855.     font-size: 0.9em;
  856.     line-height: 1.3em;
  857.     border: 1px solid #bbb;
  858.     background: #f0f6f0;
  859.     margin: 0.2em 1px 1em 1px;
  860. }
  861. .information p
  862. {
  863.     padding: 1em;
  864.     margin: 0;
  865. }
  866. p.para2
  867. {
  868.     padding: 1em 0 3.5em 0;
  869.     margin: 0;
  870. }
  871. /* AJAX notification bar
  872. ------------------------------------------------------- */
  873. #ajax_in_progress
  874. {
  875.     background: url(../images/theme/loadingbar.png) repeat-x;
  876.     color: #f96f00;
  877.     text-align: center;
  878.     font-size: 16pt;
  879.     padding: 8px;
  880.     width: 100%;
  881.     height: 66px;
  882.     line-height: 25px;
  883.     position: fixed;
  884.     top: 0;
  885.     left: 0;
  886. }
  887.  
  888. #ajax_in_progress a
  889. {
  890.     color: orange;
  891.     text-decoration: underline;
  892.     font-size: smaller;
  893.     float: right;
  894.     margin-right: 20px;
  895. }
  896.  
  897. /* Lists with settings use these a lot.
  898. ------------------------------------------------------- */
  899. dl.settings
  900. {
  901.     clear: right;
  902.     overflow: auto;
  903.     margin: 0 0 10px 0;
  904.     padding: 0;
  905. }
  906. dl.settings dt
  907. {
  908.     width: 40%;
  909.     float: left;
  910.     margin: 0 0 10px 0;
  911.     padding: 0;
  912.     clear: both;
  913. }
  914. dl.settings dt.settings_title
  915. {
  916.     width: 100%;
  917.     float: none;
  918.     margin: 0 0 10px 0;
  919.     padding: 5px 0 0 0;
  920.     font-weight: bold;
  921.     clear: both;
  922. }
  923. dl.settings dt.windowbg
  924. {
  925.     width: 98%;
  926.     float: left;
  927.     margin: 0 0 3px 0;
  928.     padding: 0 0 5px 0;
  929.     clear: both;
  930. }
  931. dl.settings dd
  932. {
  933.     width: 56%;
  934.     float: right;
  935.     overflow: auto;
  936.     margin: 0 0 3px 0;
  937.     padding: 0;
  938. }
  939. dl.settings img
  940. {
  941.     margin: 0 10px 0 0;
  942. }
  943. /* help icons */
  944. dl.settings dt a img
  945. {
  946.     position: relative;
  947.     top: 2px;
  948. }
  949.  
  950. /* Styles for rounded headers.
  951. ------------------------------------------------------- */
  952. h3.catbg, h3.catbg2, h3.titlebg, h4.titlebg, h4.catbg
  953. {
  954.     overflow: hidden;
  955.     height: 31px;
  956.     line-height: 31px;
  957.     font-size: 1.2em;
  958.     font-weight: bold;
  959.     font-family: comic sans ms;
  960. }
  961. h3.catbg a:link, h3.catbg a:visited, h4.catbg a:link, h4.catbg a:visited, h3.catbg, .table_list tbody.header td, .table_list tbody.header td a
  962. {
  963.     color: #fff;
  964.  
  965. }
  966. h3.catbg2 a, h3.catbg2
  967. {
  968.     color: #feb;
  969. }
  970. h3.catbg a:hover, h4.catbg a:hover, .table_list tbody.header td a:hover
  971. {
  972.     color: #fd9;
  973.     text-decoration: none;
  974. }
  975. h3.catbg2 a:hover
  976. {
  977.     color: #fff;
  978.     text-decoration: none;
  979. }
  980. h3.titlebg a, h3.titlebg, h4.titlebg, h4.titlebg a
  981. {
  982.     color: #222;
  983. }
  984. h3.titlebg a:hover, h4.titlebg a:hover
  985. {
  986.     color: #53616f;
  987.     text-decoration: none;
  988. }
  989. h3.catbg img.icon, h4.titlebg img.icon
  990. {
  991.     vertical-align: middle;
  992.     margin: -2px 5px 0 0;
  993. }
  994. h4.catbg a.toggle img
  995. {
  996.     vertical-align: middle;
  997.     margin: -2px 5px 0 5px;
  998. }
  999. h4.catbg, h4.catbg2 , h3.catbg , h3.catbg2 , .table_list tbody.header td.catbg
  1000. {
  1001.     background: url(../images/theme/main_block.png) no-repeat 100% -160px;
  1002.     padding-right: 9px;
  1003. }
  1004. h4.titlebg, h3.titlebg
  1005. {
  1006.     background: url(../images/theme/main_block.png) no-repeat 100% -200px;
  1007.     padding-right: 9px;
  1008. }
  1009. h4.titlebg img.icon
  1010. {
  1011.     float: left;
  1012.     margin: 5px 8px 0 0;
  1013. }
  1014. div.cat_bar
  1015. {
  1016.     background: #99abbf url(../images/theme/main_block.png) no-repeat 0 -160px;
  1017.     padding-left: 9px;
  1018.     height: 31px;
  1019.     overflow: hidden;
  1020.     margin-bottom: 1px;
  1021. }
  1022. div.title_bar
  1023. {
  1024.     background: #e3e9ef url(../images/theme/main_block.png) no-repeat 0 -200px;
  1025.     padding-left: 9px;
  1026.     height: 31px;
  1027.     overflow: hidden;
  1028.     margin-bottom: 1px;
  1029. }
  1030.  
  1031. /* rounded bars needs a different background here */
  1032.  
  1033. div.roundframe div.cat_bar
  1034. {
  1035.     background: #99abbf url(../images/theme/main_block.png) no-repeat 0 -240px;
  1036.     margin-bottom: 0;
  1037. }
  1038. div.roundframe div.cat_bar h3.catbg
  1039. {
  1040.     background: url(../images/theme/main_block.png) no-repeat 100% -240px;
  1041. }
  1042. div.title_barIC
  1043. {
  1044.     background: #dadfe6 url(../images/theme/main_block.png) no-repeat 0 -120px;
  1045.     padding-left: 9px;
  1046.     height: 31px;
  1047.     overflow: hidden;
  1048.     margin-bottom: 1px;
  1049. }
  1050. div.title_barIC h4.titlebg
  1051. {
  1052.     background: url(../images/theme/main_block.png) no-repeat 100% -120px;
  1053. }
  1054. #upshrinkHeaderIC p.pminfo
  1055. {
  1056.     margin: 0;
  1057.     padding: 0.5em;
  1058. }
  1059. img#upshrink_ic, img#newsupshrink
  1060. {
  1061.     float: right;
  1062.     margin: 10px 5px 0 0;
  1063. }
  1064. table.table_list a.unreadlink, table.table_list a.collapse
  1065. {
  1066.     float: right;
  1067. }
  1068. table.table_list a.collapse
  1069. {
  1070.     margin: 10px 5px 0 1em;
  1071.     height: 31px;
  1072.     line-height: 31px;
  1073. }
  1074.  
  1075. /* The half-round header bars for some tables. */
  1076. .table_grid tr.catbg, .table_grid tr.titlebg
  1077. {
  1078.     font-size: 0.95em;
  1079.     border-bottom: 1px solid #fff;
  1080. }
  1081. .table_grid tr.catbg th, .table_grid tr.titlebg th
  1082. {
  1083.     height: 28px;
  1084.     line-height: 28px;
  1085. }
  1086. tr.catbg th.first_th
  1087. {
  1088.     background: #a7b9cd url(../images/theme/main_block.png) no-repeat 0 -280px;
  1089. }
  1090. tr.catbg th.last_th
  1091. {
  1092.     background: #a7b9cd url(../images/theme/main_block.png) no-repeat 100% -280px;
  1093. }
  1094. tr.titlebg th.first_th
  1095. {
  1096.     background: #e3e9ef url(../images/theme/main_block.png) no-repeat 0 -380px;
  1097. }
  1098. tr.titlebg th.last_th
  1099. {
  1100.     background: #e3e9ef url(../images/theme/main_block.png) no-repeat 100% -380px;
  1101. }
  1102. .table_grid th.last_th input
  1103. {
  1104.     margin: 0 2px;
  1105. }
  1106. .table_grid th.lefttext
  1107. {
  1108.     padding: 0 0.7em;
  1109. }
  1110.  
  1111. /* a general table class */
  1112. table.table_grid
  1113. {
  1114.     border-collapse: collapse;
  1115.     margin-top: 0.1em;
  1116. }
  1117. table.table_grid td
  1118. {
  1119.     padding: 3px;
  1120.     border-bottom: 1px solid #fff;
  1121.     border-right: 1px solid #fff;
  1122. }
  1123.  
  1124. /* GenericList */
  1125. .additional_row
  1126. {
  1127.     padding: 0.5em 0 0.5em 0;
  1128. }
  1129. table.table_grid thead tr.catbg th
  1130. {
  1131.     white-space: nowrap;
  1132. }
  1133.  
  1134. /* table_grid styles for Profile > Show Permissions. */
  1135. #permissions table.table_grid  td
  1136. {
  1137.     padding: 0.4em 0.8em;
  1138.     cursor: default;
  1139.  
  1140. /* Common styles used to add corners to divisions.
  1141. ------------------------------------------------------- */
  1142. .windowbg span.topslice
  1143. {
  1144.     display: block;
  1145.     padding-left: 20px;
  1146.     background: url(../images/theme/main_block.png) 0 -30px no-repeat;
  1147. }
  1148. .windowbg span.topslice span
  1149. {
  1150.     display: block;
  1151.     background: url(../images/theme/main_block.png) 100% -30px no-repeat;
  1152.     height: 11px;
  1153. }
  1154. .windowbg span.botslice
  1155. {
  1156.     display: block;
  1157.     padding-left: 20px;
  1158.     background: url(../images/theme/main_block.png) 0 -40px no-repeat;
  1159.     font-size: 5px;
  1160.     line-height: 5px;
  1161.     margin-bottom: 0.2em;
  1162. }
  1163. .windowbg span.botslice span
  1164. {
  1165.     display: block;
  1166.     background: url(../images/theme/main_block.png) 100% -40px no-repeat;
  1167.     height: 11px;
  1168. }
  1169.  
  1170. .windowbg2 span.topslice
  1171. {
  1172.     display: block;
  1173.     padding-left: 20px;
  1174.     background: url(../images/theme/main_block.png) 0 -60px no-repeat;
  1175. }
  1176. .windowbg2 span.topslice span
  1177. {
  1178.     display: block;
  1179.     background: url(../images/theme/main_block.png) 100% -60px no-repeat;
  1180.     height: 11px;
  1181. }
  1182. .windowbg2 span.botslice
  1183. {
  1184.     display: block;
  1185.     padding-left: 20px;
  1186.     background: url(../images/theme/main_block.png) 0 -71px no-repeat;
  1187.     font-size: 5px;
  1188.     line-height: 5px;
  1189.     margin-bottom: 0.2em;
  1190. }
  1191. .windowbg2 span.botslice span
  1192. {
  1193.     display: block;
  1194.     background: url(../images/theme/main_block.png) 100% -71px no-repeat;
  1195.     height: 11px;
  1196. }
  1197. .approvebg span.topslice
  1198. {
  1199.     display: block;
  1200.     padding-left: 20px;
  1201.     background: url(../images/theme/main_block.png) 0 0 no-repeat;
  1202. }
  1203. .approvebg span.topslice span
  1204. {
  1205.     display: block;
  1206.     background: url(../images/theme/main_block.png) 100% 0 no-repeat;
  1207.     height: 11px;
  1208. }
  1209. .approvebg span.botslice
  1210. {
  1211.     display: block;
  1212.     padding-left: 20px;
  1213.     background: url(../images/theme/main_block.png) 0 -11px no-repeat;
  1214.     margin-bottom: 0.2em;
  1215. }
  1216. .approvebg span.botslice span
  1217. {
  1218.     display: block;
  1219.     background: url(../images/theme/main_block.png) 100% -11px no-repeat;
  1220.     height: 11px;
  1221. }
  1222. .postbg
  1223. {
  1224.     border-left: 1px solid #7f7f7f;
  1225.     border-right: 1px solid #7f7f7f;
  1226. }
  1227.  
  1228. /* Used for sections that need somewhat larger corners.
  1229. ----------------------------------------------------------- */
  1230. .roundframe
  1231. {
  1232.     padding: 0 10px;
  1233.     background: #f5f5f5;
  1234.     border-left: 1px solid #c5c5c5;
  1235.     border-right: 1px solid #c5c5c5;
  1236. }
  1237. .roundframe dl, .roundframe dt, .roundframe p
  1238. {
  1239.     margin: 0;
  1240. }
  1241. .roundframe p
  1242. {
  1243.     padding: 0.5em;
  1244. }
  1245. span.upperframe
  1246. {
  1247.     padding: 0;
  1248.     display: block;
  1249.     background: url(../images/theme/main_block.png) 0 -90px no-repeat;
  1250.     padding-left: 20px;
  1251. }
  1252. span.upperframe span
  1253. {
  1254.     padding: 0;
  1255.     height: 12px;
  1256.     display: block;
  1257.     background: url(../images/theme/main_block.png) 100% -90px no-repeat;
  1258. }
  1259. span.lowerframe
  1260. {
  1261.     padding: 0;
  1262.     display: block;
  1263.     background: url(../images/theme/main_block.png) 0 -102px no-repeat;
  1264.     padding-left: 20px;
  1265. }
  1266. span.lowerframe span
  1267. {
  1268.     padding: 0;
  1269.     height: 12px;
  1270.     display: block;
  1271.     background: url(../images/theme/main_block.png) 100% -102px no-repeat;
  1272. }
  1273.  
  1274. /* The main content area.
  1275. ------------------------------------------------------- */
  1276. .content
  1277. {
  1278.     padding: 0.5em 1.2em;
  1279.     margin: 0;
  1280.     border: none;
  1281. }
  1282. .content p
  1283. {
  1284.     margin: 0 0 0.5em 0;
  1285. }
  1286.  
  1287. /* Styles used by the auto suggest control.
  1288. ------------------------------------------------------- */
  1289. .auto_suggest_div
  1290. {
  1291.     border: 1px solid #000;
  1292.     position: absolute;
  1293.     visibility: hidden;
  1294. }
  1295. .auto_suggest_item
  1296. {
  1297.     background-color: #ddd;
  1298. }
  1299. .auto_suggest_item_hover
  1300. {
  1301.     background-color: #888;
  1302.  
  1303.  
  1304.  
  1305.  
  1306. cursor: url(http://forum.mghospedagem.com/ffcursormouseup8bits.png), pointer; 
  1307.  
  1308.  
  1309.  
  1310.  
  1311.  
  1312.  
  1313.  
  1314.  
  1315.  
  1316.  
  1317.  
  1318.  
  1319. /*
  1320.     cursor: pointer;
  1321. */
  1322.  
  1323.  
  1324.     color: #eee;
  1325. }
  1326.  
  1327. /* Styles for the standard dropdown menus.
  1328. ------------------------------------------------------- */
  1329. #main_menu
  1330. {
  1331.     padding: 0 0.5em;
  1332.     float: left;
  1333.     margin: 0;
  1334.     width: 98%;
  1335.     font-family:Arial, Helvetica, sans-serif;
  1336.     font-size:14px;
  1337.  
  1338.  
  1339.  
  1340. }
  1341.  
  1342. .dropmenu, .dropmenu ul
  1343. {
  1344.     list-style: none;
  1345.     line-height: 1em;
  1346.     padding: 0;
  1347.     margin: 0;
  1348.  
  1349. }
  1350. .dropmenu
  1351. {
  1352.     padding: 0 0.5em;
  1353. }
  1354. .dropmenu a
  1355. {
  1356.     display: block;
  1357.     color: #000;
  1358.     text-decoration: none;
  1359. }
  1360. .dropmenu a span
  1361. {
  1362.     display: block;
  1363.     padding: 0 0 0 5px;
  1364.     font-size: 0.9em;
  1365. }
  1366. /* the background's first level only */
  1367. .dropmenu li a.firstlevel
  1368. {
  1369.     margin-right: 8px;
  1370. }
  1371. .dropmenu li a.firstlevel span.firstlevel
  1372. {
  1373.     display: block;
  1374.     position: relative;
  1375.     left: -5px;
  1376.     padding-left: 5px;
  1377.     height: 22px;
  1378.     line-height: 19px;
  1379.     white-space: pre;
  1380. }
  1381. .dropmenu li
  1382. {
  1383.     float: left;
  1384.     padding: 0;
  1385.     margin: 0;
  1386.     position: relative;
  1387. }
  1388. .dropmenu li ul
  1389. {
  1390.     z-index: 90;
  1391.     display: none;
  1392.     position: absolute;
  1393.     width: 19.2em;
  1394.     font-weight: normal;
  1395.     border-bottom: 1px solid #999;
  1396.     background: url(../images/theme/menu_gfx.png) 0 -130px no-repeat;
  1397.     padding: 7px 0 0 0;
  1398. }
  1399. .dropmenu li li
  1400. {
  1401.     width: 19em;
  1402.     margin: 0;
  1403.     border-left: 1px solid #999;
  1404.     border-right: 1px solid #999;
  1405. }
  1406. .dropmenu li li a span
  1407. {
  1408.     display: block;
  1409.     padding: 8px;
  1410. }
  1411. .dropmenu li ul ul
  1412. {
  1413.     margin: -1.8em 0 0 13em;
  1414. }
  1415.  
  1416. /* the active button */
  1417. .dropmenu li a.active
  1418. {
  1419.     background: url(../images/theme/menu_gfx.png) no-repeat 100% 0;
  1420.     color: #fff;
  1421.     font-weight: bold;
  1422. }
  1423. .dropmenu li a.active span.firstlevel
  1424. {
  1425.     background: url(../images/theme/menu_gfx.png) no-repeat 0 0;
  1426. }
  1427. /* the hover effects */
  1428. .dropmenu li a.firstlevel:hover, .dropmenu li:hover a.firstlevel
  1429. {
  1430.     background: url(../images/theme/menu_gfx.png) no-repeat 100% -30px;
  1431.     color: #fff;
  1432.  
  1433.  
  1434.  
  1435.  
  1436.  
  1437. cursor: url(http://forum.mghospedagem.com/ffcursormouseup8bits.png), pointer; 
  1438.  
  1439.  
  1440.  
  1441.  
  1442.  
  1443.  
  1444.  
  1445.     /* cursor: pointer; */
  1446.  
  1447.  
  1448.  
  1449.  
  1450.  
  1451.  
  1452.  
  1453.  
  1454.  
  1455.     text-decoration: none;
  1456. }
  1457. .dropmenu li a.firstlevel:hover span.firstlevel, .dropmenu li:hover a.firstlevel span.firstlevel
  1458. {
  1459.     background: url(../images/theme/menu_gfx.png) no-repeat 0 -30px;
  1460. }
  1461. /* the hover effects on level2 and 3 */
  1462. .dropmenu li li a:hover, .dropmenu li li:hover>a
  1463. {
  1464.     background: #d4dbe4;
  1465.     color: #000;
  1466.     text-decoration: none;
  1467. }
  1468. .dropmenu li:hover ul ul, .dropmenu li:hover ul ul ul
  1469. {
  1470.     top: -999em;
  1471. }
  1472. .dropmenu li li:hover ul
  1473. {
  1474.     top: auto;
  1475. }
  1476. .dropmenu li:hover ul
  1477. {
  1478.     display: block;
  1479. }
  1480. .dropmenu li li.additional_items
  1481. {
  1482.     background-color: #fff;
  1483. }
  1484.  
  1485. /* The dropdown menu toggle image */
  1486. #menu_toggle
  1487. {
  1488.     float: right;
  1489.     margin-right: 10px;
  1490.     padding-top: 3px;
  1491. }
  1492. #menu_toggle span
  1493. {
  1494.     position: relative;
  1495.     right: 5000px;
  1496. }
  1497.  
  1498. /* Styles for the standard button lists.
  1499. ------------------------------------------------------- */
  1500.  
  1501. .buttonlist ul
  1502. {
  1503.     z-index: 100;
  1504.     padding: 5px;
  1505.     margin: 0 0.2em 5px 0;
  1506. }
  1507. .buttonlist ul li
  1508. {
  1509.     margin: 0;
  1510.     padding: 0;
  1511.     list-style: none;
  1512.     float: left;
  1513. }
  1514. .buttonlist ul li a
  1515. {
  1516.     display: block;
  1517.     font-size: 0.8em;
  1518.     color: #000;
  1519.     background: #e8e8e8 url(../images/theme/menu_gfx.png) no-repeat 0 -60px;
  1520.     padding: 0 0 0 8px;
  1521.     margin-left: 12px;
  1522.     text-transform: uppercase;
  1523.  
  1524.  
  1525.  
  1526.  
  1527.  
  1528.  
  1529.  
  1530.  
  1531.  
  1532.  
  1533.  
  1534. cursor: url(http://forum.mghospedagem.com/ffcursormouseup8bits.png), pointer; 
  1535.  
  1536.  
  1537.  
  1538. /*
  1539.     cursor: pointer;
  1540. */
  1541.  
  1542.  
  1543.  
  1544.  
  1545.  
  1546.  
  1547.  
  1548.  
  1549.  
  1550. }
  1551. .buttonlist ul li a:hover
  1552. {
  1553.     background: url(../images/theme/menu_gfx.png) no-repeat 0 0;
  1554.     color: #fff;
  1555.     text-decoration: none;
  1556. }
  1557. .buttonlist ul li a span
  1558. {
  1559.     background: url(../images/theme/menu_gfx.png) no-repeat 100% -60px;
  1560.     display: block;
  1561.     height: 19px;
  1562.     line-height: 19px;
  1563.     padding: 0 8px 0 0;
  1564. }
  1565. .buttonlist ul li a:hover span
  1566. {
  1567.     background: #fff url(../images/theme/menu_gfx.png) no-repeat 100% 0;
  1568. }
  1569. /* the active one */
  1570. .buttonlist ul li a.active
  1571. {
  1572.     background: #5a6c85 url(../images/theme/menu_gfx.png) no-repeat 0 -90px;
  1573.     color: #fff;
  1574.     font-weight: bold;
  1575. }
  1576. .buttonlist ul li a.active span
  1577. {
  1578.     background: url(../images/theme/menu_gfx.png) no-repeat 100% -90px;
  1579. }
  1580. .buttonlist ul li a.active
  1581. {
  1582.     font-weight: bold;
  1583. }
  1584. .buttonlist ul li a.active:hover
  1585. {
  1586.     color: #ddf;
  1587. }
  1588. .align_top ul li a, .align_bottom ul li a
  1589. {
  1590.     margin: 0 12px 0 0;
  1591. }
  1592.  
  1593. /* the navigation list */
  1594. ul#navigation
  1595. {
  1596.     margin: 0;
  1597.     font-size: 0.9em;
  1598.     padding: 1em 0.4em;
  1599. }
  1600. ul#navigation li
  1601. {
  1602.     float: none;
  1603.     font-size: 0.95em;
  1604.     display: inline;
  1605. }
  1606.  
  1607. #adm_submenus
  1608. {
  1609.     padding-left: 2em;
  1610.     overflow: hidden;
  1611. }
  1612.  
  1613. /* Styles for the general looks for the Curve theme.
  1614. ------------------------------------------------------- */
  1615.  
  1616. /* the framing graphics */
  1617.     #headerbar.hbarr
  1618.  
  1619.  
  1620.     {
  1621.  
  1622.  
  1623.     background:url(../images/theme/headerbar.jpg);
  1624.     height:99px;
  1625.    /* padding-left: 20px;
  1626. */    
  1627.  
  1628.  
  1629. }
  1630.  
  1631.  
  1632.  
  1633.  
  1634.  
  1635. #header
  1636. {
  1637.  
  1638.  
  1639.  
  1640.  
  1641.  
  1642.  
  1643.  
  1644.  
  1645.  
  1646.  
  1647.  
  1648.  
  1649.  
  1650.  
  1651.  
  1652.  
  1653.  
  1654.  
  1655.  
  1656.  
  1657.  
  1658.  
  1659.  
  1660.  
  1661.     background: #FFFFFF url(../images/theme/main_block.png) no-repeat 0 -480px;
  1662.    /* padding-left: 20px;
  1663. */    
  1664.  
  1665.  
  1666.  
  1667. }
  1668.  
  1669.  
  1670.  
  1671.  
  1672.  
  1673.  
  1674.  
  1675.  
  1676.  
  1677.  
  1678. #header div.frame
  1679. {
  1680.  
  1681.  
  1682.  
  1683.  
  1684. background: url(../images/theme/header2.jpg) no-repeat bottom;
  1685.  
  1686.  
  1687.  
  1688. /*
  1689.     background: url(../images/theme/main_block.png) no-repeat 100% -480px;
  1690.     display: block;
  1691.     padding: 5px 20px 1em 0;
  1692.     */
  1693.  
  1694.  
  1695.  
  1696.  
  1697.  
  1698.  
  1699.  
  1700.  
  1701.  
  1702.  
  1703.  
  1704.  
  1705.  
  1706.  
  1707.  
  1708.  
  1709.  
  1710.  
  1711.  
  1712.  
  1713.  
  1714.  
  1715.  
  1716.     /*
  1717.  
  1718.  
  1719.     opacity:0.9;
  1720.     filter:alpha(opacity=90);  For IE8 and earlier */
  1721.  
  1722.  
  1723.  
  1724.  
  1725.  
  1726.  
  1727.  
  1728.  
  1729.  
  1730.  
  1731.  
  1732.  
  1733.  
  1734.  
  1735.  
  1736. }
  1737.  
  1738.  
  1739.  
  1740. #bfcs.bfcsclass
  1741. {
  1742. background:url(http://forum.mghospedagem.com/Themes/default/images/theme/beforecs.jpg);
  1743. height:12px;
  1744. border:solid;
  1745. border-width:1px;
  1746. border-color:#33CCFF;"
  1747.  
  1748.  
  1749. }
  1750.  
  1751.  
  1752.  
  1753.  
  1754. /* the content section */
  1755. #content_section
  1756.  
  1757.  
  1758.  
  1759.  
  1760.  
  1761. {
  1762.  
  1763. /*
  1764.     background: #FFFFFF url(../images/theme/frame_repeat.png) repeat-y top left;
  1765.     padding-left: 20px;
  1766.     */
  1767.  
  1768.     /* 
  1769.  
  1770.     opacity:0.9;
  1771.     filter:alpha(opacity=90); For IE8 and earlier */
  1772.  
  1773.  
  1774.  
  1775.  
  1776.  
  1777.  
  1778.  
  1779.  
  1780.  
  1781.  
  1782.  
  1783.  
  1784.  
  1785.  
  1786.  
  1787.  
  1788.  
  1789.  
  1790.  
  1791.  
  1792. }
  1793. #content_section div.frame
  1794. {
  1795.     background: url(../images/theme/frame_repeat.png) repeat-y top right;
  1796.     display: block;
  1797.     padding: 0 20px 0 0;
  1798.     padding-left: 20px;
  1799. }
  1800. #main_content_section
  1801. {
  1802.     width: 100%;
  1803.     min-height: 200px;
  1804. }
  1805.  
  1806. /* the main title, always stay at 45 pixels in height! */
  1807.  
  1808.  
  1809.  
  1810.  
  1811.  
  1812.  
  1813.  
  1814.  
  1815.  
  1816.  
  1817.  
  1818.  
  1819.  
  1820.  
  1821.  
  1822.  
  1823.  
  1824.  
  1825.  
  1826. h1.forumtitle
  1827. {
  1828.  
  1829.     line-height: 45px;
  1830.     font-size: 1.8em;
  1831.  
  1832.  
  1833.     text-shadow: 1px 2px 2px #FFFFFF;
  1834.  
  1835.     font-family: Geneva, arial, sans-serif;
  1836.  
  1837.     margin: 0;
  1838.     padding: 0;
  1839.     float: left;
  1840. }
  1841.  
  1842.  
  1843.  
  1844.  
  1845.  
  1846.  
  1847.  
  1848.  
  1849.  
  1850.  
  1851.  
  1852.  
  1853.  
  1854.  
  1855.  
  1856.  
  1857.  
  1858.  
  1859.  
  1860.  
  1861.  
  1862. #siteslogan, img#smflogo
  1863. {
  1864.     margin: 0;
  1865.     padding: 0;
  1866.     float: right;
  1867.     line-height: 3em;
  1868.  
  1869.  
  1870.  
  1871.  
  1872.  
  1873.  
  1874.  
  1875.  
  1876.  
  1877.  
  1878. h3, h4
  1879. {
  1880.     padding-bottom: 3px;
  1881. }
  1882. /* the upshrink image needs some tweaking */
  1883. img#upshrink
  1884. {
  1885.     float: right;
  1886.     margin: 1em;
  1887. }
  1888.  
  1889.  
  1890.  
  1891.  
  1892.  
  1893.  
  1894.  
  1895.  
  1896.  
  1897.  
  1898.  
  1899.  
  1900.  
  1901.  
  1902.  
  1903. /* ..so does the SMF logo */
  1904. img#smflogo
  1905. {
  1906.     margin-left: 1em;
  1907. }
  1908.  
  1909.  
  1910.  
  1911.  
  1912.  
  1913.  
  1914.  
  1915.  
  1916. /* the upper_section, float the two each way */
  1917. #upper_section
  1918. {
  1919.     padding: 5px;
  1920.     margin-bottom: 1.5em;
  1921. }
  1922.  
  1923.  
  1924.  
  1925.  
  1926.  
  1927.  
  1928.  
  1929.  
  1930.  
  1931.  
  1932.  
  1933.  
  1934.  
  1935.  
  1936.  
  1937.  
  1938.  
  1939.  
  1940.  
  1941.  
  1942.  
  1943.  
  1944.  
  1945.  
  1946.  
  1947. #upper_section ul li.greeting
  1948. {
  1949.     font-size: 1.3em;
  1950.     font-weight: bold;
  1951.     line-height: 1.5em;
  1952.  
  1953.  
  1954.     text-shadow: 1px 2px 2px #0000FF;
  1955.     color:#FFFFFF;
  1956.     font-family:"Comic Sans MS";
  1957.  
  1958.  
  1959.  
  1960. }
  1961.  
  1962.  
  1963.  
  1964.  
  1965.  
  1966.  
  1967.  
  1968.  
  1969.  
  1970.  
  1971. #upper_section div.news
  1972. {
  1973.     width: 50%;
  1974.     float: right;
  1975.     text-align: right;
  1976.  
  1977.  
  1978.  
  1979.  
  1980.  
  1981.  
  1982.  
  1983.  
  1984.  
  1985.  
  1986.     font-family:comic sans ms;
  1987.  
  1988.  
  1989.  
  1990.  
  1991.  
  1992.  
  1993.  
  1994.  
  1995.  
  1996.  
  1997.  
  1998. }
  1999. #guest_form
  2000. {
  2001.     overflow: hidden;
  2002. }
  2003. #guest_form .info
  2004. {
  2005.     padding: 4px 0 ;
  2006.     line-height: 1.3em;
  2007. }
  2008. div#upper_section div.user
  2009. {
  2010.     width: 50%;
  2011.     float: left;
  2012.     overflow: auto;
  2013. }
  2014. div#upper_section div.user p
  2015. {
  2016.     float: left;
  2017.     margin: 0 1em 1em 0;
  2018.     padding: 0;
  2019. }
  2020. div#upper_section div.user ul
  2021. {
  2022.     margin: 0;
  2023.     padding-left: 10px;
  2024. }
  2025. div#upper_section div.user ul li
  2026. {
  2027.     margin-bottom: 2px;
  2028. }
  2029. div#upper_section div.news p
  2030. {
  2031.     display: inline;
  2032. }
  2033. div#upper_section div.news form
  2034. {
  2035.     padding-bottom: 10px;
  2036. }
  2037. /* clearing the floats */
  2038. #top_section
  2039. {
  2040.     min-height: 65px;
  2041.     overflow: hidden;
  2042.     margin-bottom: 3px;
  2043. }
  2044. #upper_section
  2045. {
  2046.     overflow: hidden;
  2047. }
  2048.  
  2049. /* The navigation list (i.e. linktree) */
  2050. .navigate_section
  2051. {
  2052.     padding: 0.5em;
  2053.     margin: 0 0 0 0;
  2054. }
  2055. .navigate_section ul
  2056. {
  2057.     display: block;
  2058.     margin: 0;
  2059.     font-size: 12px;
  2060.     font-family:"Comic Sans MS";
  2061.     padding: 1em 0 0.5em 0;
  2062.     border-top: 1px solid #ccc;
  2063.     overflow: hidden;
  2064.     list-style: none;
  2065.     clear: both;
  2066.     width: 100%;
  2067. }
  2068. .navigate_section ul li
  2069. {
  2070.     float: left;
  2071.     padding: 0 0.5em 0 0;
  2072.     font-size: 0.95em;
  2073. }
  2074. .navigate_section ul li a
  2075. {
  2076.     white-space: pre;
  2077. }
  2078.  
  2079. /* The footer wih copyright links etc. */
  2080. #footer_section
  2081. {
  2082.     text-align: center;
  2083.     background: url(../images/theme/main_block.png) no-repeat 0 -820px;
  2084.     padding-left: 20px;
  2085. }
  2086. #footer_section span.smalltext
  2087. {
  2088.     font-size: 100%;
  2089. }
  2090. #footer_section div.frame
  2091. {
  2092.     background: url(../images/theme/main_block.png) no-repeat 100% -820px;
  2093.     display: block;
  2094.     padding: 60px 0 0 0;
  2095. }
  2096. #footer_section ul li, #footer_section p
  2097. {
  2098.     font-size: 0.8em;
  2099. }
  2100. #footer_section ul li
  2101. {
  2102.     display: inline;
  2103.     padding-right: 5px;
  2104. }
  2105. #footer_section ul li.copyright
  2106. {
  2107.     display: block;
  2108. }
  2109. select.qaction, input.qaction
  2110. {
  2111.     font-size: 0.85em;
  2112.     padding: 0;
  2113. }
  2114. #mlist table tbody td.windowbg2
  2115. {
  2116.     text-align: center;
  2117. }
  2118.  
  2119. /* Styles for a typical table.
  2120. ------------------------------------------------------- */
  2121.  
  2122.  
  2123.  
  2124.  
  2125.  
  2126.  
  2127.  
  2128.  
  2129.  
  2130.  
  2131.  
  2132.  
  2133.  
  2134.  
  2135.  
  2136.  
  2137.  
  2138.  
  2139.  
  2140.  
  2141. table.table_list
  2142. {
  2143.     width: 100%;
  2144.  
  2145.     font-size: 12px;
  2146.         font-family: "comic sans ms";
  2147.  
  2148.  
  2149.  
  2150.  
  2151.  
  2152.  
  2153.  
  2154.  
  2155.  
  2156.  
  2157.  
  2158.  
  2159.  
  2160.  
  2161.  
  2162.  
  2163.  
  2164.  
  2165.  
  2166. }
  2167. table.table_list p
  2168. {
  2169.     padding: 0;
  2170.     margin: 0;
  2171. }
  2172. table.table_list td, table.table_list th
  2173. {
  2174.     padding: 5px;
  2175. }
  2176. table.table_list tbody.header td
  2177. {
  2178.     padding: 0;
  2179. }
  2180. table.table_list tbody.content td.stats
  2181. {
  2182.     font-size: 90%;
  2183.     width: 15%;
  2184.     text-align: center;
  2185. }
  2186. table.table_list tbody.content td.lastpost
  2187. {
  2188.     line-height: 1.3em;
  2189.     font-size: 85%;
  2190.     width: 24%;
  2191. }
  2192. table.table_list tbody.content td.icon
  2193. {
  2194.     text-align: center;
  2195.     width: 6%;
  2196. }
  2197.  
  2198. /* Styles for the board index.
  2199. ------------------------------------------------- */
  2200.  
  2201. /* the board title! */
  2202. .table_list tbody.content td.info a.subject
  2203. {
  2204.     font-weight: bold;
  2205.     font-size: 110%;
  2206.     color: #d97b33;
  2207. }
  2208. .table_list tbody.content td.children
  2209. {
  2210.     color: #555;
  2211.     font-size: 85%;
  2212. }
  2213. p.moderators
  2214. {
  2215.     font-size: 0.8em;
  2216.     font-family: arial, sans-serif;
  2217. }
  2218. /* hide the table header/footer parts - but its here for those needing to style it */
  2219. #boardindex_table .table_list thead, #boardindex_table .table_list tfoot
  2220. {
  2221.     display: none;
  2222. }
  2223.  
  2224. /* the posting icons */
  2225. #posting_icons
  2226. {
  2227.     padding: 0 1em 0.5em 1em;
  2228.     margin: 0 0 1em 0;
  2229.     line-height: 1em;
  2230. }
  2231. #posting_icons ul
  2232. {
  2233.     font-size: 0.8em;
  2234. }
  2235. #posting_icons img
  2236. {
  2237.     vertical-align: middle;
  2238.     margin: 0 0 0 4ex;
  2239. }
  2240. #postbuttons_upper ul li a span
  2241. {
  2242.     line-height: 19px;
  2243.     padding: 0 0 0 6px;
  2244. }
  2245. .nextlinks
  2246. {
  2247.     text-align: right;
  2248.     margin-top: -1px;
  2249. }
  2250. .nextlinks_bottom
  2251. {
  2252.     clear: right;
  2253.     text-align: right;
  2254. }
  2255. .mark_read
  2256. {
  2257.     padding: 0 0.5em;
  2258. }
  2259.  
  2260. /* the newsfader */
  2261. #newsfader
  2262. {
  2263.     margin: 0 2px;
  2264. }
  2265. #smfFadeScroller
  2266. {
  2267.     text-align: center;
  2268.     padding: 0 2em;
  2269.     overflow: auto;
  2270.     margin: 1em 0;
  2271.     color: #575757; /* shouldn't be shorthand style due to a JS bug in IE! */
  2272. }
  2273.  
  2274. /* Styles for the info center on the board index.
  2275. ---------------------------------------------------- */
  2276.  
  2277. #upshrinkHeaderIC
  2278. {
  2279.     margin-top: 4px;
  2280. }
  2281. dl#ic_recentposts
  2282. {
  2283.     margin: 0 0 0.5em 0;
  2284.     padding: 0.5em;
  2285.     line-height: 1.3em;
  2286. }
  2287. dl#ic_recentposts dt
  2288. {
  2289.     float: left;
  2290. }
  2291. dl#ic_recentposts dd
  2292. {
  2293.     text-align: right;
  2294. }
  2295. #upshrinkHeaderIC p
  2296. {
  2297.     margin: 0 0 0.5em 0;
  2298.     padding: 0.5em;
  2299. }
  2300. #upshrinkHeaderIC p.last
  2301. {
  2302.     margin: 0;
  2303.     padding: 0.5em;
  2304.     border-top: 2px dotted #bbb;
  2305. }
  2306. #upshrinkHeaderIC p.inline
  2307. {
  2308.     border: none;
  2309.     margin: 0;
  2310.     padding: 0.2em 0.5em 0.2em 0.5em;
  2311. }
  2312. #upshrinkHeaderIC p.stats
  2313. {
  2314.     font-size: 1.1em;
  2315.     padding-top: 8px;
  2316. }
  2317. form#ic_login
  2318. {
  2319.     padding: 0.5em;
  2320.     height: 2em;
  2321. }
  2322. form#ic_login ul li
  2323. {
  2324.     margin: 0;
  2325.     padding: 0;
  2326.     float: left;
  2327.     width: 20%;
  2328.     text-align: center;
  2329. }
  2330. form#ic_login ul li label
  2331. {
  2332.     display: block;
  2333. }
  2334.  
  2335. /* the small stats */
  2336. #index_common_stats
  2337. {
  2338.     display: block;
  2339.     margin: 0 0 0.5em 0;
  2340.     text-align: right;
  2341.     font-size: 0.9em;
  2342.     position: relative;
  2343.     top: -20px;
  2344.     line-height: 1px;
  2345. }
  2346.  
  2347. img.new_posts
  2348. {
  2349.     padding: 0 0.1em;
  2350. }
  2351. /* Styles for the message (topic) index.
  2352. ---------------------------------------------------- */
  2353. div.table_frame .table_list
  2354. {
  2355.     border-collapse: collapse;
  2356.     margin: 2px 0;
  2357. }
  2358. .table_frame .table_list td.icon, .table_frame .table_list td.info, .table_frame .table_list td.stats
  2359. {
  2360.     border-right: 2px solid white;
  2361. }
  2362. #messageindex
  2363. {
  2364.     clear: both;
  2365. }
  2366. /* the page navigation area */
  2367. .childboards
  2368. {
  2369.     margin-bottom: 0.2em;
  2370. }
  2371. #childboards h3
  2372. {
  2373.     padding-bottom: 0;
  2374. }
  2375. #childboards .table_list thead
  2376. {
  2377.     display: none;
  2378. }
  2379. #childboards .table_list
  2380. {
  2381.     margin-bottom: 1em;
  2382. }
  2383. .lastpost img
  2384. {
  2385.     float: right;
  2386.     padding: 4px;
  2387. }
  2388.  
  2389. /* Styles for the display template (topic view).
  2390. ---------------------------------------------------- */
  2391.  
  2392. #postbuttons div.buttons
  2393. {
  2394.     padding: 0.5em;
  2395.     width: 40%;
  2396.     float: right;
  2397. }
  2398. #postbuttons div.middletext
  2399. {
  2400.     width: 60%;
  2401. }
  2402. #postbuttons span
  2403. {
  2404.     display: block;
  2405.     text-align: right;
  2406. }
  2407. #postbuttons span.lower
  2408. {
  2409.     clear: right;
  2410. }
  2411. #postbuttons .buttonlist
  2412. {
  2413.     float: right;
  2414. }
  2415. #postbuttons #pagelinks
  2416. {
  2417.     padding-top: 1em;
  2418. }
  2419. #moderationbuttons
  2420. {
  2421.     overflow: hidden;
  2422. }
  2423. /* Events */
  2424. .linked_events
  2425. {
  2426.     padding: 1em 0;
  2427. }
  2428. .edit_event
  2429. {
  2430.     margin: 0 1em;
  2431.     vertical-align: middle;
  2432. }
  2433. /* Poll question */
  2434. #poll
  2435. {
  2436.     overflow: hidden;
  2437. }
  2438. #poll .content
  2439. {
  2440.     padding: 0 1em;
  2441. }
  2442. h4#pollquestion
  2443. {
  2444.     padding: 0 0 0.5em 2em;
  2445. }
  2446.  
  2447. /* Poll vote options */
  2448. #poll_options ul.options
  2449. {
  2450.     border-top: 1px solid #9999aa;
  2451.     padding: 1em 2.5em 0 2em;
  2452.     margin: 0 0 1em 0;
  2453. }
  2454. #poll_options div.submitbutton
  2455. {
  2456.     border-bottom: 1px solid #9999aa;
  2457.     clear: both;
  2458.     padding: 0 0 1em 2em;
  2459.     margin: 0 0 1em 0;
  2460. }
  2461.  
  2462. /* Poll results */
  2463. #poll_options dl.options
  2464. {
  2465.     border: solid #9999aa;
  2466.     border-width: 1px 0;
  2467.     padding: 1em 2.5em 1em 2em;
  2468.     margin: 0 1em 1em 0;
  2469.     line-height: 1.1em !important;
  2470. }
  2471.  
  2472. #poll_options dl.options dt
  2473. {
  2474.     padding: 0.3em 0;
  2475.     width: 30%;
  2476.     float: left;
  2477.     margin: 0;
  2478.     clear: left;
  2479. }
  2480.  
  2481. #poll_options dl.options .voted
  2482. {
  2483.     font-weight: bold;
  2484. }
  2485.  
  2486. #poll_options dl.options dd
  2487. {
  2488.     margin: 0 0 0 2em;
  2489.     padding: 0.1em 0 0 0;
  2490.     width: 60%;
  2491.     max-width: 450px;
  2492.     float: left;
  2493. }
  2494.  
  2495. #poll_options dl.options .percentage
  2496. {
  2497.     display: block;
  2498.     float: right;
  2499.     padding: 0.2em 0 0.3em 0;
  2500. }
  2501.  
  2502. /* Poll notices */
  2503. #poll_options p
  2504. {
  2505.     margin: 0 1.5em 0.2em 1.5em;
  2506.     padding: 0 0.5em 0.5em 0.5em;
  2507. }
  2508.  
  2509. div#pollmoderation
  2510. {
  2511.     margin: 0;
  2512.     padding: 0;
  2513.     overflow: auto;
  2514. }
  2515.  
  2516. /* onto the posts */
  2517. #forumposts
  2518. {
  2519.     clear: both;
  2520. }
  2521. #forumposts .cat_bar
  2522. {
  2523.     margin: 0 0 2px 0;
  2524. }
  2525. /* author and topic information */
  2526. #forumposts h3 span#author
  2527. {
  2528.     margin: 0 7.7em 0 0;
  2529. }
  2530. #forumposts h3 img
  2531. {
  2532.     float: left;
  2533.     margin: 4px 0.5em 0 0;
  2534. }
  2535.  
  2536.  
  2537.  
  2538.  
  2539.  
  2540.  
  2541.  
  2542.  
  2543.  
  2544.  
  2545.  
  2546.  
  2547.  
  2548.  
  2549.  
  2550.  
  2551.  
  2552.  
  2553.  
  2554.  
  2555.  
  2556.  
  2557.  
  2558.  
  2559.  
  2560.  
  2561.  
  2562.  
  2563.  
  2564.  
  2565. /*
  2566.  Fonte do título dos posts aqui.
  2567. */
  2568.  
  2569. #forumposts h3.catbg
  2570. {
  2571.     margin-bottom: 3px;
  2572.     font-size:15px;
  2573. }
  2574.  
  2575.  
  2576.  
  2577.  
  2578.  
  2579.  
  2580.  
  2581.  
  2582.  
  2583.  
  2584.  
  2585.  
  2586.  
  2587.  
  2588.  
  2589.  
  2590.  
  2591.  
  2592.  
  2593. p#whoisviewing
  2594. {
  2595.     margin: 0;
  2596.     padding: 0.5em;
  2597. }
  2598. /* poster and postarea + moderation area underneath */
  2599. .post_wrapper
  2600. {
  2601.     float:left;
  2602.     width:100%;
  2603. }
  2604. .poster
  2605. {
  2606.     float: left;
  2607.     width: 15em;
  2608. }
  2609. .postarea, .moderatorbar
  2610. {
  2611.     margin: 0 0 0 16em;
  2612. }
  2613. .postarea div.flow_hidden
  2614. {
  2615.     width: 100%;
  2616. }
  2617.  
  2618. .moderatorbar
  2619. {
  2620.     clear: right;
  2621. }
  2622. /* poster details and list of items */
  2623. .poster h4, .poster ul
  2624. {
  2625.     padding: 0;
  2626.     margin: 0 1em 0 1.5em;
  2627. }
  2628. .poster h4
  2629. {
  2630.     margin: 0.2em 0 0.4em 1.1em;
  2631.     font-size: 120%;
  2632. }
  2633. .poster h4, .poster h4 a
  2634. {
  2635.  
  2636.  
  2637.  
  2638.  
  2639.  
  2640.  
  2641.  
  2642.  
  2643.     font-size: 28px;
  2644.     font-family: Impact;
  2645.     font-style:oblique;
  2646.     text-shadow:#000000 1px 1px 1px;
  2647.     color:#FF0000;
  2648.  
  2649.     line-height: 30px;
  2650.  
  2651.  
  2652.  
  2653.  
  2654.  
  2655.  
  2656.  
  2657.  
  2658.  
  2659.  
  2660.  
  2661.  
  2662. }
  2663. .poster ul ul
  2664. {
  2665.     margin: 0.3em 1em 0 0;
  2666.     padding: 0;
  2667. }
  2668. .poster ul ul li
  2669. {
  2670.     display: inline;
  2671. }
  2672. .poster li.stars, .poster li.avatar, .poster li.blurb, li.postcount, li.im_icons ul
  2673. {
  2674.     margin-top: 0.5em;
  2675. }
  2676. .poster li.avatar
  2677. {
  2678.     overflow: hidden;
  2679. }
  2680. .poster li.warning
  2681. {
  2682.     line-height: 1.2em;
  2683.     padding-top: 1em;
  2684. }
  2685. .poster li.warning a img
  2686. {
  2687.     vertical-align: bottom;
  2688.     padding: 0 0.2em;
  2689. }
  2690. .messageicon
  2691. {
  2692.     float: left;
  2693.     margin: 0 0.5em 0 0;
  2694. }
  2695. .messageicon img
  2696. {
  2697.     padding: 6px 3px;
  2698. }
  2699. .keyinfo
  2700. {
  2701.     float: left;
  2702.     width: 50%;
  2703. }
  2704. .modifybutton
  2705. {
  2706.     clear: right;
  2707.     float: right;
  2708.     margin: 6px 20px 10px 0;
  2709.     text-align: right;
  2710.     font: bold 0.85em arial, sans-serif;
  2711.     color: #334466;    
  2712. }
  2713.  
  2714. /* The quick buttons */
  2715. div.quickbuttons_wrap
  2716. {
  2717.     padding: 0.2em 0;
  2718.     width: 100%;
  2719.     float: left;
  2720. }
  2721.  
  2722. ul.quickbuttons
  2723. {
  2724.     margin: 0.9em 11px 0 0;
  2725.     clear: right;
  2726.     float: right;
  2727.     text-align: right;
  2728.     font: bold 0.85em arial, sans-serif;
  2729. }
  2730. ul.quickbuttons li
  2731. {
  2732.     float: left;
  2733.     display: inline;
  2734.     margin: 0 0 0 11px;
  2735. }
  2736. ul.quickbuttons li a
  2737. {
  2738.     padding: 0 0 0 20px;
  2739.     display: block;
  2740.     height: 20px;
  2741.     line-height: 18px;
  2742.     float: left;
  2743. }
  2744. ul.quickbuttons a:hover
  2745. {
  2746.     color: #a70;
  2747. }
  2748. ul.quickbuttons li.quote_button
  2749. {
  2750.     background: url(../images/theme/quickbuttons.png) no-repeat 0 0;
  2751. }
  2752. ul.quickbuttons li.remove_button
  2753. {
  2754.     background: url(../images/theme/quickbuttons.png) no-repeat 0 -30px;
  2755. }
  2756. ul.quickbuttons li.modify_button
  2757. {
  2758.     background: url(../images/theme/quickbuttons.png) no-repeat 0 -60px;
  2759. }
  2760. ul.quickbuttons li.approve_button
  2761. {
  2762.     background: url(../images/theme/quickbuttons.png) no-repeat 0 -90px;
  2763. }
  2764. ul.quickbuttons li.restore_button
  2765. {
  2766.     background: url(../images/theme/quickbuttons.png) no-repeat 0 -120px;
  2767. }
  2768. ul.quickbuttons li.split_button
  2769. {
  2770.     background: url(../images/theme/quickbuttons.png) no-repeat 0 -150px;
  2771. }
  2772. ul.quickbuttons li.reply_button
  2773. {
  2774.     background: url(../images/theme/quickbuttons.png) no-repeat 0 -180px;
  2775. }
  2776. ul.quickbuttons li.reply_all_button
  2777. {
  2778.     background: url(../images/theme/quickbuttons.png) no-repeat 0 -180px;
  2779. }
  2780. ul.quickbuttons li.notify_button
  2781. {
  2782.     background: url(../images/theme/quickbuttons.png) no-repeat 0 -210px;
  2783. }
  2784. ul.quickbuttons li.inline_mod_check
  2785. {
  2786.     margin: 0 0 0 5px;
  2787. }
  2788.  
  2789. .post
  2790. {
  2791.     margin-top: 0.5em;
  2792.     clear: right;
  2793. }
  2794. .inner
  2795. {
  2796.     padding: 1em 1em 2px 0;
  2797.     margin: 0 1em 0 0;
  2798.     border-top: 1px solid #99a;
  2799.  
  2800.  
  2801.  
  2802.  
  2803.  
  2804.  
  2805.  
  2806.  
  2807.  
  2808.  
  2809.  
  2810.  
  2811.  
  2812.  
  2813.  
  2814.     color: #4D3920;
  2815.  
  2816.  
  2817.  
  2818.  
  2819.  
  2820.  
  2821.  
  2822.  
  2823.  
  2824.  
  2825.  
  2826.  
  2827.  
  2828.  
  2829.  
  2830. }
  2831. img.smiley
  2832. {
  2833.     vertical-align: bottom;
  2834. }
  2835. #forumposts .modified
  2836. {
  2837.     float: left;
  2838. }
  2839. #forumposts .reportlinks
  2840. {
  2841.     margin-right: 1.5em;
  2842.     text-align: right;
  2843.     clear: right;
  2844. }
  2845. #forumposts .signature, .post .signature
  2846. {
  2847.     margin: 1em 0 0 0;
  2848. }
  2849. #forumposts span.botslice
  2850. {
  2851.     clear: both;
  2852. }
  2853. .attachments hr
  2854. {
  2855.     clear: both;
  2856.     margin: 1em 0 1em 0;
  2857. }
  2858. .attachments
  2859. {
  2860.     padding: 1em 0 2em 0;
  2861. }
  2862. .attachments div
  2863. {
  2864.     padding: 0 0.5em;
  2865. }
  2866.  
  2867. /* Styles for the quick reply area.
  2868. ---------------------------------------------------- */
  2869.  
  2870. #quickreplybox
  2871. {
  2872.     padding-bottom: 1px;
  2873. }
  2874. #quickReplyOptions .roundframe
  2875. {
  2876.     padding: 0 10%;
  2877. }
  2878. #quickReplyOptions form textarea
  2879. {
  2880.     height: 100px;
  2881.     width: 635px;
  2882.     max-width: 100%;
  2883.     min-width: 100%;
  2884.     margin: 0.25em 0 1em 0;
  2885. }
  2886. /* The jump to box */
  2887. #display_jump_to
  2888. {
  2889.     clear: both;
  2890.     padding: 5px;
  2891.     margin-top: 6px;
  2892.     text-align: right;
  2893. }
  2894.  
  2895. /* Separator of posts. More useful in the print stylesheet. */
  2896. #forumposts .post_separator
  2897. {
  2898.     display: none;
  2899. }
  2900.  
  2901. /* Styles for edit post section
  2902. ---------------------------------------------------- */
  2903. form#postmodify .roundframe
  2904. {
  2905.     padding: 0 12%;
  2906. }
  2907. #post_header, .postbox
  2908. {
  2909.     padding: 0.5em;
  2910.     overflow: hidden;
  2911. }
  2912. #post_header dt, .postbox dt
  2913. {
  2914.     float: left;
  2915.     padding: 0;
  2916.     width: 15%;
  2917.     margin: .5em 0 0 0;
  2918.     font-weight: bold;
  2919. }
  2920. #post_header dd, .postbox dd
  2921. {
  2922.     float: left;
  2923.     padding: 0;
  2924.     width: 83%;
  2925.     margin: .3em 0;
  2926. }
  2927. #post_header img
  2928. {
  2929.     vertical-align: middle;
  2930. }
  2931. ul.post_options
  2932. {
  2933.     margin: 0 0 0 1em;
  2934.     padding: 0;
  2935.     list-style: none;
  2936.     overflow: hidden;
  2937. }
  2938. ul.post_options li
  2939. {
  2940.     margin: 0.2em 0;
  2941.     width: 49%;
  2942.     float: left;
  2943. }
  2944. #postAdditionalOptionsHeader
  2945. {
  2946.     margin-top: 1em;
  2947. }
  2948. #postMoreOptions
  2949. {
  2950.     border-bottom: 1px solid #cacdd3;
  2951.     padding: 0.5em;
  2952. }
  2953. #postAttachment, #postAttachment2
  2954. {
  2955.     overflow: hidden;
  2956.     margin: .5em 0;
  2957.     padding: 0;
  2958.     border-bottom: 1px solid #cacdd3;
  2959.     padding: 0.5em;
  2960. }
  2961. #postAttachment dd, #postAttachment2 dd
  2962. {
  2963.     margin: .3em 0 .3em 1em;
  2964. }
  2965. #postAttachment dt, #postAttachment2 dt
  2966. {
  2967.     font-weight: bold;
  2968. }
  2969. #postAttachment3
  2970. {
  2971.     margin-left: 1em;
  2972. }
  2973. #post_confirm_strip, #shortcuts
  2974. {
  2975.     padding: 1em 0 0 0;
  2976. }
  2977. .post_verification
  2978. {
  2979.     margin-top: .5em;
  2980. }
  2981. .post_verification #verification_control
  2982. {
  2983.     margin: .3em 0 .3em 1em;
  2984. }
  2985. /* The BBC buttons */
  2986. #bbcBox_message
  2987. {
  2988.     margin: 0.75em 0.5em;
  2989. }
  2990. #bbcBox_message div
  2991. {
  2992.     margin: 0.2em 0;
  2993.     vertical-align: top;
  2994. }
  2995. #bbcBox_message div img
  2996. {
  2997.     margin: 0 1px 0 0;
  2998.     vertical-align: top;
  2999. }
  3000. #bbcBox_message select
  3001. {
  3002.     margin: 0 2px;
  3003. }
  3004. /* The smiley strip */
  3005. #smileyBox_message
  3006. {
  3007.     margin: 0.5em;
  3008. }
  3009.  
  3010. /* Styles for edit event section
  3011. ---------------------------------------------------- */
  3012. #post_event .roundframe
  3013. {
  3014.     padding: 0 12%;
  3015. }
  3016. #post_event fieldset
  3017. {
  3018.     padding: 0.5em;
  3019.     clear: both;
  3020. }
  3021. #post_event #event_main input
  3022. {
  3023.     margin: 0 0 1em 0;
  3024.     float: left;
  3025. }
  3026. #post_event #event_main div.smalltext
  3027. {
  3028.     width: 33em;
  3029.     float: right;
  3030. }
  3031. #post_event div.event_options
  3032. {
  3033.     float: right;
  3034. }
  3035. #post_event ul.event_main, ul.event_options
  3036. {
  3037.     padding: 0;
  3038.     overflow: hidden;
  3039. }
  3040. #post_event ul.event_main li
  3041. {
  3042.     list-style-type: none;
  3043.     margin: 0.2em 0;
  3044.     width: 49%;
  3045.     float: left;
  3046. }
  3047. #post_event ul.event_options
  3048. {
  3049.     margin: 0;
  3050.     padding: 0 0 .7em .7em;
  3051. }
  3052. #post_event ul.event_options li
  3053. {
  3054.     list-style-type: none;
  3055.     margin: 0;
  3056.     float: left;
  3057. }
  3058. #post_event #event_main select, #post_event ul.event_options li select, #post_event ul.event_options li .input_check
  3059. {
  3060.     margin: 0 1em 0 0;
  3061. }
  3062.  
  3063. /* Styles for edit poll section.
  3064. ---------------------------------------------------- */
  3065.  
  3066. #edit_poll
  3067. {
  3068.     overflow: hidden;
  3069. }
  3070. #edit_poll fieldset
  3071. {
  3072.     padding: 0.5em;
  3073.     clear: both;
  3074.     overflow: hidden;
  3075. }
  3076. #edit_poll fieldset input
  3077. {
  3078.     margin-left: 8.1em;
  3079. }
  3080. #edit_poll ul.poll_main li
  3081. {
  3082.     padding-left: 1em;
  3083. }
  3084. #edit_poll ul.poll_main input
  3085. {
  3086.     margin-left: 1em;
  3087. }
  3088. #edit_poll ul.poll_main, dl.poll_options
  3089. {
  3090.     overflow: hidden;
  3091.     padding: 0 0 .7em .7em;
  3092.     list-style: none;
  3093. }
  3094. #edit_poll ul.poll_main li
  3095. {
  3096.     margin: 0.2em 0;
  3097. }
  3098. #edit_poll dl.poll_options dt
  3099. {
  3100.     width: 33%;
  3101.     padding: 0 0 0 1em;
  3102. }
  3103. #edit_poll dl.poll_options dd
  3104. {
  3105.     width: 65%;
  3106. }
  3107. #edit_poll dl.poll_options dd input
  3108. {
  3109.     margin-left: 0; 
  3110. }
  3111.  
  3112. /* Styles for the recent messages section.
  3113. ---------------------------------------------------- */
  3114.  
  3115. #readbuttons_top .pagelinks, #readbuttons .pagelinks
  3116. {
  3117.     padding-bottom: 1em;
  3118.     width: 60%;
  3119. }
  3120. #readbuttons .pagelinks
  3121. {
  3122.     padding-top: 1em;
  3123. }
  3124. #recent
  3125. {
  3126.     clear: both;
  3127. }
  3128.  
  3129. /* Styles for the move topic section.
  3130. ---------------------------------------------------- */
  3131.  
  3132. #move_topic dl
  3133. {
  3134.     margin-bottom: 0;
  3135. }
  3136. #move_topic dl.settings dt
  3137. {
  3138.     width: 40%;
  3139. }
  3140. #move_topic dl.settings dd
  3141. {
  3142.     width: 59%;
  3143. }
  3144. .move_topic
  3145. {
  3146.     width: 710px;
  3147.     margin: auto;
  3148.     text-align: left;
  3149. }
  3150. div.move_topic fieldset
  3151. {
  3152.     padding: 0.5em;
  3153. }
  3154.  
  3155. /* Styles for the send topic section.
  3156. ---------------------------------------------------- */
  3157.  
  3158. fieldset.send_topic
  3159. {
  3160.     border: none;
  3161.     padding: 0.5em;
  3162. }
  3163. dl.send_topic
  3164. {
  3165.     margin-bottom: 0;
  3166. }
  3167. dl.send_mail dt
  3168. {
  3169.     width: 35%;
  3170. }
  3171. dl.send_mail dd
  3172. {
  3173.     width: 64%;
  3174. }
  3175.  
  3176. /* Styles for the report topic section.
  3177. ---------------------------------------------------- */
  3178.  
  3179. #report_topic dl
  3180. {
  3181.     margin-bottom: 0;
  3182. }
  3183. #report_topic dl.settings dt
  3184. {
  3185.     width: 20%;
  3186. }
  3187. #report_topic dl.settings dd
  3188. {
  3189.     width: 79%;
  3190. }
  3191.  
  3192. /* Styles for the split topic section.
  3193. ---------------------------------------------------- */
  3194.  
  3195. div#selected, div#not_selected
  3196. {
  3197.     width: 49%;
  3198. }
  3199. ul.split_messages li.windowbg, ul.split_messages li.windowbg2
  3200. {
  3201.     margin: 1px;
  3202. }
  3203. ul.split_messages li a.split_icon
  3204. {
  3205.     padding: 0 0.5em;
  3206. }
  3207. ul.split_messages div.post
  3208. {
  3209.     padding: 1em 0 0 0;
  3210.     border-top: 1px solid #fff;
  3211. }
  3212.  
  3213. /* Styles for the merge topic section.
  3214. ---------------------------------------------------- */
  3215. ul.merge_topics li
  3216. {
  3217.     list-style-type: none;
  3218. }
  3219. dl.merge_topic dt
  3220. {
  3221.     width: 25%;
  3222. }
  3223. dl.merge_topic dd
  3224. {
  3225.     width: 74%;
  3226. }
  3227. fieldset.merge_options
  3228. {
  3229.     clear: both;
  3230. }
  3231. .custom_subject
  3232. {
  3233.     margin: 0.5em 0;
  3234. }
  3235.  
  3236. /* Styles for the login areas.
  3237. ------------------------------------------------------- */
  3238. .login
  3239. {
  3240.     width: 540px;
  3241.     margin: 0 auto;
  3242. }
  3243. .login dl
  3244. {
  3245.     overflow: auto;
  3246.     clear: right;
  3247. }
  3248. .login dt, .login dd
  3249. {
  3250.     margin: 0 0 0.4em 0;
  3251.     width: 44%;
  3252.     padding: 0.1em;
  3253. }
  3254. .login dt
  3255. {
  3256.     float: left;
  3257.     clear: both;
  3258.     text-align: right;
  3259.     font-weight: bold;
  3260. }
  3261. .login dd
  3262. {
  3263.     width: 54%;
  3264.     float: right;
  3265.     text-align: left;
  3266. }
  3267. .login p
  3268. {
  3269.     text-align: center;
  3270. }
  3271.  
  3272. /* Styles for the registration section.
  3273. ------------------------------------------------------- */
  3274. .register_error
  3275. {
  3276.     border: 1px dashed red;
  3277.     padding: 5px;
  3278.     margin: 0 1ex 1ex 1ex;
  3279. }
  3280. .register_error span
  3281. {
  3282.     text-decoration: underline;
  3283. }
  3284.  
  3285. /* Additional profile fields */
  3286. dl.register_form
  3287. {
  3288.     margin: 0;
  3289.     clear: right;
  3290. }
  3291.  
  3292. dl.register_form dt
  3293. {
  3294.     font-weight: normal;
  3295.     float: left;
  3296.     clear: both;
  3297.     width: 50%;
  3298.     margin: 0.5em 0 0 0;
  3299. }
  3300.  
  3301. dl.register_form dt strong
  3302. {
  3303.     font-weight: bold;
  3304. }
  3305.  
  3306. dl.register_form dt span
  3307. {
  3308.     display: block;
  3309. }
  3310.  
  3311. dl.register_form dd
  3312. {
  3313.     float: left;
  3314.     width: 49%;
  3315.     margin: 0.5em 0 0 0;
  3316. }
  3317.  
  3318. #confirm_buttons
  3319. {
  3320.     text-align: center;
  3321.     padding: 1em 0;
  3322. }
  3323.  
  3324. .coppa_contact
  3325. {
  3326.     padding: 4px;
  3327.     width: 32ex;
  3328.     background-color: #fff;
  3329.     color: #000;
  3330.     margin-left: 5ex;
  3331.     border: 1px solid #000;
  3332. }
  3333.  
  3334. .valid_input
  3335. {
  3336.     background-color: #f5fff0;
  3337. }
  3338. .invalid_input
  3339. {
  3340.     background-color: #fff0f0;
  3341. }
  3342.  
  3343. /* Styles for maintenance mode.
  3344. ------------------------------------------------------- */
  3345. #maintenance_mode
  3346. {
  3347.     width: 75%;
  3348.     min-width: 520px;
  3349.     text-align: left;
  3350. }
  3351. #maintenance_mode img.floatleft
  3352. {
  3353.     margin-right: 1em;
  3354. }
  3355.  
  3356. /* common for all admin sections */
  3357. h3.titlebg img
  3358. {
  3359.     vertical-align: middle;
  3360.     margin-right: 0.5em;
  3361.     margin-top: -1px;
  3362. }
  3363. tr.titlebg td
  3364. {
  3365.     padding-left: 0.7em;
  3366. }
  3367. #admin_menu
  3368. {
  3369.     min-height: 2em;
  3370.     padding-left: 0;
  3371. }
  3372. #admin_content
  3373. {
  3374.     clear: left;
  3375.     padding-top: 0.5em;
  3376. }
  3377. /* Custom profile fields like to play with us some times. */
  3378. #admin_content .custom_field
  3379. {
  3380.     margin-bottom: 15px;
  3381. }
  3382. #admin_login .centertext
  3383. {
  3384.     padding: 1em;
  3385. }
  3386. #admin_login .centertext .error
  3387. {
  3388.     padding: 0 0 1em 0;
  3389. }
  3390.  
  3391. /* Styles for sidebar menus.
  3392. ------------------------------------------------------- */
  3393. .left_admmenu, .left_admmenu ul, .left_admmenu li
  3394. {
  3395.     padding: 0;
  3396.     margin: 0;
  3397.     list-style: none;
  3398. }
  3399. #left_admsection
  3400. {
  3401.     width: 160px;
  3402.     float: left;
  3403.     padding-right: 10px;
  3404. }
  3405. .adm_section h4.titlebg
  3406. {
  3407.     font-size: 95%;
  3408.     margin-bottom: 5px;
  3409. }
  3410. #main_container
  3411. {
  3412.     position: relative;
  3413. }
  3414. .left_admmenu li
  3415. {
  3416.     padding: 0 0 0 0.5em;
  3417. }
  3418. .left_admmenu
  3419. {
  3420.     margin-bottom: 0.5em;
  3421. }
  3422. #main_admsection
  3423. {
  3424.     position: relative;
  3425.     left: 0;
  3426.     right: 0;
  3427.     overflow: hidden;
  3428. }
  3429.  
  3430. tr.windowbg td, tr.windowbg2 td, tr.approvebg td, tr.highlight2 td
  3431. {
  3432.     padding: 0.3em 0.7em;
  3433. }
  3434. #credits p
  3435. {
  3436.     padding: 0;
  3437.     font-style: italic;
  3438.     margin: 0;
  3439. }
  3440.  
  3441. /* Styles for generic tables.
  3442. ------------------------------------------------------- */
  3443. .topic_table table
  3444. {
  3445.     width: 100%;
  3446. }
  3447.  
  3448. .topic_table .icon1, .topic_table .icon2, .topic_table .stats
  3449. {
  3450.     text-align: center;
  3451. }
  3452. #topic_icons
  3453. {
  3454.     margin: 1em 0 0 0;
  3455. }
  3456. #topic_icons .description
  3457. {
  3458.     margin: 0;
  3459. }
  3460. .topic_table table thead
  3461. {
  3462.     border-bottom: 1px solid #fff;
  3463. }
  3464. /* the subject column */
  3465. .topic_table td
  3466. {
  3467.     font-size: 13px;
  3468.     font-family:"Comic Sans MS";
  3469. }
  3470. .topic_table td.subject p, .topic_table td.stats
  3471. {
  3472.     font-size: 12px;
  3473.     padding: 0;
  3474.     margin: 0;
  3475. }
  3476. .topic_table td.lastpost
  3477. {
  3478.     font-size: 12px;
  3479.     line-height: 1.3em;
  3480.     padding: 4px;
  3481. }
  3482. .topic_table td.stickybg2
  3483. {
  3484.     background-image: url(../images/icons/quick_sticky.gif);
  3485.     background-repeat: no-repeat;
  3486.     background-position: 98% 4px;
  3487. }
  3488. .topic_table td.lockedbg2
  3489. {
  3490.     background-image: url(../images/icons/quick_lock.gif);
  3491.     background-repeat: no-repeat;
  3492.     background-position: 98% 4px;
  3493. }
  3494. .topic_table td.locked_sticky2
  3495. {
  3496.     background-image: url(../images/icons/quick_sticky_lock.gif);
  3497.     background-repeat: no-repeat;
  3498.     background-position: 98% 4px;
  3499. }
  3500. .topic_table td.lastpost
  3501. {
  3502.     background-image: none;
  3503. }
  3504.  
  3505. /* Styles for (fatal) errors.
  3506. ------------------------------------------------- */
  3507.  
  3508. #fatal_error
  3509. {
  3510.     width: 80%;
  3511.     margin: auto;
  3512. }
  3513.  
  3514. .errorbox
  3515. {
  3516.     padding: 1em;
  3517.     border: 1px solid #cc3344;
  3518.     color: #000;
  3519.     background-color: #ffe4e9;
  3520.     margin-bottom: 1em;
  3521. }
  3522. .errorbox h3
  3523. {
  3524.     padding: 0;
  3525.     margin: 0;
  3526.     font-size: 1.1em;
  3527.     text-decoration: underline;
  3528. }
  3529. .errorbox p
  3530. {
  3531.     margin: 1em 0 0 0;
  3532. }
  3533. .errorbox p.alert
  3534. {
  3535.     padding: 0;
  3536.     margin: 0;
  3537.     float: left;
  3538.     width: 1em;
  3539.     font-size: 1.5em;
  3540. }
  3541.  
  3542. /* Styles for the profile section.
  3543. ------------------------------------------------- */
  3544.  
  3545. dl
  3546. {
  3547.     overflow: auto;
  3548.     margin: 0;
  3549.     padding: 0;
  3550. }
  3551.  
  3552. /* The basic user info on the left */
  3553. #basicinfo
  3554. {
  3555.     width: 20%;
  3556.     float: left;
  3557. }
  3558. #basicinfo .windowbg .content
  3559. {
  3560.     padding-left: 20px;
  3561. }
  3562. #detailedinfo
  3563. {
  3564.     width: 79.5%;
  3565.     float: right;
  3566. }
  3567. #basicinfo h4
  3568. {
  3569.     font-size: 135%;
  3570.     font-weight: 100;
  3571.     line-height: 105%;
  3572.     white-space: pre-wrap;
  3573.     overflow: hidden;
  3574. }
  3575. #basicinfo h4 span.position
  3576. {
  3577.     font-size: 80%;
  3578.     font-weight: 100;
  3579.     display: block;
  3580. }
  3581. #basicinfo img.avatar
  3582. {
  3583.     display: block;
  3584.     margin: 10px 0 0 0;
  3585. }
  3586. #basicinfo ul
  3587. {
  3588.     list-style-type: none;
  3589.     margin: 10px 0 0 0;
  3590. }
  3591. #basicinfo ul li
  3592. {
  3593.     display: block;
  3594.     float: left;
  3595.     margin-right: 5px;
  3596.     height: 20px;
  3597. }
  3598. #basicinfo span#userstatus
  3599. {
  3600.     display: block;
  3601.     clear: both;
  3602. }
  3603. #basicinfo span#userstatus img
  3604. {
  3605.     vertical-align: middle;
  3606. }
  3607. #detailedinfo div.content dl, #tracking div.content dl
  3608. {
  3609.     clear: right;
  3610.     overflow: auto;
  3611.     margin: 0 0 18px 0;
  3612.     padding: 0 0 15px 0;
  3613.     border-bottom: 1px #ccc solid;
  3614. }
  3615. #detailedinfo div.content dt, #tracking div.content dt
  3616. {
  3617.     width: 35%;
  3618.     float: left;
  3619.     margin: 0 0 3px 0;
  3620.     padding: 0;
  3621.     font-weight: bold;
  3622.     clear: both;
  3623. }
  3624. #detailedinfo div.content dd, #tracking div.content dd
  3625. {
  3626.     width: 65%;
  3627.     float: left;
  3628.     margin: 0 0 3px 0;
  3629.     padding: 0;
  3630. }
  3631. #detailedinfo div.content dl.noborder
  3632. {
  3633.     border-bottom: 0;
  3634. }
  3635. #detailedinfo div.content dt.clear
  3636. {
  3637.     width: 100%;
  3638. }
  3639. .signature, .custom_fields_above_signature
  3640. {
  3641.     border-top: 1px #ccc solid;
  3642. }
  3643. .signature h5
  3644. {
  3645.     font-size: 0.85em;
  3646.     margin-bottom: 10px;
  3647. }
  3648. #personal_picture
  3649. {
  3650.     display: block;
  3651.     margin-bottom: 0.3em;
  3652. }
  3653. #avatar_server_stored div
  3654. {
  3655.     float: left;
  3656. }
  3657. #avatar_upload
  3658. {
  3659.     overflow: auto;
  3660. }
  3661. #main_admsection #basicinfo, #main_admsection #detailedinfo
  3662. {
  3663.     width: 100%;
  3664. }
  3665. #main_admsection #basicinfo h4
  3666. {
  3667.     float: left;
  3668.     width: 35%;
  3669. }
  3670. #main_admsection #basicinfo img.avatar
  3671. {
  3672.     float: right;
  3673.     vertical-align: top;
  3674.  
  3675.  
  3676. }
  3677.  
  3678.  
  3679.  
  3680.  
  3681.  
  3682.  
  3683.  
  3684.  
  3685.  
  3686.  
  3687.  
  3688.  
  3689.  
  3690.  
  3691.  
  3692.  
  3693.     .karmabg
  3694.  
  3695. {
  3696.  
  3697.  
  3698.  
  3699. background:url(../../../reconhecimento.png) top left no-repeat;
  3700. width:100%;
  3701. height:90px;
  3702.  
  3703. }    
  3704.  
  3705.  
  3706.  
  3707.     .karmabgpoints
  3708.  
  3709. {
  3710.  
  3711. /*
  3712. ../../../
  3713.  */
  3714.  
  3715. background:url(../../../+ponto.png) top left no-repeat;
  3716. width:100%;
  3717. height:90px;
  3718. color:#0099FF;
  3719.  
  3720. }    
  3721.  
  3722.  
  3723.  
  3724.  
  3725.  
  3726.  
  3727.  
  3728.  
  3729.  
  3730.  
  3731.  
  3732.  
  3733.  
  3734.  
  3735.  
  3736.  
  3737.  
  3738.  
  3739.  
  3740.  
  3741.  
  3742. }
  3743. #main_admsection #basicinfo ul
  3744. {
  3745.     clear: left;
  3746. }
  3747. #main_admsection #basicinfo span#userstatus
  3748. {
  3749.     clear: left;
  3750. }
  3751. #main_admsection #basicinfo p#infolinks
  3752. {
  3753.     display: none;
  3754.     clear: both;
  3755. }
  3756. #main_admsection #basicinfo .botslice
  3757. {
  3758.     clear: both;
  3759. }
  3760.  
  3761. /* Simple feedback messages */
  3762. div#profile_error, div#profile_success
  3763. {
  3764.     margin: 0 0 1em 0;
  3765.     padding: 1em 2em;
  3766.     border: 1px solid;
  3767. }
  3768. div#profile_error
  3769. {
  3770.     border-color: red;
  3771.     color: red;
  3772.     background: #fee;
  3773. }
  3774.  
  3775. div#profile_error span
  3776. {
  3777.     text-decoration: underline;
  3778. }
  3779.  
  3780. div#profile_success
  3781. {
  3782.     border-color: green;
  3783.     color: green;
  3784.     background: #efe;
  3785. }
  3786.  
  3787. /* Profile statistics */
  3788. #generalstats div.content dt
  3789. {
  3790.     width: 50%;
  3791.     float: left;
  3792.     margin: 0 0 3px 0;
  3793.     padding: 0;
  3794.     font-weight: bold;
  3795.     clear: both;
  3796. }
  3797. #generalstats div.content dd
  3798. {
  3799.     width: 50%;
  3800.     float: left;
  3801.     margin: 0 0 3px 0;
  3802.     padding: 0;
  3803. }
  3804.  
  3805. /* Activity by time */
  3806. #activitytime
  3807. {
  3808.     margin: 6px 0;
  3809. }
  3810. .activity_stats
  3811. {
  3812.     margin: 0;
  3813.     padding: 0;
  3814.     list-style: none;
  3815. }
  3816. .activity_stats li
  3817. {
  3818.     margin: 0;
  3819.     padding: 0;
  3820.     width: 4.16%;
  3821.     float: left;
  3822. }
  3823. .activity_stats li span
  3824. {
  3825.     display: block;
  3826.     border: solid #000;
  3827.     border-width: 1px 1px 0 0;
  3828.     text-align: center;
  3829. }
  3830. .activity_stats li.last span
  3831. {
  3832.     border-right: none;
  3833. }
  3834. .activity_stats li div.bar
  3835. {
  3836.     margin: 0 auto;
  3837.     width: 15px;
  3838. }
  3839. .activity_stats li div.bar div
  3840. {
  3841.     background: #6294CE;
  3842. }
  3843. .activity_stats li div.bar span
  3844. {
  3845.     position: absolute;
  3846.     top: -1000em;
  3847.     left: -1000em;
  3848. }
  3849.  
  3850. /* Most popular boards by posts and activity */
  3851. #popularposts
  3852. {
  3853.     width: 49.5%;
  3854.     float: left;
  3855. }
  3856. #popularactivity
  3857. {
  3858.     width: 49.5%;
  3859.     float: right;
  3860. }
  3861.  
  3862. #popularposts div.content dt, #popularactivity div.content dt
  3863. {
  3864.     width: 65%;
  3865.     float: left;
  3866.     margin: 0 0 3px 0;
  3867.     padding: 0;
  3868.     font-weight: bold;
  3869.     clear: both;
  3870. }
  3871. #popularposts div.content dd, #popularactivity div.content dd
  3872. {
  3873.     width: 35%;
  3874.     float: left;
  3875.     margin: 0 0 3px 0;
  3876.     padding: 0;
  3877. }
  3878.  
  3879. .profile_pie
  3880. {
  3881.     background-image: url(../images/stats_pie.png);
  3882.     float: left;
  3883.     height: 20px;
  3884.     width: 20px;
  3885.     margin: 0 1em 0 0;
  3886.     padding: 0;
  3887.     text-indent: -1000em;
  3888. }
  3889.  
  3890. /* View posts */
  3891. .topic .time
  3892. {
  3893.     float: right;
  3894. }
  3895.  
  3896. .counter
  3897. {
  3898.     margin: 0 0 0 0;
  3899.     padding: 0.2em 0.5em 0.1em 0.2em;
  3900.     font-size: 2.2em;
  3901.     font-weight: bold;
  3902.     color: #3f3f3f;
  3903.     float: left;
  3904. }
  3905. .list_posts
  3906. {
  3907.     border-top: 2px solid #b3b3bf;
  3908.     padding-top: 12px;
  3909.     margin-top: 6px;
  3910.     overflow: auto;
  3911. }
  3912.  
  3913. .core_posts
  3914. {
  3915.     margin-bottom: 3px;
  3916. }
  3917.  
  3918. .topic h4
  3919. {
  3920.     margin: 3px 0;
  3921. }
  3922.  
  3923. .topic .post
  3924. {
  3925.     margin: 0 1em;
  3926.     min-height: 80px;
  3927.     height: auto !important;
  3928.     height: 80px;
  3929. }
  3930.  
  3931. .topic .mod_icons
  3932. {
  3933.     text-align: right;
  3934.     margin-right: 1em;
  3935. }
  3936.  
  3937. #tracking div.content dl
  3938. {
  3939.     border-bottom: 0;
  3940.     margin: 0;
  3941.     padding: 0;
  3942. }
  3943.  
  3944. #creator dl
  3945. {
  3946.     margin: 0;
  3947. }
  3948. #creator dt
  3949. {
  3950.     width: 40%;
  3951.     float: left;
  3952.     clear: both;
  3953.     margin: 0 0 10px 0;
  3954. }
  3955. #creator dd
  3956. {
  3957.     float: right;
  3958.     width: 55%;
  3959.     margin: 0 0 10px 2px;
  3960.     overflow: auto;
  3961. }
  3962.  
  3963. .ignoreboards
  3964. {
  3965.     margin: 0 2%;
  3966.     padding: 0;
  3967.     width: 45%;
  3968. }
  3969. .ignoreboards a
  3970. {
  3971.     font-weight: bold;
  3972.     border-bottom: 1px solid #c4c4c4;
  3973.     padding: 0.1em 0;
  3974. }
  3975. .ignoreboards a:hover
  3976. {
  3977.     text-decoration: none;
  3978.     border-bottom: 1px solid #334466;
  3979. }
  3980. .ignoreboards ul
  3981. {
  3982.     margin: 0;
  3983.     padding: 0;
  3984. }
  3985. .ignoreboards li
  3986. {
  3987.     list-style: none;
  3988.     float: left;
  3989.     clear: both;
  3990. }
  3991. .ignoreboards li.category
  3992. {
  3993.     margin: 0.7em 0 0 0;
  3994.     width: 100%;
  3995. }
  3996. .ignoreboards li ul
  3997. {
  3998.     margin: 0.2em 0 0 0;
  3999. }
  4000. .ignoreboards li.category ul li.board
  4001. {
  4002.     width: 93%;
  4003. }
  4004.  
  4005. #theme_settings
  4006. {
  4007.     overflow: auto;
  4008.     margin: 0;
  4009.     padding: 0;
  4010. }
  4011.  
  4012. #theme_settings li
  4013. {
  4014.     list-style: none;
  4015.     margin: 10px 0;
  4016.     padding: 0;
  4017. }
  4018. /* Paid Subscriptions */
  4019. #paid_subscription
  4020. {
  4021.     width: 100%;
  4022. }
  4023. #paid_subscription dl.settings
  4024. {
  4025.     margin-bottom: 0;
  4026. }
  4027. #paid_subscription dl.settings dd, #paid_subscription dl.settings dt
  4028. {
  4029.     margin-bottom: 4px;
  4030. }
  4031. /* Pick theme */
  4032. #pick_theme
  4033. {
  4034.     width: 100%;
  4035.     float: left;
  4036. }
  4037. /*Issue a warning*/
  4038. #warn_body{
  4039.     width: 80%;
  4040.     font-size: 0.9em;
  4041. }
  4042.  
  4043. /* Styles for the statistics center.
  4044. ------------------------------------------------- */
  4045. #statistics
  4046. {
  4047.     padding: 0.5em 0;
  4048. }
  4049. #statistics div.title_bar
  4050. {
  4051.     margin: 4px 0 -2px 0;
  4052. }
  4053. #statistics h3.catbg
  4054. {
  4055.     text-align: center;
  4056. }
  4057. #statistics div.content
  4058. {
  4059.     min-height: 210px;
  4060. }
  4061. #statistics div.top_row
  4062. {
  4063.     min-height: 150px;
  4064. }
  4065. #stats_left, #top_posters, #top_topics_replies, #top_topics_starter
  4066. {
  4067.     float: left;
  4068.     width: 49.5%;
  4069. }
  4070. #stats_right, #top_boards, #top_topics_views, #most_online
  4071. {
  4072.     float: right;
  4073.     width: 49.5%;
  4074. }
  4075. dl.stats
  4076. {
  4077.     clear: both;
  4078.     overflow: hidden;
  4079.     margin: 0;
  4080.     padding: 0;
  4081. }
  4082. dl.stats dt
  4083. {
  4084.     width: 49%;
  4085.     float: left;
  4086.     margin: 0 0 4px 0;
  4087.     line-height: 16px;
  4088.     padding: 0;
  4089.     clear: both;
  4090.     font-size: 1em;
  4091.  
  4092. }
  4093. dl.stats dd
  4094. {
  4095.     text-align: right;
  4096.     width: 50%;
  4097.     font-size: 1em;
  4098.     float: right;
  4099.     margin: 0 0 4px 0;
  4100.     line-height: 16px;
  4101.     padding: 0;
  4102. }
  4103. .statsbar div.bar
  4104. {
  4105.     float: left;
  4106.     background: url(../images/bar_stats.png) no-repeat;
  4107.     display: block;
  4108.     margin: 0 4px;
  4109.     height: 16px;
  4110. }
  4111. .statsbar div.bar div
  4112. {
  4113.     position: relative;
  4114.     right: -4px;
  4115.     padding: 0 4px 0 0;
  4116.     background: url(../images/bar_stats.png) no-repeat 100%;
  4117.     height: 16px;
  4118. }
  4119. tr.windowbg2 th.stats_month
  4120. {
  4121.     width: 25%;
  4122.     padding: 0 2em;
  4123.     text-align: left;
  4124. }
  4125. tr.windowbg2 td.stats_day
  4126. {
  4127.     padding: 0 3.5em;
  4128.     text-align: left;
  4129. }
  4130.  
  4131. /* Styles for the personal messages section.
  4132. ------------------------------------------------- */
  4133.  
  4134. #personal_messages h3 span#author, #personal_messages h3 span#topic_title
  4135. {
  4136.     float: left;
  4137. }
  4138. #personal_messages h3 span#author
  4139. {
  4140.     margin: 0 0 0 0.5em;
  4141. }
  4142. #personal_messages h3 span#topic_title
  4143. {
  4144.     margin: 0 0 0 9em;
  4145. }
  4146. #personal_messages div.labels
  4147. {
  4148.     padding: 0 1em 0 0;
  4149. }
  4150. #personal_messages .capacity_bar
  4151. {
  4152.     background: #f0f4f7;
  4153.     display: block;
  4154.     margin: 0.5em 0 0 1em;
  4155.     height: 1em;
  4156.     border: 1px solid #adadad;
  4157.     width: 10em;
  4158. }
  4159. #personal_messages .capacity_bar span
  4160. {
  4161.     border-right: 1px solid #adadad;
  4162.     display: block;
  4163.     height: 1em;
  4164. }
  4165. #personal_messages .capacity_bar span.empty
  4166. {
  4167.     background: #a6d69d;
  4168. }
  4169. #personal_messages .capacity_bar span.filled
  4170. {
  4171.     background: #eea800;
  4172. }
  4173. #personal_messages .capacity_bar span.full
  4174. {
  4175.     background: #f10909;
  4176. }
  4177. #personal_messages .reportlinks
  4178. {
  4179.     padding: 0.5em 1.3em;
  4180. }
  4181. #searchLabelsExpand li
  4182. {
  4183.     padding: 0.3em 0.5em;
  4184. }
  4185. #manrules div.righttext
  4186. {
  4187.     padding: 0.3em 0.1em;
  4188. }
  4189. dl.addrules dt.floatleft
  4190. {
  4191.     width: 15em;
  4192.     color: #333;
  4193.     padding: 0 1.25em 0.5em 1.25em;
  4194. }
  4195. #addrule fieldset
  4196. {
  4197.     clear: both;
  4198. }
  4199.  
  4200. /* Styles for the calendar section.
  4201. ------------------------------------------------- */
  4202. .calendar_table
  4203. {
  4204.     margin-bottom: 0.7em;
  4205. }
  4206.  
  4207. /* Used to indicate the current day in the grid. */
  4208. .calendar_today
  4209. {
  4210.     background-color: #fff;
  4211. }
  4212.  
  4213. #month_grid
  4214. {
  4215.     width: 200px;
  4216.     text-align: center;
  4217.     float: left;
  4218. }
  4219. #month_grid div.cat_bar
  4220. {
  4221.     height: 25px;
  4222. }
  4223. #month_grid h3.catbg
  4224. {
  4225.     height: 25px;
  4226.     line-height: 27px;
  4227. }
  4228. #month_grid table
  4229. {
  4230.     width: 200px;
  4231. }
  4232. #main_grid table
  4233. {
  4234.     width: 100%;
  4235.     padding-bottom: 4px;
  4236. }
  4237. #main_grid table h3.catbg
  4238. {
  4239.     text-align: center;
  4240.     height: 29px;
  4241.     border-top: 2px solid #fff;
  4242.     border-bottom: none;
  4243. }
  4244. #main_grid table.weeklist td.windowbg
  4245. {
  4246.     text-align: center;
  4247.     height: 49px;
  4248.     width: 25px;
  4249.     font-size: large;
  4250.     padding: 0 7px;
  4251.     border-bottom: 2px solid #fff;
  4252. }
  4253. #main_grid table.weeklist td.weekdays
  4254. {
  4255.     height: 49px;
  4256.     width: 100%;
  4257.     padding: 4px;
  4258.     text-align: left;
  4259.     vertical-align: middle;
  4260.     border-bottom: 2px solid #fff;
  4261. }
  4262. #main_grid h3.weekly
  4263. {
  4264.     text-align: center;
  4265.     padding-left: 0;
  4266.     font-size: large;
  4267.     height: 29px;
  4268. }
  4269. #main_grid h3 span.floatleft, #main_grid h3 span.floatright
  4270. {
  4271.     display: block;
  4272.     font-weight: bold;
  4273. }
  4274. #main_grid table th.days
  4275. {
  4276.     width: 14%;
  4277.     padding: 4px 0;
  4278. }
  4279. #main_grid table.weeklist h4.titlebg
  4280. {
  4281.     margin: 0 0 0 0;
  4282.     height: 23px;
  4283.     line-height: 27px;
  4284. }
  4285. #main_grid table td.weeks
  4286. {
  4287.     vertical-align: middle;
  4288.     text-align: center;
  4289.     font-weight: bold;
  4290.     font-size: large;
  4291. }
  4292. #main_grid table td.days
  4293. {
  4294.     vertical-align: top;
  4295.     text-align: center;
  4296. }
  4297.  
  4298. a.modify_event
  4299. {
  4300.     color: red;
  4301. }
  4302.  
  4303. span.hidelink
  4304. {
  4305.     font-style: italic;
  4306. }
  4307.  
  4308. #calendar_navigation
  4309. {
  4310.     text-align: center;
  4311. }
  4312.  
  4313. /* Styles for the memberlist section.
  4314. ------------------------------------------------- */
  4315. #mlist_search
  4316. {
  4317.     margin: auto;
  4318.     width: 500px;
  4319. }
  4320.  
  4321. /* Styles for the basic search section.
  4322. ------------------------------------------------- */
  4323. #searchform, #simple_search p
  4324. {
  4325.     padding: 0.5em;
  4326.     margin: 0;
  4327. }
  4328. #simple_search, #simple_search p, #advanced_search
  4329. {
  4330.     text-align: center !important;
  4331.     margin: 0;
  4332. }
  4333. #search_error
  4334. {
  4335.     font-style: italic;
  4336.     padding: 0.3em 1em;
  4337. }
  4338. #search_term_input
  4339. {
  4340.     font-size: 115%;
  4341.     margin: 0 0 1em;
  4342. }
  4343.  
  4344. /* Styles for the advanced search section.
  4345. ------------------------------------------------- */
  4346. #searchform fieldset
  4347. {
  4348.     text-align: left;
  4349.     padding: 0;
  4350.     border: none;
  4351. }
  4352. #advanced_search dl#search_options
  4353. {
  4354.     margin: 0 auto;
  4355.     width: 600px;
  4356.     padding-top: 1em;
  4357.     overflow: hidden;
  4358. }
  4359. #advanced_search dt
  4360. {
  4361.     clear: both;
  4362.     float: left;
  4363.     padding: 0.2em;
  4364.     text-align: right;
  4365.     width: 20%;
  4366. }
  4367. #advanced_search dd
  4368. {
  4369.     width: 75%;
  4370.     float: left;
  4371.     padding: 0.2em;
  4372.     margin: 0 0 0 0.5em;
  4373.     text-align: left;
  4374. }
  4375. #searchform p.clear
  4376. {
  4377.     clear: both;
  4378. }
  4379.  
  4380. /* Styles for the search results page.
  4381. ------------------------------------------------- */
  4382. .topic_table td blockquote, .topic_table td .quoteheader
  4383. {
  4384.     margin: 0.5em;
  4385. }
  4386. .search_results_posts
  4387. {
  4388.     overflow: hidden;
  4389. }
  4390. .search_results_posts .buttons
  4391. {
  4392.     padding: 5px 1em 0 0;
  4393. }
  4394.  
  4395. /* Styles for the help section.
  4396. ------------------------------------------------- */
  4397.  
  4398. #help_container
  4399. {
  4400.     margin: 4px 0 0 0;
  4401.     padding: 0 0 8px 0;
  4402. }
  4403. #helpmain
  4404. {
  4405.     padding: 0 1em;
  4406. }
  4407. #helpmain p
  4408. {
  4409.     margin: 0 0 1.5em 0;
  4410.     line-height: 1.5em;
  4411. }
  4412. #helpmain ul
  4413. {
  4414.     line-height: 1.5em;
  4415. }
  4416.  
  4417. /* Styles for print media.
  4418. ------------------------------------------------------- */
  4419. @media print
  4420. {
  4421.     #headerarea
  4422.     {
  4423.         display: none;
  4424.     }
  4425.  
  4426.     .tborder
  4427.     {
  4428.         border: none;
  4429.     }
  4430. }
  4431. .spoiler_head 
  4432.     margin: 2px 0 2px 0;
  4433.     background-color: #F1F1F1;
  4434.  
  4435.  
  4436.  
  4437.  
  4438. cursor: url(http://forum.mghospedagem.com/ffcursormouseup8bits.png), pointer; 
  4439.  
  4440.  
  4441.  
  4442.  
  4443.  
  4444.  
  4445.  
  4446.  
  4447. /*
  4448.     cursor: pointer; */
  4449.  
  4450.  
  4451.  
  4452.  
  4453.  
  4454.  
  4455.  
  4456.     position: relative; 
  4457.     display: inline-block; 
  4458.     padding: 2px 5px 2px 5px;
  4459.     color: #666; 
  4460.     text-align: center;
  4461.     font: bold 12px Calibri, arial, Ariel, sans-serif; 
  4462.     border: 1px solid #D1D9DF; 
  4463.     border-radius: 5px; 
  4464. }    
  4465. .spoiler_body 
  4466.     margin:0;
  4467.     display:none; 
  4468.     width: auto; 
  4469.     padding: 5px;
  4470.     color:#666; 
  4471.     background-color:#F1F1F1; 
  4472.     border: 1px solid #D1D9DF;
  4473.     border-radius: 5px; 
  4474. }
  4475.  
  4476.  
  4477. /* Make the reCAPTCHA dialog centered to match the positioning of the built-in verification */
  4478. .centertext #recaptcha_table
  4479. {
  4480.     margin: 0 auto !important;
  4481. }table.ncode_imageresizer_warning, table.ncode_imageresizer_warning td
  4482.     {
  4483.         background-color: #fefee1; /* the bgcolor behind the text and image */
  4484.     }
  4485.     table.ncode_imageresizer_warning {
  4486.         color: #000000; /* the font color */
  4487.         border: 1px solid #CCCDCD; /* the border around the whole thing */
  4488.  
  4489.  
  4490.  
  4491.  
  4492.  
  4493.  
  4494.  
  4495.  
  4496.  
  4497. cursor: url(http://forum.mghospedagem.com/ffcursormouseup8bits.png), pointer; 
  4498.  
  4499.  
  4500.  
  4501. /*
  4502. cursor: pointer;
  4503. */
  4504.  
  4505.  
  4506.  
  4507.  
  4508.  
  4509.  
  4510.  
  4511.  
  4512.     }
  4513.     table.ncode_imageresizer_warning td {
  4514.         font-size: 10px;
  4515.         vertical-align: middle;
  4516.         text-decoration: none;
  4517.     }
  4518.  
  4519.     table.ncode_imageresizer_warning td.td1 {
  4520.         padding: 5px;
  4521.     }
  4522.  





It works just fine with Chrome, partially works with Firefox, but in IE not.
Oct 23 '11 #1
0 1319

Sign in to post your reply or Sign up for a free account.

Similar topics

1
by: yb | last post by:
Please try the example below In Internet Explorer, when the mouse hovers between the right side of the image and the left side of the text, the cursor changes (i.e. Internet explorer is adding a...
0
by: reddaltoids | last post by:
I'm using a System.Web.UI.WebControls.Menu on a page I'm developing. I'm populating it from an XmlDataSource. In my testing, (with only a handful of elements), it seemed to work just fine in every...
11
by: ft310 | last post by:
Use Internet Explorer go to http://rhodeisland-aa.org/tester/meetings/index.htm On the left click "and go to meetings" Click any address in the right hand 'location' column. The entire page...
6
by: rupinderbatra | last post by:
Hello Everyone, I am working on a website and while trying to make rounded corners, I used a header and footer with rounded corners and a div between them to contain the text. In Internet...
8
by: mumpi | last post by:
From a documentlist the user activates links to see the document in a popup. The link (JSP): <a href='javascript:var w=windowOpenDok("${docURLPDFFromTiff}","document",0.5,0.8);w.focus();'> ...
2
by: sophie_newbie | last post by:
Hi, I'm using the python to set a cookie when a user logs in. Thing is it doesn't seem to be setting properly in Internet Explorer. It works grand in Firefox. Its basically: c =...
1
by: miked13 | last post by:
I have 4 textfields labeled "qtyA","qtyB","qtyC" and "GrandTotal". I have my calculate() function run Onchange of any of the "qty" fields and it displays it in "GrandTotal". I am trying to get my...
3
HaLo2FrEeEk
by: HaLo2FrEeEk | last post by:
I have an array of values, variable length. I'm writing a bookmarklet to make a task simpler and I'm having an issue with the way Firefox is reading the array. Internet Explorer (8) works fine. ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.