html{
			max-width: 540px;
			margin: 0 auto;
		}
        body {
            display: flex;
            flex-direction: column;
            margin: 0 0 0 0;
            background: #101010 url(../assets/bg.png) right top;
        }

        .banner {
            display: flex;
            height: 109px;
        }

        .list-title-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 50px;
        }

        .list-title {
            font-size: 20px;
            color: #CCCCCC;
        }

        .list-item-container {
            display: flex;
            height: 180px;
            margin-right: 12px;
            margin-left: 12px;
            margin-bottom: 10px;
            border: 1px solid #958364;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
            text-decoration: none;
        }

        .list-item-left-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 134px;
            height: 180px;
            padding-top: 10px;
        }

        .list-item-icon {
            width: 107px;
            height: 107px;
        }

        .list-item-title {
            margin-top: 5px;
            height: 28px;
            font-size: 20px;
            color: #DBBB85;
        }

        .list-item-date {
            margin-top: 3px;
            height: 20px;
            font-size: 14px;
            color: #958364;
        }

        .list-item-right-container {
            display: flex;
            flex: 1;
            flex-direction: column;
            padding-right: 12px;
        }

        .list-item-description-container {
            display: flex;
            flex: 1;
            height: 132px;
            margin-top: 11px;
            overflow: hidden;
        }

        .list-item-description {
            font-size: 14px;
            color: #958364;
        }

        .list-item-read-more-container {
            display: flex;
            justify-content: flex-end;
        }

        .list-item-read-more {
            margin-top: 10px;
            height: 20px;
            color: #9C7871;
            text-decoration: underline;
            margin-bottom: 7px;
        }

        .list-item-arrow {
            margin-top: 16px;
            height: 10px;
            margin-right: 5px;
        }

        .footer {
            display: flex;
            height: 80px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding-right: 10px;
            padding-left: 10px;
            background-image: url(../assets/footer_bg.png);
            background-position: 0 0;
            background-repeat: repeat-x;
        }

        .footer span {
            font-size: 14px;
            color: #958364;
        }