html
{
    font-family: sans-serif;
}
body
{
    background-size: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
div.cards,
div.cards
{
    display: block;
}
div.cards div
{
    float: left;
    width: 350px;
    background-color: #EEEEEE;
    margin: 5px;
    position: relative;

   -moz-box-sizing:    border-box;
   -webkit-box-sizing: border-box;
    box-sizing:        border-box;
}
div.cards div.Pokemon
{
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid #f5d319;
}
div.cards div.Duel.Masters
{
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid #000000;
}
div.cards div.Pokemon.firstedition:after
{
	/*
    content: "1";
    height: 20px;
    background-color: #000000;
    border-radius: 10px;
    font-family: serif;
    font-weight: 800;
	*/
    width: 20px;
    text-align: center;
    font-size: large;
    display: block;
    color: #000000;
    position: absolute;
    content: "❶";
    right: 0px;
    bottom: 0px;
}
div.cards div.Pokemon.firstedition p.editions
{
    display: none;
}
div.cards div.Pokemon.C:before,
div.cards div.Pokemon.R:before,
div.cards div.Pokemon.UC:before,
div.cards div.Duel.Masters.C:before,
div.cards div.Duel.Masters.R:before,
div.cards div.Duel.Masters.UC:before
{
    content: "•";
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 40px;
}
div.cards div.Pokemon.R:before,
div.cards div.Duel.Masters.R:before
{
    font-size: 20px;
    content: "★";	
}
div.cards div.Pokemon.UC:before,
div.cards div.Duel.Masters.UC:before
{
    font-size: 20px;
    content: "♦";	
}
div.cards div.Yu-Gi-Oh
{
    border: 3px solid #62585c;
}
div.cards div.Yu-Gi-Oh:after
{
    content: " ";
    display: block;
    color: gold;
    position: absolute;
    right: 0px;
    background-color: grey;
    bottom: 0px;
    width: 10px;
    height: 10px;
}
div.cards div.Yu-Gi-Oh.firstedition:after
{
    background-color: gold;
}
div.cards div p
{
    display: block;
    margin: 0px;
}
div.cards div p.image
{
    float: left;
    margin: 0px 15px 0px 0px;
}
div.cards div img
{
    height: 150px;
    width: auto;
}
div.cards div.Duel.Masters img,
div.cards div.Pokemon img
{
    height: 146px;
    width: auto;
}
.meta
{
    display: none !important;
}