/* Thomas Andrews's Non-Table CSS Layout for Bridge Deals
** XML and Bridge Publishing: http://bridge.thomasoandrews.com/xml/ */

/* @import "/css/article.css"; */

div.stylemenu {
   float: right;
   font-size: smaller;
   border: thin outset;
   background: #DDF;
   padding: 1ex;
}

div.stylemenu h2 {
   padding: 0ex;
   text-align: center;
   margin: 0px;
}

/* Hack to get IE to ignure this */
div.stylemenu > h2 {
   border-bottom: medium double;
}

/* Since it ignores this ... */
h2 + .stylechoice {
   border: 0px;
}

.stylechoice {
   padding: 1ex 0 1ex 0;
   margin: 0;
   border-top: 1px solid;
}

.stylechoice a {
   text-decoration: none;
   color: black;
}

p.only {
   display: none;
}

p.only:before {
   content: "View Note: ";
   font-size: larger;
}

.ieonly {
   display: block;
}

* > p.ieonly {
   display: none;
}

/* These are used only in the example no-table-before.html */
/* IE doesn't support the :before field */
.holding:before {
    font-family: "Courier New",Courier, monospace;
}

.spade:before {
   content: "\2660  ";
}

.heart:before {
   color: red;
   content: "\2665  ";
}

.diamond:before {
   content: "\2666  ";
   color: red;
}

.club:before {
   content: "\2663  ";
}