html,body, {
    height: 100%;
}

.top {
    top: 0;
}

.bottom {
    bottom: 1%;
}

.middle {
    top: 33%;
}

.top,.middle,.bottom {
    position: absolute;
    width: 50%;
    height: 33%;
}

.holder .even-height {
    float: left;
    padding-bottom: 100000px;
    margin-bottom: -100000px;
}

html,body {
    height: 100%;
}

.img {
    width: 30%;
    overflow: hidden;
}

.txt {
    width: 70%;
    padding: 10px;
    overflow: hidden;
}

.holder {
    overflow: hidden;
    clear: both;
    width: 100%;
    float: left;
    height: 100%;
}

h4 {
    margin: 0;
}

p.description {
    margin: 0;
    font-size: 1em;
}

p.source_date {
    margin: 10px 0;
    font-size: 1em;
}

img.favicon {
    vertical-align: text-bottom;
    margin-right: 6px;
    border: 0;
}
}

.box-header {
    display: table;
    width: 100%;
}

.left-cell {
    display: table-cell;
    vertical-align: middle;
}

.right-cell {
    width: 30px;
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

.circle {
    width: 28px;
    height: 28px;
    border-radius: 14px;
    font-size: 14px;
    color: #1baede;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    border: 1px solid #1baede;
}

.menu {
    position: fixed;
    top: 0;
    right: 10px;
    z-index: 1000;
}

/*

 * Speech-Bubble Tooltip by Jamy Golden

 */
a.sbtooltip:hover {
    position: relative;
/* Allows the tooltip to be absolutely positioned */
    z-index: 100;
    opacity: 1;
}

/* Speech Bubble */
a.sbtooltip:before {
    width: 200px;
    background-color: #1baede;
/* For browsers that don't support gradients */
/*

   background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44,#1baede), color-stop(0.72, #1baede));

   background-image: -webkit-linear-gradient(top,#1baede 44%, #1baede 72%);

   background-image: -moz-linear-gradient(top,#1baede 44%, #1baede 72%);

   background-image: -ms-linear-gradient(top,#1baede 44%, #1baede 72%);

   background-image: -o-linear-gradient(top,#1baede 44%, #1baede 72%);

   background-image: linear-gradient(top,#1baede 44%, #1baede 72%);

   */
    color: #000;
    content: attr(data-sbtooltip);
/* This takes the content of the attribute named "data-sbtooltip" and displays it within this element*/
    display: none;
/* Hidden until hovered upon */
/* Font, padding, top and right must change depending on the font size you are using on your web page */
    font: 12px Helvetica,Arial,Georgia,sans-serif;
    padding: 5px 10px;
    position: absolute;
    top: 33px;
    right: 0;
/* Border radii for different browsers */
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
/* Box shadows for different browsers */
    -moz-box-shadow: 0 0 4px #4a3d27;
    -webkit-box-shadow: 0 0 4px #4a3d27;
    box-shadow: 0 0 4px #4a3d27;
}

/* Triangle */
a.sbtooltip:after {
    border-width: 12px;
    border-style: solid;
    border-color: transparent transparent #1baede;
    content: "";
/* Forces this pseudo-element to appear on hover */
    display: none;
    height: 2px;
/* Width and height could  be left out, but I prefer a less 'pointy' triangle */
    width: 2px;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Display on hover */
a.sbtooltip:hover:after,a.sbtooltip:hover:before {
    display: block;
/* The Speech-bubble tooltip and pointer will appear on hover */
}
