@-moz-document url-prefix("http://www.google.com/reader"),
               url-prefix("https://www.google.com/reader") {

/* :: COLUMNS :: */

.entry .entry-body
{
-moz-column-count:2 !important;            /* Sets a defined number of columns, automatically
                                               chooses the width */
/*-moz-column-width: 300px !important;*/    /* Use this INSTEAD OF the above, if you instead want to
                                               have a fixed column width and automatic number of columns */
-moz-column-gap: 20px !important;           /* Specifies the gap between columns */
}


/* :: IMAGE SIZE :: */

/* 
   The following code adjusts the size of images and embedded objects
   that happen to be too large to fit within an individual column.
   It will re-size the maximum width and automatically rescale the item
   to fit to the width of an individual column.
*/

[class="item-body"] img,
[class="item-body"] embed
{
width:auto !important;
height:auto !important;
max-width:100% !important;
}


}