/* browser/style/webmail.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

/* Style for the main webmail window */





/* browser/style/colourscheme.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


/* Define the overall colour scheme */


/* First define some colour names */








/* Colourscheme macros all have names ending _CS. */

/* The default colourscheme: */



/* The colour scheme for "text areas", i.e. entry fields and similar: */



/* The colour scheme for menus: */



/* Colour schemes for hovered-over items: */
/* Default: */


/* Text areas: */


/* Drop targets during drag and drop: */



/* Colour scheme for selected items: */


/* Results of find operations: */



/* Colour for sliders: */


/* The frames between the panes have the same colour as the background: */




/* browser/style/style.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/





/* browser/style/common-panes.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/









#menubar-pane,
#toolbar-pane,
#footer-pane {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  border-width: 1ex;
  border-color: rgb(245,240,224);
  padding: 0;
}

#menubar-pane {
  top: 0;
  height: 3ex;
  border-style: none;
  border-bottom-width: 2px;
  border-bottom-style: groove;
}

#toolbar-pane {
  top: 4ex;
  height: 4ex;
  border-style: none none solid;
  padding: 0 1ex;
}

#footer-pane {
  bottom: 0;
  height: 6ex;
  font-size: 50%;
  text-align: center;
}



/* browser/style/body.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


body {
  margin: 0;
  padding: 0;
  background-color: rgb(245,240,224);
                   border-color: rgb(245,240,224);
                   color: black;
  overflow: hidden;
}


/* browser/style/buttons.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


/* Buttons (e.g. in the toolbar) */

button {
  font-size: 75%;
  height: 4.1ex;
  margin: 0 0.4ex;
  border: 2px outset;
  padding: 0.2ex 1ex;
  background-color: rgb(245,240,224);
                   border-color: rgb(245,240,224);
                   color: black;
  cursor: pointer;
}

button:hover {
  background-color: white;
                 color: black;
}


button:active {
  border-style: inset;
}


/* browser/style/status.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


#status-pane {
  position: absolute;
  bottom: 8ex;
  left: 60ex;
  right: 4ex;
  border: 1px solid red;
  height: 25ex;
  overflow: scroll;
  background-color: rgb(255,200,200);
  color: black;
  font-size: smaller;
  white-space: pre;
}



/* browser/style/waiting.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


.waiting {
  cursor: wait;
}


/* browser/style/misc.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


.hidden {
  display: none;
}



/* browser/style/menus.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

/* Menus */

/* The menubar */

.menubar {
  margin: 0;
  padding: 0.2ex;
}

.menubar>li {
  display: inline;
  margin: 0.2ex 0.5ex;
  padding: 0.1ex 0.6ex;
  background-color: rgb(245,240,224);
                   border-color: rgb(245,240,224);
                   color: black;
  cursor: pointer;
  position: relative;
  border-width: 2px;
  border-style: none solid none none;
}

.menubar>li:hover {
  background-color: white;
                 color: black;
}

.menubar>li.clicked {
  background-color: rgb(210,210,210);
                border-color: black;
                color: black;
}


/* Pop-ups */

.popupmenu {
  display: inline;
  margin: 0.2ex 0.5ex;
  padding: 0.1ex 0.6ex;
  cursor: pointer;
  position: relative;
  border-width: 2px;
  border-style: none solid none none;
  border-color: transparent;
}

.popupmenu:hover {
  background-color: white;
                 color: black;
}

.popupmenu.clicked {
  background-color: rgb(210,210,210);
                border-color: black;
                color: black;
}


/* Menus themselves */

.menu {
  display: none;
  margin: 0;
  min-width: 12ex;
  border-width: 2px;
  border-style: none solid solid none;
  background-color: rgb(210,210,210);
                border-color: black;
                color: black;
  padding: 0.3ex 1px 0;
  font-weight: normal;
}

.clicked>ul.menu {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 50;
}

.menu li {
  display: block;
  margin: 0.4ex 0;
  padding: 0 0.6ex;
  cursor: pointer;
  white-space: pre;
}

.menu li:hover {
  background-color: white;
                 color: black;
}



/* browser/style/sliders.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

/* Sliders */


div.slider {
  position: absolute;
  background-color: grey;
  border: 2px outset grey;
}


/* Cursor shapred col-resize and row-resize are in CSS3 and are widely supported in 
browsers, but are not in CSS2. */

div.hslider {
  width: 8px;
  height: 30px;
  cursor: e-resize;
  cursor: col-resize;
}

div.vslider {
  width: 30px;
  height: 8px;
  cursor: s-resize;
  cursor: row-resize;
}



/* browser/style/tree.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


/* Style for Trees */

.treebox {
  margin: 0 0 0 1em;
  border-width: 0;
  border-left: 1px solid black;
  padding: 0 0 0 0;
  white-space: nowrap;
}

.treebox:last-child { /* last-child is CSS3, supported by Moz */
  border-left-width: 0px;
  padding-left: 1px;
  background: url(imgs/tree_linestub.png) top left no-repeat;
}

.treeline {
  margin: 0;
  padding: 0;
  cursor: pointer;
}

div.treeline:hover {
  background-color: white;
                 color: black;
}

.tree img {
  border-width: 0;
  margin: 0;
}



/* browser/style/messagelist.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


/* The message list pane */

#msglist-pane table {
  table-layout: fixed;
  width: 100%;
  height: 100%;
  border-collapse: collapse;
  background-color: white;
                color: black;
}

#flags {
  width: 3%;
}

#subject {
  width: 33%;
}

#from {
  width: 33%;
}

#date {
  width: 20%;
}

#size {
  width: 9%;
}

#spacer {
  /* Needs to be wider than the scrollbar.  No good way to do this. */
  width: 2%;
}


#msglist-pane thead {
  margin: 0;
  padding: 0;
  height: 2ex;
  background-color: rgb(245,240,224);
                   border-color: rgb(245,240,224);
                   color: black;
}

#msglist-pane th {
  margin: 0;
  border: 2px outset beige;
  text-align: left;
  font-weight: normal;
}

#msglist-pane th,
#msglist-pane td {
  padding: 0 1ex;
}

#msglist-pane td.flags {
  padding: 0 1px;
}

#msglist-pane td.size {
  text-align: right;
}

#msglist-pane tbody {
  height: 18ex;
  overflow: auto;
}

#msglist-pane tbody tr {
  cursor: pointer;
}

#msglist-pane tbody tr:hover {
  background-color: rgb(210,210,210);
                      color: black;
}

#msglist-pane tbody tr td {
  white-space: nowrap;
  overflow: hidden;
}

#msglist-pane tbody tr td:hover {
  /* It would be good if values could be un-truncated when hovered over, but
     there doesn't seem to be a good way to do it.  If you just set overflow:
     visible it is overlayed on the neighbouring cell because the background
     isn't extended.  Hence the float or absolute tricks below - except these
     don't work because of Mozilla bug #339388. */
  /* overflow: visible;
  position: absolute;
  float: left; 
  background-color: TEXT_BACKGROUND FIXME; */
}

#msglist-pane .unseen {
  font-weight: bold;
}

#msglist-pane .deleted {
  text-decoration: line-through;
}


#msglist-pane th.sort {
  background: url(imgs/sortarrow.png) center right no-repeat;
}

#msglist-pane th.rsort {
  background: url(imgs/rsortarrow.png) center right no-repeat;
}



/* browser/style/webmail-panes.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

/* Panes making up the webmail window */


#mailbox-pane,
#msglist-pane,
#message-pane {
  position: absolute;
  margin: 0;
  border-width: 1ex;
  border-color: rgb(245,240,224);
  border-style: solid;
  padding: 0;
}











#mailbox-pane {
  top: 9ex;
       border-top-style: none;
  left: 0;
       width: 25ex;
       border-left-style: none;
  bottom: 3ex;
       border-bottom-style: none;
  /* what about border-bottom-style ? */
  overflow: auto;
}


#msglist-pane {
  top: 9ex;
       border-top-style: none;
  left: 26ex; 
       right: 0;
       border-right-style: none;
  height: 20ex;
}


#message-pane {
  left: 26ex; 
       right: 0;
       border-right-style: none;
  bottom: 3ex;
       border-bottom-style: none;
  top: 30ex;
}



/* browser/style/tabs.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


/* Tabs */


ul.tabset {
  margin: 1ex 0 0;
  padding: 0;
}

ul.tabset>li {
  display: inline;
  margin: 0 0.4ex;
  border-style: groove groove none;
  border-width: 2px;
  background-color: rgb(245,240,224);
                   border-color: rgb(245,240,224);
                   color: black;
  padding: 0.1ex 1.1ex 0;
  cursor: pointer;
}

ul.tabset>li.active {
  background-color: white;
                color: black;
  cursor: default;
  padding-bottom: 1px;
}



/* browser/style/messagebody.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


/* The Message Body */


#msgbody-pane {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
                color: black;
  overflow: auto;
}

#msgbody-pane:focus {
  outline-style: none;
}

.raw,
.text-plain,
.text-plain-flowed {
  font-family: monospace;
}

.raw,
.text-plain {
  white-space: pre;
}

.text-plain-flowed {
  white-space: normal;
}

.text-plain-flowed p {
  margin: 0;
  padding: 0;
  max-width: 55em;
}

.text-plain-flowed p.quoted {
  margin-left: 0.3ex;
  border-left: solid black 2px;
  padding-left: 0.7ex;  
}


/* browser/style/dragdrop.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


/* Drag and Drop */


.dragsource {
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}


/* These classes are only applied once a drag is under way. */

.droptarget {
  background-color: rgb(0,0,100) !important;
                            color: white !important; /* FIXME !important */
}

/* This is applied to the document so that the cursor is changed throughout the 
   drag. */

.draginprogress {
  cursor: move !important;
}

/* browser/style/messageheader.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


#msgheader-pane {
  margin: 0;
  border: 2px groove BACKGROUND;
  padding: 1ex 1ex 0;
}

#header {
  margin: 0;
  padding: 0;
  border-collapse: collapse;
}

#header th,
#header td {
  vertical-align: top;
  padding: 0;
}

#header th {
  text-align: left;
  width: 10ex;
}



/* browser/style/selected.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


.selected {
  background: rgb(0,0,200) !important;
                    color: white !important;
  font-weight: bold;
}



/* browser/style/mailto.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


.mailto {
  cursor: pointer;
}

span.mailto:hover {
  text-decoration: underline;
}


/* browser/style/mailboxes.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


#mailboxsearch {
  margin: 1ex;
}

.findresult {
  background: rgb(255,255,50);
                      color: black;
}


/* browser/style/labels.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


label {
  font-size: smaller;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

label:after {
  content: ":";
}


/* browser/style/login.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


/* Style for the Login dialog */

#logindialog {
  width: 30ex;
  margin: 10ex auto 0;
}

#logindialog label,
#logindialog input {
  display: block;
}

#logindialog input {
  margin-bottom: 2ex;
}





