/*
author: Harsh Patel
description: Copy the styling of provided image of Webpage using CSS.
content: This file contains the styling for the webpage for TMNT movie review.
 */

body {
    background-image: url(../img/background.png);
    font-family: Verdana, Tahoma, sans-serif;
    font-size: 8pt;
    margin: 0;
    padding: 0;
}

.banner {
    background-image: url(../img/bannerbg.png);
    background-repeat: repeat-x;
    text-align: center;
    height: 50px;
}

.main_heading {
    text-align: center;
    font-size: 24pt;
    font-weight: bold;
    font-family: Verdana, Tahoma, sans-serif;
    text-shadow: #999999 3px 3px;
}

.content_area {
    max-width: 800px;
    margin: 0 auto;
    border: 4px solid gray;
    border-radius: 20px;
    overflow: hidden;
}

#right_section {
    float: right;
    width: 250px;
    background-color: #A2B964;
}

.right_section_overview {
    padding: 0 10pt;
    font-size: 8pt;
    font-family: Arial, sans-serif;
}

.right_section_overview dt {
    font-weight: bold;
    margin-top: 10pt;
}

.link_list {
    list-style-type: none;
    padding: 0;
}

.left_section_heading {
    background-image: url(../img/rbg.png);
    height: 83px;
}

.rotten_main_img {
    vertical-align: bottom;
    height: 83px;
}

.rating {
    font-size: 48pt;
    font-weight: bold;
    color: red;
}

.left_section_reviews {
    width: 550px;
    margin: 0 auto;
    overflow: hidden;
}

.left_column_reviews, .right_column_reviews {
    width: 258.5px;
}

.left_column_reviews {
    float: left;
    margin-left: 11px;
}

.right_column_reviews {
    float: right;
    margin-right: 11px;
}

.review_boxes {
    font-size: 8pt;
    font-weight: bold;
    background-color: #E8DC9B;
    border: 2px solid gray;
    border-radius: 10px;
    padding: 8px;
    overflow: auto;
}

.review_boxes img {
    float: left;
    margin-right: 5px;
}

.publisher {
    font-style: italic;
}

.reviewer_boxes {
    margin-bottom: 20pt;
}

.reviewer_boxes img {
    margin-right: 5px;
    float: left;
}

#jays_review {
    margin-bottom: 28pt;
}

.footer {
    clear: right;
    background-color: #A2B964;
    padding: 5px;
    text-align: center;
    margin: 0;
}