Author: brushed
Date: Fri Jun 13 20:06:56 2008
New Revision: 667725

URL: http://svn.apache.org/viewvc?rev=667725&view=rev
Log:
2.7.0-svn-41  Frequently used icons merged in single 'strip' gifs to improve 
download speed.

Added:
    
incubator/jspwiki/trunk/src/webdocs/templates/default/images/attach-strip.png   
(with props)
    
incubator/jspwiki/trunk/src/webdocs/templates/default/images/editor-strip.gif   
(with props)
Removed:
    
incubator/jspwiki/trunk/src/webdocs/templates/default/images/arrdown-small.png
    incubator/jspwiki/trunk/src/webdocs/templates/default/images/arrleft.gif
    incubator/jspwiki/trunk/src/webdocs/templates/default/images/arrleft.png
    incubator/jspwiki/trunk/src/webdocs/templates/default/images/arrright.gif
    incubator/jspwiki/trunk/src/webdocs/templates/default/images/arrright.png
    incubator/jspwiki/trunk/src/webdocs/templates/default/images/arrup.png
    
incubator/jspwiki/trunk/src/webdocs/templates/default/images/attach-icons.png
    incubator/jspwiki/trunk/src/webdocs/templates/default/images/error.png
    incubator/jspwiki/trunk/src/webdocs/templates/default/images/exclamation.png
    incubator/jspwiki/trunk/src/webdocs/templates/default/images/film.png
    incubator/jspwiki/trunk/src/webdocs/templates/default/images/information.png
    incubator/jspwiki/trunk/src/webdocs/templates/default/images/ipod.png
    incubator/jspwiki/trunk/src/webdocs/templates/default/images/page_white.png
    
incubator/jspwiki/trunk/src/webdocs/templates/default/images/page_white_acrobat.png
    
incubator/jspwiki/trunk/src/webdocs/templates/default/images/page_white_excel.png
    
incubator/jspwiki/trunk/src/webdocs/templates/default/images/page_white_flash.png
    
incubator/jspwiki/trunk/src/webdocs/templates/default/images/page_white_magnify.png
    
incubator/jspwiki/trunk/src/webdocs/templates/default/images/page_white_powerpoint.png
    
incubator/jspwiki/trunk/src/webdocs/templates/default/images/page_white_text.png
    
incubator/jspwiki/trunk/src/webdocs/templates/default/images/page_white_word.png
    
incubator/jspwiki/trunk/src/webdocs/templates/default/images/page_white_zip.png
    incubator/jspwiki/trunk/src/webdocs/templates/default/images/search.png
Modified:
    incubator/jspwiki/trunk/build.xml
    incubator/jspwiki/trunk/src/webdocs/templates/default/AttachmentTab.jsp
    incubator/jspwiki/trunk/src/webdocs/templates/default/images/tip.png
    incubator/jspwiki/trunk/src/webdocs/templates/default/jspwiki.css
    
incubator/jspwiki/trunk/src/webdocs/templates/default/skins/OrderedList/skin.css
    incubator/jspwiki/trunk/src/webdocs/templates/default/skins/Smart/skin.css

Modified: incubator/jspwiki/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/build.xml?rev=667725&r1=667724&r2=667725&view=diff
==============================================================================
--- incubator/jspwiki/trunk/build.xml (original)
+++ incubator/jspwiki/trunk/build.xml Fri Jun 13 20:06:56 2008
@@ -438,6 +438,8 @@
         <compressjs src="webdocs/scripts/jspwiki-common.js"/>
         <compressjs src="webdocs/scripts/jspwiki-edit.js"/>
         <compressjs src="webdocs/scripts/jspwiki-prefs.js"/>
+        <compressjs src="webdocs/scripts/jspwiki-commonstyles.js"/>
+        <compressjs src="webdocs/scripts/prettify.js"/>
 
         <mkdir dir="${tmpdir}/compress/webdocs/templates/default"/>
 
@@ -446,6 +448,22 @@
     
         <compressjs src="webdocs/templates/default/jspwiki_print.css"
                     args="--line-break 0" />           
+
+        <mkdir 
dir="${tmpdir}/compress/webdocs/templates/default/skins/OrderedList"/>          
+           <compressjs 
src="webdocs/templates/default/skins/OrderedList/skin.css"
+                args="--line-break 0" />
+
+        <mkdir 
dir="${tmpdir}/compress/webdocs/templates/default/skins/PlainVanilla"/>         
+           <compressjs 
src="webdocs/templates/default/skins/PlainVanilla/skin.css"
+                args="--line-break 0" />
+
+        <mkdir 
dir="${tmpdir}/compress/webdocs/templates/default/skins/PlainVanilla 
1024x768"/>        
+        <compressjs src="webdocs/templates/default/skins/PlainVanilla 
1024x768/skin.css"
+                args="--line-break 0" />
+
+           <mkdir 
dir="${tmpdir}/compress/webdocs/templates/default/skins/Smart"/>     
+        <compressjs src="webdocs/templates/default/skins/Smart/skin.css"
+                args="--line-break 0" />
    </target>
 
   <target name="opened-war" depends="war"

Modified: 
incubator/jspwiki/trunk/src/webdocs/templates/default/AttachmentTab.jsp
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/webdocs/templates/default/AttachmentTab.jsp?rev=667725&r1=667724&r2=667725&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/webdocs/templates/default/AttachmentTab.jsp 
(original)
+++ incubator/jspwiki/trunk/src/webdocs/templates/default/AttachmentTab.jsp Fri 
Jun 13 20:06:56 2008
@@ -93,7 +93,7 @@
     <%
       String name = att.getFileName();
       int dot = name.lastIndexOf(".");
-      String attachtype = ( dot != -1 ) ? name.substring(dot+1) : "";
+      String attachtype = ( dot != -1 ) ? name.substring(dot+1) : "&nbsp;";
 
       String sname = name;
       if( sname.length() > MAXATTACHNAMELENGTH ) sname = 
sname.substring(0,MAXATTACHNAMELENGTH) + "...";

Added: 
incubator/jspwiki/trunk/src/webdocs/templates/default/images/attach-strip.png
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/webdocs/templates/default/images/attach-strip.png?rev=667725&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
incubator/jspwiki/trunk/src/webdocs/templates/default/images/attach-strip.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
incubator/jspwiki/trunk/src/webdocs/templates/default/images/editor-strip.gif
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/webdocs/templates/default/images/editor-strip.gif?rev=667725&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
incubator/jspwiki/trunk/src/webdocs/templates/default/images/editor-strip.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: incubator/jspwiki/trunk/src/webdocs/templates/default/images/tip.png
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/webdocs/templates/default/images/tip.png?rev=667725&r1=667724&r2=667725&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/jspwiki/trunk/src/webdocs/templates/default/jspwiki.css
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/webdocs/templates/default/jspwiki.css?rev=667725&r1=667724&r2=667725&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/webdocs/templates/default/jspwiki.css (original)
+++ incubator/jspwiki/trunk/src/webdocs/templates/default/jspwiki.css Fri Jun 
13 20:06:56 2008
@@ -23,7 +23,6 @@
 }
 #header, #footer {
        padding:0 0 0 20%;
-       width:80%;
 }
 #header .applicationlogo {
        position:absolute;
@@ -152,10 +151,9 @@
 }
 .hr { 
        display:block;
-       clear:both;
        border-bottom:1px solid #ddd; 
 }
-.clearbox {
+hr, .hr, .clearbox {
        clear:both;
 }
 
@@ -274,6 +272,13 @@
        margin:1em auto;  /* otherwise funny effect on more menu ugh */
        padding-bottom:1.5em; /*take scrollbar into account on ie*/
 }
+/*ie7 hack */
+*:first-child+html pre {
+       overflow:visible; overflow-x:auto; /*proprieatary ie*/
+       width:95%;  /* hasLayout=true */
+       margin:1em auto;  /* otherwise funny effect on more menu ugh */
+       padding-bottom:1.5em; /*take scrollbar into account on ie*/
+}
                            
 /* +++ 250 Hyperlinks +++ */
 a {
@@ -285,6 +290,9 @@
 }
 a:active {
 }
+.hover {
+       background-color:#eee;
+}
 a:hover {
 }
 a:focus {
@@ -306,6 +314,7 @@
        background-position:0 0;
        padding-left:14px;
        font-size:14px;
+       width:14px;
        text-decoration:none;
        overflow:hidden;
 }
@@ -369,8 +378,9 @@
        text-align:left;
 }
 .quote {
-       border-left:4px solid silver;
-       padding-left:1.5em;
+       border-left:4px solid #bbb;
+       padding-left:3em;
+       margin:0 0.5em;
 }
 .ltr {
        direction:ltr;
@@ -389,8 +399,9 @@
 }
 .diffnote, .information, .warning, .error {
        display:block;
+       clear:both;
        margin:1em .5em;
-       padding:1em 1em 1em 2.5em;
+       padding:1em 1em 1em 3em;
        background-position:.8em .9em;
        background-repeat:no-repeat;
 }
@@ -424,7 +435,7 @@
        overflow:hidden;
        border:1px solid #ddd;
        background:#f9f9f9;
-       padding:0.5em;
+       padding:0 0.5em;
        margin:0 0 1em 0.5em;
        font-size:90%;
 }
@@ -435,7 +446,6 @@
 
 /* +++ 300 Wiki tables and zebra tables +++ */
 .wikitable {
-       border:1px solid #ddd;
        margin:0.5em 0.25em;
 }
 .wikitable tr {
@@ -485,7 +495,7 @@
        padding-left:20px;
        background-repeat:no-repeat;
        background-position:0 0;
-       background-image:url(images/attach-icons.png);
+       background-image:url(images/attach-strip.png);
 }
 #attach-gif { background-position:0 -112px; }
 #attach-png { background-position:0 -112px; }
@@ -582,36 +592,88 @@
     line-height:6px;
     overflow:hidden;
 }
-#toolbar, #editassist {
-       margin:0.5em 0;
+
+#toolbuttons, #toolextra, #searchbar {
+       margin-left:1em;
+       clear:both;
 }
-#toolbar span {
+#tools span {
        float:left;
        display:block;
        padding:0.25em 0;
-       margin-right:0.5em;
+       margin-right:1em;
+}
+#toolbuttons span {
+       border:1px solid #ddd;
 }
 a.tool {
        float:left;
        display:block;
-       background:#f9f9f9;
-       border:1px solid #ddd;
-       padding:0.25em;
-       margin-right:2px;
+       background:transparent;
+       margin:2px;
        text-decoration: none;
 }
 a.tool:hover, .btn:hover {
-       background-color:#eee !important;
+       background-color:#ddd !important;
 }
-#editassist a.tool {
-       float:right;
-       margin:0 0 0 0.5em;
+#tools a.tool { 
+       border:none; 
+       background-repeat:no-repeat;
+       background-image:url("images/editor-strip.gif");
+       background-color:transparent;
+       height:16px; 
+       width:16px;
+       text-indent:20px; 
+       overflow:hidden;
 }
 
+#tbREDO                { background-position:0 0; width:auto !important;}
+#tbUNDO                { background-position:0 -16px; width:auto !important;}
+
+/*#tbOUTLINE   { background-position:0 0; width:auto !important;}*/
+#tbOUTLINE     { 
+       width:auto !important;
+       background-image:url("images/book_open.png") !important; 
+}
+
+#tbH1          { background-position:0 -192px; }
+#tbH2          { background-position:0 -208px; }
+#tbH3          { background-position:0 -224px; }
+#tbB           { background-position:0 -176px; }
+#tbI           { background-position:0 -256px; }
+#tbLink        { background-position:0 -48px; }
+#tbMONO        { background-position:0 -160px; }
+/*
+#tbColor       { background-image:url("images/paintbrush.png");  }
+#tbBackground { background-image:url("images/paintcan.png");  }
+*/
+#tbPRE         { background-position:0 -64px; }
+#tbCODE        { background-position:0 -80px; }
+#tbHR          { background-position:0 -240px; }
+#tbBR          { background-position:0 -112px; }
+#tbDL          { background-position:0 -272px; }
+#tbSUP         { background-position:0 -336px; }
+#tbSUB         { background-position:0 -320px; }
+#tbSTRIKE      { background-position:0 -304px; }
+#tbUL          { background-position:0 -256px; }
+#tbOL          { background-position:0 -272px; }
+#tbLEFT        { background-position:0 -288px; }
+#tbCENTER      { background-position:0 -304px; }
+#tbRIGHT       { background-position:0 -320px; }
+#tbJUST        { background-position:0 -336px; }
+#tbQUOTE       { background-position:0 -272px; }
+#tbIMG         { background-position:0 -96px; }
+#tbTABLE       { background-position:0 -144px; }
+#tbTOC         { background-position:0 -32px; }
+#tbTAB         { background-position:0 -128px; }
+#tbSIGN                { background-position:0 -288px; }
+
+#tbDOREPLACE { background-image:url("images/doreplace.png") !important;  }
+
 .editor {
        font:110% Monaco, "Courier New", Courier, monospace;
        padding:4px;
-       width:100%;
+       width:99%;
 }
 .edittoc {
        background:yellow;
@@ -626,46 +688,66 @@
 * html #editorarea {
        padding:4px 0;
 }
+/*ie7 hack */
+*:first-child+html #editorarea {
+       padding:4px 0;
+}
 #submitbuttons input {
        margin-right:2em;
 }
 #commentcontent, #editcontent {
-       width:99%;
-}
-#edithelp {
+       width:100%;
 }
+
 #searchbar {
-       margin:1em 0;
+       display:block !important;
+}
+#searchbar span {
+       white-space:nowrap;
 }
 #searchbarhelp {
 }
 #findSuggestionMenu {
        position:absolute;
-       background:white;
-       border:2px solid #ddd;
+       color:white;
+       background-color:rgba(0,0,0,0.7);
+       -moz-border-radius:10px;
+       -webkit-border-radius:5px;
+       -webkit-box-shadow:0 0 5px rgba(0, 0, 0, 0.5);
        z-index:10;
        font-size:85%;
        overflow:hidden;
 }
+* html #findSuggestionMenu {
+       background:url(images/tip.png) top left;
+}
+
 #findSuggestionMenu ul {
        list-style:none;
        margin:0;
        padding:0;
 }
 #findSuggestionMenu li { 
-       padding:0.25em;
+       padding:0.25em 0.5em;
        cursor:pointer;
 }
-#findSuggestionMenu li:hover {
-       background:#eee;
+#findSuggestionMenu .hover { 
+       background-color:rgba(0,0,0,0.5);
+       -moz-border-radius:10px;
+       -webkit-border-radius:5px;
+}
+* html #findSuggestionMenu .hover { 
+       background-color:black;
 }
 
+
 /* +++ 440 Favorites +++ */
+/* fixme
 #collapseFavs {
        position:absolute; 
-       margin-left:-1px; /* compensate border of .tabs */
+       margin-left:-1px; 
        left:-0.5em; 
-       top:-1px; /* compensate border of .tabs */
+       top:-1px;
        width:0.5em;
        height:100%;
        background:#f9f9f9;
@@ -680,7 +762,7 @@
        margin-right:-1px;
 }
 #collapseFavs.hover {
-       background:#eee;
+       background-color:#eee;
        border-color:#eee;
 }
 #collapseFavsWrapper {
@@ -720,6 +802,7 @@
 .fav-slide #collapseFavsPointer {
        background-image:url(images/arrright.gif);
 }
+*/
 
 .userbox {
        overflow:hidden;
@@ -883,14 +966,11 @@
        padding:0;
 
 }
-#sectiontoc ul a,
 #morebutton ul a {
        padding:0.25em 0.5em;
        text-decoration:none;
        cursor:pointer;
 }
-#sectiontoc .cursor {
-}
 .pageactions a.action {
        display:block;
 }
@@ -910,7 +990,7 @@
 a.action.login,
 a.action.logout {
 }
-#searchTools a.action, .userbox a.action, a.action.edit, a.action.more, 
a.action.sectiontoc {
+#searchTools a.action, .userbox a.action, a.action.edit, a.action.more {
        padding:0.25em 0.5em;
        text-decoration:none;
        line-height:normal;
@@ -918,11 +998,11 @@
        background:#f9f9f9;
        white-space:nowrap;
 }
-a.action.edit, a.action.more, a.action.sectiontoc {
+a.action.edit, a.action.more {
        margin-left:4px;
        border-bottom:none;
 }
-a.action.more, a.action.sectiontoc {
+a.action.more {
        padding-right:1.5em;
        background: #f9f9f9 url(images/arrdownsmall.gif) 95% center no-repeat;
 }
@@ -937,11 +1017,33 @@
        float:right;
        background:url(images/arrup.gif) no-repeat 3px 3px;
 }
+/* obsolete
 a.action.quick2bottom {
        background:url(images/arrdown.png) no-repeat 3px 3px;
        height:16px;
 }
+*/
 
+/*********/
+.popup ul {
+       position:absolute; 
+       background:white;
+       border:2px solid #ddd;
+       padding:0.25em;
+       margin:0;
+       left:0;
+       z-index:15;
+       list-style:none;
+}
+.popup li a {
+       display:block;
+       line-height:1.5;
+       white-space:nowrap;
+       cursor:pointer;
+}
+.popup a:hover {
+       background-color:#eee !important;
+} 
 
 /* +++ 472 PageContent.jsp +++ */
 #pagecontent {
@@ -954,12 +1056,26 @@
        width:100%;
        overflow-x:auto;
 }
+/*ie7 hack */
+*:first-child+html #previewcontent, *:first-child+html #info, 
*:first-child+html #pagecontent, *:first-child+html #attach, *:first-child+html 
#findcontent {
+       width:100%;
+       overflow-x:auto;
+}
+
 
 /* +++ 475 PreviewContent - "This is a preview" comment +++ */
+#sneakpreviewheader {
+       font-size:110%;
+       background-color:#ddd;
+       padding:0.5em;
+       margin:0.5em 0;
+}  
+#sneakpreview {
+}  
 #previewcontent {
 }  
 .previewcontent {
-       background:url(images/preview.gif);
+       background-image:url(images/preview.gif);
 }  
 
 /* +++ 480 PreferencesContent, LoginContent, GroupContent +++ */
@@ -1049,18 +1165,18 @@
 }
 
 /* +++ 620 Index plugin +++ */
-div.index {
+.index {
 }
-div.index .header {
+.index .header {
        padding:4px;
        background:#f9f9f9;
        border:1px solid #ddd;
        text-align:center;
        font-size:1.4em;
 }
-div.index .body {
+.index .body {
 }
-div.index .section {
+.index .section {
        color:red;
        font-size:1.4em;
 }
@@ -1160,23 +1276,23 @@
 
 
 /* +++ 640 RecentChangesPlugin +++ */
-table.recentchanges {
+.recentchanges {
        table-layout:fixed;
 } /*faster renderer */
-table.recentchanges .changenote { 
+.recentchanges .changenote { 
        font-style:italic;
 }
-table.recentchanges td {
+.recentchanges td {
        vertical-align:top;
        border-bottom:1px solid #f9f9f9;
 }
-table.recentchanges .date {
+.recentchanges .date {
        vertical-align:bottom;
        border-top:1.5em solid white;
        background-color:#f9f9f9 !important;
        border-bottom:none;
 }
-table.recentchanges tr.odd td {
+.recentchanges tr.odd td {
        background-color:transparent;
 } 
 
@@ -1352,18 +1468,36 @@
 }
 .tip-tip {
        color:white;
-       width:172px;
+       width:auto; /*240px;*/ 
        z-index:100;
        font-size:90%;
+       background-color:rgba(0,0,0,0.7);
+       -moz-border-radius:10px;
+       -webkit-border-radius:5px;
+       -webkit-box-shadow:0 0 5px rgba(0, 0, 0, 0.5);
 }
 .tip-title {
        font-weight:bold;
-       margin:0 0 1px 0;
        padding:8px 8px 4px;
+}
+* html .tip-title {
+       background:url(images/tip.png) top left;
+}
+/*ie7 hack */
+*:first-child+html .tip-title {
        background:url(images/tip.png) top left;
 }
 .tip-text {
        padding:4px 8px 8px;
+}
+.tip-text th {
+       background:grey !important;
+}
+* html .tip-text {
+       background:url(images/tip.png) bottom right;
+}
+/*ie7 hack */
+*:first-child+html .tip-text {
        background:url(images/tip.png) bottom right;
 }
 .tip-tip a {
@@ -1397,6 +1531,8 @@
        float:left;
        padding-left:0.5em;
 }
+
+
 /* collapse icons */   
 .collapseBullet, .collapseOpen, .collapseClose {
        clear:left;
@@ -1411,9 +1547,6 @@
 .collapseOpen, .collapseClose {
        cursor:pointer;
 }
-.collapseHover {
-       background:#eee;
-}
 
 /* +++ collapsebox +++ */
 .collapsebox {
@@ -1551,25 +1684,34 @@
 } 
 .categoryPopup {
        color:white;
-       width:172px;
        z-index:100;
        font-size:90%;
        margin-top:2px;
        position:absolute;
        z-index:10;
+       background-color:rgba(0,0,0,0.7);
+       -moz-border-radius:10px;
+       -webkit-border-radius:5px;
+       -webkit-box-shadow:0 0 5px rgba(0, 0, 0, 0.5);
+}
+* html .categoryPopup {
+       width:240px;
 }
 .categoryPopup a:link, .categoryPopup a:active,.categoryPopup a:visited {
        color:white;
        text-decoration:none;
 }
 .categoryTitle {
-       margin:0 0 1px 0;
        padding:4px;
-       background:url(images/tip.png) top left;
        font-weight:bold;
 }
+* html .categoryTitle {
+       background:url(images/tip.png) top left;
+}
 .categoryText {
        padding:4px 0;
+}
+* html .categoryText {
        background:url(images/tip.png) bottom right;
 }
 .categoryText ul {
@@ -1578,12 +1720,17 @@
        padding:0 !important;
 }
 .categoryText li {
+       display:block;
        padding:0 8px;
 }
-.categoryTitle:hover, .categoryText li:hover { 
-       background:black;
+.categoryPopup .hover { 
+       background-color:rgba(0,0,0,0.5);
+       -moz-border-radius:10px;
+       -webkit-border-radius:5px;
+}
+* html .categoryPopup .hover {
+       background-color:black;
 }
-
 
 /* Pretty printing styles. Used with prettify.js. */
 pre.prettyprint {   

Modified: 
incubator/jspwiki/trunk/src/webdocs/templates/default/skins/OrderedList/skin.css
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/webdocs/templates/default/skins/OrderedList/skin.css?rev=667725&r1=667724&r2=667725&view=diff
==============================================================================
Binary files - no diff available.

Modified: 
incubator/jspwiki/trunk/src/webdocs/templates/default/skins/Smart/skin.css
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/webdocs/templates/default/skins/Smart/skin.css?rev=667725&r1=667724&r2=667725&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/webdocs/templates/default/skins/Smart/skin.css 
(original)
+++ incubator/jspwiki/trunk/src/webdocs/templates/default/skins/Smart/skin.css 
Fri Jun 13 20:06:56 2008
@@ -1 +1 @@
-/* SMART skin
 * additional .css on top of jspwiki.css 
 * Dirk Frederickx, May 07
 */

/* COLOR scheme   
        #666 font-color
        #eee code, comment, weblogentries, (light grey)
        #d7d7d7 table header(darker grey)
        #ccc table borders,
        #d9e8ff edit background
        #fad112 highlight colors, searchbars, ...  (amber)
        #fff7c0 information (light blue)
        #ffff80 warning (light yellow)
        #ffe0e0 error (light pink)
 */

/* +++ 010 LAYOUT of main ID blocks +++ */
#wikibody {
        width:90%;
        margin:auto;
}
#header, #footer {
        margin:10px 0;
        padding:4px !important;
        background:#fad112 url(images/header-bg.gif);
        width:auto;
}
#header {
        height:100px;
}
#header .userbox {
        display:none;
}
#header .pagename {
    clear:left;
}
#header .searchbox {
        margin-top:-24px;
        margin-right:0.25em;
}
/* ie6 hack */
* html #header .searchbox {
        margin-top:0;
}

#actionsTop,#actionsBottom {
}
#footer {
        margin-top:1em;
        margin-bottom:2em;      
}
#favorites {
        margin-top:0;
}
#favorites .userbox {
        border:1px solid #b
 6b6b6;
        display:block;
}

/* +++ 200 Generic stuff here +++ */
* { 
        color:#666;
}

/* +++ 210 Page titles, headings, and paragraphs +++ */
#header .pagename { 
        color:white;
}
h2 {
        font-size:1.6em;
}
h3 {
        font-size:1.4em;
}
h4 {
        font-size:1.0em;
}
h2,h3,h4 { 
        color:#c00;
}

/* +++ 220 Lists and bullets +++ */
/* +++ 225 Forms, Labels, form-values and form-help +++ */
legend, label {
        font-weight:bold;
        font-size:100%;
        color:#c00;
}

/* +++ 230 Horizontal rules +++ */
.hr, hr {
        border:none;
        background-color:#ccc;
        height:2px;
        width:100%;
}

/* +++ 240 Pre-formatted text blocks and code +++ */
pre { 
        border:1px dashed #b6b6b6;
        background-color:#fff7c0; /*light yellow */
}

/* +++ 250 Hyperlinks +++ */
a:link, a:visited, a:active {
        color:inherit;
        text-decoration:none;
        border-bottom:1px solid #ccc;
}
a.createpage {
        color:#666;
        border-bottom:1px dashed #c00;
}
a.createpage:hover { 
        border-bottom:1px solid #c00;
}
a.wikipage:hover {
        border-bottom:1px solid #999;
 }
.calendar a, .breadcrumbs a, .applicationlogo a { 
        border-bottom:none !important;
}

/* +++ 260 Image styles, and Logo +++ */
#header .applicationlogo {
        position:static;
        float:left;
}
.applicationlogo a {
        height:32px;
        width:120px;
        margin:-4px 0;
        background-image:url(images/smart-logo.gif);
        background-position:top left;
}
.applicationlogo a:hover { 
        background-position:top left;
}

/* +++ 270 Footnotes and small text +++ */
/* +++ 280 Convenience styles and info/warning/error dialogs +++ */
.additinfo {
        background-color:#fff7c0; /*light yellow */
}

/* +++ 290 Comment boxes (used on some pages) +++ */
.commentbox {
        border:1px dashed #b6b6b6;
        background-color:#fff7c0; /*light yellow */
}

/* +++ 300 Wiki tables and zebra tables +++ */
.wikitable * th {
        padding:4px;
        color:#c00;
        border:1px solid #ccc;
}
.wikitable * td { 
        padding:4px;
        border:1px solid #ccc;
}
.zebra-table tr.odd td {
        background:#f7f7f7;
}

/* +++ 350 Attachments +++ */
/* +++ 400 Styles for s
 pecific JSPs +++ */
/* +++ 405 AttachmentTab.JSP +++ */
/* +++ 410 CommentContent +++ */
/* +++ 415 ConflictContent +++ */
/* +++ 420 DiffContent and Diff Providers:Traditional and External +++ */
/* +++ 421 Contextual diff provider +++ */
/* +++ 425 Edit/EditContent and CommentContent +++ */
/* +++ 430 Edit/EditContent +++ */
.textarea-resizer {
        background:#fad112; 
}
/* +++ 440 Favorites +++ */
.userbox .username {
        padding:4px 0 4px 22px;
}
.username.anonymous {
        background:url(images/user.png)  2px 2px no-repeat;
}
.username.asserted {
        background:url(images/user_orange.png) 2px 2px no-repeat;
}
.username.authenticated {
        background:url(images/user_green.png)  2px 2px no-repeat;
}
/* +++ 450 FindContent / 450 Graph Bars +++ */
.breadcrumbs { 
        padding:0;
        height:1.5em; 
        overflow:hidden;
}
.searchword, .cursor, .searchmatch {
        background-color: #fad112;
} 
.graphBar {
        border-color:#fad112;
}

/* +++ 455 Footer +++ */
.copyright {
        color:#c00;
        font-weight:bold;
}

/* +
 ++ 460 Header +++ */
.breadcrumbs, .breadcrumbs a:link, .breadcrumbs a:visited, .breadcrumbs 
a:active {
        color:white !important;
}

/* +++ 465 InfoContent +++ */
.pagination {
        color:#c00;
        background:#d7d7d7;
        border:1px solid #ccc;
}
.pagination a:hover {
        background-color:#fad112;
}

/* +++ 470 PageActions.jsp +++ */
.pageactions a:link, .pageactions a:visited {
        border-bottom:none;
        font-weight:bold;
        color:#666;
}
#moremenu a:hover, a.action:hover, 
.userbox a.action:hover, a.action.quick2bottom:hover, a.action.quick2top:hover {
        background-color:#fad112 !important;
        color:#c00;
}
.actionView a,
.actionEdit a,
.actionComment a,
.actionInfo a,
.actionLogin a,
.actionLogout a,
#actionsMoreLink a,
#actionsBottom .actionPrefs a {
        /*border-left:1px solid #b6b6b6;*/
}
a.tool:hover, .btn:hover {
        background-color:#fad112 !important;
}
#toolbar a.tool { 
        border:none; 
        background-repeat:no-repeat;
        background-color:transparent;
        background-position:3px 3px;
        height:16px; 
        wi
 dth:16px; 
        text-indent:20px; 
        overflow:hidden;
}
#tbH1           { background-image:url("images/text_heading_1.png");  }
#tbH2           { background-image:url("images/text_heading_2.png");  }
#tbH3           { background-image:url("images/text_heading_3.png");  }
#tbB            { background-image:url("images/text_bold.png");  }
#tbI            { background-image:url("images/text_italic.png");  }
#tbLink         { background-image:url("images/link.png");  }
#tbMONO         { background-image:url("images/text_allcaps.png");  }
/*
#tbColor        { background-image:url("images/paintbrush.png");  }
#tbBackground { background-image:url("images/paintcan.png");  }
*/
#tbPRE          { background-image:url("images/page_white_code.png");  }
#tbCODE         { background-image:url("images/page_white_code_red.png");  }
#tbHR           { background-image:url("images/text_horizontalrule.png");  }
#tbBR           { background-image:url("images/pilcrow.png");  }
#tbDL           { background-image:url("images/application_form.png");  }
#tbSUP          { background-image:url("images/t
 ext_superscript.png");  }
#tbSUB          { background-image:url("images/text_subscript.png");  }
#tbSTRIKE       { background-image:url("images/text_strikethrough.png");  }
#tbUL           { background-image:url("images/text_list_bullets.png");  }
#tbOL           { background-image:url("images/text_list_numbers.png");  }
#tbLEFT         { background-image:url("images/text_align_left.png");  }
#tbCENTER       { background-image:url("images/text_align_center.png");  }
#tbRIGHT        { background-image:url("images/text_align_right.png");  }
#tbJUST         { background-image:url("images/text_align_justify.png");  }
#tbQUOTE        { background-image:url("images/text_padding_left.png");  }
#tbIMG          { background-image:url("images/picture.png");  }
#tbTABLE        { background-image:url("images/table.png");  }
#tbTOC          { background-image:url("images/book.png");  }
#tbTAB          { background-image:url("images/tab.png");  }
#tbSIGN         { background-image:url("images/text_signature.png");  }

/*
#tbTIME         { background-image:url("images/time.png");  
 }
#tbPLUGIN       { background-image:url("images/plugin.png");  }
#tbCUT          { background-image:url("images/cut.png");  }
#tbCOPY         { background-image:url("images/page_copy.png");  }
#tbPASTE        { background-image:url("images/page_white_paste.png");  }
#tbPASTE.mark { background-image:url("images/page_paste.png"); }
#tbUNDO         { }
#tbREDO         { }
*/

/* +++ 475 PageContent.jsp +++ */
.banner {
        background-image:url(images/header-bg.gif);
        color:white;
}
.banner h2, .banner h3, .banner h4 {
        color:white;
        padding:0.5em 0.25em;
}

/* +++ 475 PreviewContent - "This is a preview" comment +++ */
/* +++ 480 PreferencesContent, LoginContent, GroupContent +++ */
/* +++ 485 SearchBox +++ */
#searchSubmit {
        background: url(../../images/search.png) no-repeat center;
}
#header a:link, #header a:visited, #recentSearches { 
        color:#666;
}
#recentSearches div { 
        color:#666;
        text-decoration:none;
}
#searchboxMenu { 
        border:1px solid #b6b6b6;
        top:3em;
        /*right:0;*/
} 
#searchTools a:hover, #sear
 chboxMenu li:hover { 
        background:#fad112;
}

/* +++ 490 ViewTemplate +++ */
/* +++ 600 JSPWiki plugins +++ */
/* +++ 610 Image plugin +++ */
/* +++ 203 image plugin stuff +++ */
/* +++ 620 Index plugin +++ */
.index .header { 
        color:#c00;
        background:#fad112;
        font-weight:bold;
}
div.index .section a {
        color:#c00;
}

/* +++ 625 Table of contents plugin +++ */
.toc h4 {
        background:transparent;
    color:#666;
    font-size:120%;
}
.toc li a {
        color:#666;
        border-bottom:none;
        text-decoration:none;
}

/* +++ 630 Weblog and weblogarchive plugins +++ */
.weblogentryheading, .weblogentrytitle {
        background:#fff7c0;
}
.weblogentrytitle {
        color:#c00;
}
.weblogentryfooter {
        background:transparent;
        border-top:1px solid #b6b6b6;
}
.weblogcommentstitle {
        background:#fff7c0;
        border-bottom:2px solid #fad112;
        margin:0;
}
.weblogcomments {
        background:#fff7c0;
        margin:0;
}

/* +++ 640 RecentChangesPlugin +++ */
table.recentchanges td {
        border-bottom:1px solid #ccc;
}
table.rece
 ntchanges .date {
        background-color:white !important;
        border-bottom:2px solid #fad112;
}

/* +++ 800 JSPWiki JSP Taglibs +++ */
/* +++ 805 CalendarTag +++ */
table.calendar td.othermonth {
        color:silver;
}
table.calendar a {
        color:#c00;
        font-weight:bold;
}
table.calendar td.month {
        font-size:100%;
}
table.calendar td.weekdays {
        font-size:0.8em;
        padding:0 0.2em;
        color:#c00;
}

/* +++ 900 "Special-effects" JavaScript styles +++ */
/* +++ 905 Search highlights +++ */
/* +++ 910 Tabbed Pages +++ */
.tabs { 
        border:1px solid #b6b6b6;
}
.tabmenu a {
        border:1px solid #b6b6b6;
        border-bottom:none;
        margin:0 0 -1px 4px;
        color:#666;
}
.tabmenu a:hover, .tabmenu a:hover u, .tabmenu a:hover .accesskey { 
        color:#c00;
        background:#fff7c0;
}
.tabmenu a.activetab { 
        border-bottom:1px solid white;
}
.tabmenu a.activetab, .tabmenu a.activetab u { 
        color:#666;
}

/* +++ 910 Accordion +++ */
.accordion .toggle { 
        border: 2px solid #fff7c0;
        background:#fff7c0;
        font-size:11px;
}
.
 accordion, .tabbedAccordion { 
        border:1px solid #b6b6b6;
}
.accordion .toggle {
}
.togglemenu .toggle { 
        border:1px solid #b6b6b6;
        margin-left:4px;
}
.accordion .toggle:hover, .togglemenu .toggle:hover {
        color:#c00;
        background:#fad112;
}

/* +++ 912 wiki columns +++ */
/* +++ 915 Tips +++ */
.tip-anchor {
        border-bottom:2px solid #fad112;
}
.tip-title, .tip-text {
        margin:0;
        padding:4px 8px 8px;
        background:#fad112;
}
/* +++ 920 Collapsible lists +++ */
.collapseBullet, .collapseOpen, .collapseClose { 
        color:#c00; 
}
.collapseOpen:hover, .collapseClose:hover {
        background:#fad112;
        color:#c00;
}
/* +++ collapsebox +++ */
.collapsebox {
        border:1px solid #b6b6b6;
}
.collapsetitle:hover {
        background:#fff7c0;
}

/* +++ 930 Sortable tables +++ */

/* +++ 940 SLIMBOX Attachment viewer etc. +++ */
.quicklinks { font-size:12px;
        padding:0 2px;
}
.quicklinks, .quicklinks a { 
        background:#fad112;
        color:#c00;
        border:none;
}

/* +++ 950 Categorised +++ */
.categoryPopup {
        b
 order:3px solid #fad112;
}
.categoryTitle, .categoryText {
        background:#fad112;
        margin:0;
}
.categoryTitle:hover, .categoryText li:hover { 
        background:#fff7c0;
}
.categoryLink:link, .categoryLink:active, .categoryLink:hover, 
.categoryLink:visited { 
        border-bottom:2px solid #ffcc33 !important;
} 
.categoryPopup a:link, .categoryPopup a:active,.categoryPopup a:visited {
        color:inherit;
}
\ No newline at end of file
+/* SMART skin
 * additional .css on top of jspwiki.css 
 * Dirk Frederickx, May 07
 */

/* COLOR scheme   
        #666 font-color
        #eee code, comment, weblogentries, (light grey)
        #d7d7d7 table header(darker grey)
        #ccc table borders,
        #d9e8ff edit background
        #fad112 highlight colors, searchbars, ...  (amber)
        #fff7c0 information (light blue)
        #ffff80 warning (light yellow)
        #ffe0e0 error (light pink)
 */

/* +++ 010 LAYOUT of main ID blocks +++ */
#wikibody {
        width:90%;
        margin:auto;
}
#header, #footer {
        margin:10px 0;
        padding:4px !important;
        background:#fad112 url(images/header-bg.gif);
        width:auto;
}
#header {
        height:100px;
}
#header .userbox {
        display:none;
}
#header .pagename {
    clear:left;
}
#header .searchbox {
        margin-top:-24px;
        margin-right:0.25em;
}
/* ie6 hack */
* html #header .searchbox {
        margin-top:0;
}

#actionsTop,#actionsBottom {
}
#footer {
        margin-top:1em;
        margin-bottom:2em;      
}
#favorites {
        margin-top:0;
}
#favorites .userbox {
        border:1px solid #b
 6b6b6;
        display:block;
}

/* +++ 200 Generic stuff here +++ */
* { 
        color:#666;
}

/* +++ 210 Page titles, headings, and paragraphs +++ */
#header .pagename { 
        color:white;
}
h2 {
        font-size:1.6em;
}
h3 {
        font-size:1.4em;
}
h4 {
        font-size:1.0em;
}
h2,h3,h4 { 
        color:#c00;
}
.editsection a:link, .editsection a:active, .editsection a:visited {
        border:none;
        color:#ccc;
}
.editsection a:hover {
        background:#fff7c0;
        color:#999;
}

/* +++ 220 Lists and bullets +++ */
/* +++ 225 Forms, Labels, form-values and form-help +++ */
legend, label {
        font-weight:bold;
        font-size:100%;
        color:#c00;
}

/* +++ 230 Horizontal rules +++ */
.hr, hr {
        border:none;
        background-color:#ccc;
        height:2px;
        width:100%;
}

/* +++ 240 Pre-formatted text blocks and code +++ */
pre { 
        border:1px dashed #b6b6b6;
        background-color:#fff7c0; /*light yellow */
}

/* +++ 250 Hyperlinks +++ */
a:link, a:visited, a:active {
        color:inherit;
        text-decoration:none;
        border-bottom:1px solid #ccc;
}
a.createpa
 ge {
        color:#666;
        border-bottom:1px dashed #c00;
}
a.createpage:hover { 
        border-bottom:1px solid #c00;
}
a.wikipage:hover {
        border-bottom:1px solid #999;
}
.calendar a, .breadcrumbs a, .applicationlogo a { 
        border-bottom:none !important;
}

/* +++ 260 Image styles, and Logo +++ */
#header .applicationlogo {
        position:static;
        float:left;
}
.applicationlogo a {
        height:32px;
        width:120px;
        margin:-4px 0;
        background-image:url(images/smart-logo.gif);
        background-position:top left;
}
.applicationlogo a:hover { 
        background-position:top left;
}

/* +++ 270 Footnotes and small text +++ */
/* +++ 280 Convenience styles and info/warning/error dialogs +++ */
.additinfo {
        background-color:#fff7c0; /*light yellow */
}

/* +++ 290 Comment boxes (used on some pages) +++ */
.commentbox {
        border:1px dashed #b6b6b6;
        background-color:#fff7c0; /*light yellow */
}

/* +++ 300 Wiki tables and zebra tables +++ */
.wikitable * th {
        padding:4px;
        color:#c00;
        border:1px solid #ccc;
}
.wik
 itable * td { 
        padding:4px;
        border:1px solid #ccc;
}
.zebra-table tr.odd td {
        background:#f7f7f7;
}

/* +++ 350 Attachments +++ */
/* +++ 400 Styles for specific JSPs +++ */
/* +++ 405 AttachmentTab.JSP +++ */
/* +++ 410 CommentContent +++ */
/* +++ 415 ConflictContent +++ */
/* +++ 420 DiffContent and Diff Providers:Traditional and External +++ */
/* +++ 421 Contextual diff provider +++ */
/* +++ 425 Edit/EditContent and CommentContent +++ */
/* +++ 430 Edit/EditContent +++ */
.textarea-resizer {
        background:#fad112; 
}
#findSuggestionMenu {
        color:#c30;
        background-color:#fad112;
        border:4px solid #fad112;
}
#findSuggestionMenu .hover { 
        background-color:#fff7c0;
}


/* +++ 440 Favorites +++ */
.userbox .username {
        padding:4px 0 4px 22px;
}
.username.anonymous {
        background:url(images/user.png)  2px 2px no-repeat;
}
.username.asserted {
        background:url(images/user_orange.png) 2px 2px no-repeat;
}
.username.authenticated {
        background:url(images/user_green.png)  2px 2p
 x no-repeat;
}
/* +++ 450 FindContent / 450 Graph Bars +++ */
.breadcrumbs { 
        padding:0;
        height:1.5em; 
        overflow:hidden;
}
.searchword, .cursor, .searchmatch {
        background-color: #fad112;
} 
.graphBar {
        border-color:#fad112;
}

/* +++ 455 Footer +++ */
.copyright {
        color:#c00;
        font-weight:bold;
}

/* +++ 460 Header +++ */
.breadcrumbs, .breadcrumbs a:link, .breadcrumbs a:visited, .breadcrumbs 
a:active {
        color:white !important;
}

/* +++ 465 InfoContent +++ */
.pagination {
        color:#c00;
        background:#d7d7d7;
        border:1px solid #ccc;
}
.pagination a:hover {
        background-color:#fad112;
}

/* +++ 470 PageActions.jsp +++ */
.pageactions a:link, .pageactions a:visited {
        border-bottom:none;
        font-weight:bold;
        color:#666;
}
#moremenu a:hover, a.action:hover, 
.userbox a.action:hover, a.action.quick2bottom:hover, a.action.quick2top:hover {
        background-color:#fad112 !important;
        color:#c00;
}
.actionView a,
.actionEdit a,
.actionComment a,
.actionInfo a,
.actionLogin a,
.actionL
 ogout a,
#actionsMoreLink a,
#actionsBottom .actionPrefs a {
        /*border-left:1px solid #b6b6b6;*/
}
a.tool:hover, .btn:hover {
        background-color:#fad112 !important;
}

/* +++ 475 PageContent.jsp +++ */
.banner {
        background-image:url(images/header-bg.gif);
        color:white;
}
.banner h2, .banner h3, .banner h4 {
        color:white;
        padding:0.5em 0.25em;
}
#sneakpreviewheader {
        background-color:#fff7c0;
}  

/* +++ 475 PreviewContent - "This is a preview" comment +++ */
/* +++ 480 PreferencesContent, LoginContent, GroupContent +++ */
/* +++ 485 SearchBox +++ */
#searchSubmit {
        background: url(../../images/search.png) no-repeat center;
}
#header a:link, #header a:visited, #recentSearches { 
        color:#666;
}
#recentSearches div { 
        color:#666;
        text-decoration:none;
}
#searchboxMenu { 
        border:1px solid #b6b6b6;
        top:3em;
        /*right:0;*/
} 
#searchTools a:hover, #searchboxMenu li:hover { 
        background:#fad112;
}

/* +++ 490 ViewTemplate +++ */
/* +++ 600 JSPWiki plugins +++ */
/* +++ 610 Im
 age plugin +++ */
/* +++ 203 image plugin stuff +++ */
/* +++ 620 Index plugin +++ */
.index .header { 
        color:#c00;
        background:#fad112;
        font-weight:bold;
}
div.index .section a {
        color:#c00;
}

/* +++ 625 Table of contents plugin +++ */
.toc h4 {
        background:transparent;
    color:#666;
    font-size:120%;
}
.toc li a {
        color:#666;
        border-bottom:none;
        text-decoration:none;
}

/* +++ 630 Weblog and weblogarchive plugins +++ */
.weblogentryheading, .weblogentrytitle {
        background:#fff7c0;
}
.weblogentrytitle {
        color:#c00;
}
.weblogentryfooter {
        background:transparent;
        border-top:1px solid #b6b6b6;
}
.weblogcommentstitle {
        background:#fff7c0;
        border-bottom:2px solid #fad112;
        margin:0;
}
.weblogcomments {
        background:#fff7c0;
        margin:0;
}

/* +++ 640 RecentChangesPlugin +++ */
table.recentchanges td {
        border-bottom:1px solid #ccc;
}
table.recentchanges .date {
        background-color:white !important;
        border-bottom:2px solid #fad112;
}

/* +++ 800 JSPWiki JSP Taglibs ++
 + */
/* +++ 805 CalendarTag +++ */
table.calendar td.othermonth {
        color:silver;
}
table.calendar a {
        color:#c00;
        font-weight:bold;
}
table.calendar td.month {
        font-size:100%;
}
table.calendar td.weekdays {
        font-size:0.8em;
        padding:0 0.2em;
        color:#c00;
}

/* +++ 900 "Special-effects" JavaScript styles +++ */
/* +++ 905 Search highlights +++ */
/* +++ 910 Tabbed Pages +++ */
.tabs { 
        border:1px solid #b6b6b6;
}
.tabmenu a {
        border:1px solid #b6b6b6;
        border-bottom:none;
        margin:0 0 -1px 4px;
        color:#666;
}
.tabmenu a:hover, .tabmenu a:hover u, .tabmenu a:hover .accesskey { 
        color:#c00;
        background:#fff7c0;
}
.tabmenu a.activetab { 
        border-bottom:1px solid white;
}
.tabmenu a.activetab, .tabmenu a.activetab u { 
        color:#666;
}

/* +++ 910 Accordion +++ */
.accordion .toggle { 
        border: 2px solid #fff7c0;
        background:#fff7c0;
        font-size:11px;
}
.accordion, .tabbedAccordion { 
        border:1px solid #b6b6b6;
}
.accordion .toggle {
}
.togglemenu .toggle { 
        border:1px solid 
 #b6b6b6;
        margin-left:4px;
}
.accordion .toggle:hover, .togglemenu .toggle:hover {
        color:#c00;
        background:#fad112;
}

/* +++ 912 wiki columns +++ */
/* +++ 915 Tips +++ */
.tip-anchor {
        border-bottom:2px solid #fad112;
}
.tip-title, .tip-text {
        margin:0;
        padding:4px 8px 8px;
        background:#fad112;
}
/* +++ 920 Collapsible lists +++ */
.collapseBullet, .collapseOpen, .collapseClose { 
        color:#c00; 
}
.collapseOpen:hover, .collapseClose:hover {
        background:#fad112;
        color:#c00;
}
/* +++ collapsebox +++ */
.collapsebox {
        border:1px solid #b6b6b6;
}
.collapsetitle:hover {
        background:#fff7c0;
}

/* +++ 930 Sortable tables +++ */

/* +++ 940 SLIMBOX Attachment viewer etc. +++ */
.quicklinks { font-size:12px;
        padding:0 2px;
}
.quicklinks, .quicklinks a { 
        background:#fad112;
        color:#c00;
        border:none;
}

/* +++ 950 Categorised +++ */
.categoryPopup {
        border:3px solid #fad112;
}
.categoryTitle, .categoryText {
        background:#fad112;
}
.categoryPopup .hover { 
        background:#fff7
 c0;
}
.categoryLink:link, .categoryLink:active, .categoryLink:hover, 
.categoryLink:visited { 
        border-bottom:2px solid #ffcc33 !important;
} 
.categoryPopup a:link, .categoryPopup a:active,.categoryPopup a:visited {
        color:inherit;
}
\ No newline at end of file


Reply via email to