#title .title-area {
    display: flex;
    flex-direction: column;
    gap: 6px; /* 1104 수정 */
    padding: 16px 0;
}

#title .title-area .h1 {
    display:flex;
    flex-direction:row;
    flex-flow: wrap;
    gap: 6px; /* 1104 수정 */
    align-items: center;
}

#title .description {
    font-size: 0.8125rem; /* 1104 수정 */
    line-height: 1.1375rem; /* 1104 수정 */
    color: var(--alpha-50);
    word-break: keep-all;
}

/* boardList 목록일반 galleryList 갤러리타입 목록 */

#boardList {
    width: 100%;
    padding: 0 16px;
}

[id^="boardList_"] {
    width: 100%;
    padding: 0;
}

:is(#boardList, [id^="boardList_"]) > .border-top {
    width: 100%;
    height: 1px;
    background-color: var(--alpha-5);
}

:is(#boardList, [id^="boardList_"]) > .index-notice-wrapper > .border-top {
    width: 100%;
    height: 1px;
    background-color: var(--alpha-5);
}

:is(#boardList, [id^="boardList_"]) a,
#galleryList a {
    display:flex;
    flex-direction: row;
    color: var(--default-anchor-color);
    text-decoration: none;
}

:is(#boardList, [id^="boardList_"]) a:visited,
#galleryList a:visited {
    color: var(--default-visited-anchor-color);
}

/* :hover는 PC에서만 */
@media (min-width: 1024px) {
  :is(#boardList, [id^="boardList_"]) a:hover {
    background-color: var(--alpha-3);
  }
}

:is(#boardList, [id^="boardList_"]) a:active {
    background-color: var(--alpha-3);
}

:is(#boardList, [id^="boardList_"]).notice a {
    background-color: var(--alpha-3);
}

:is(#boardList, [id^="boardList_"]) a.item.notice {
    background-color: var(--alpha-3);
}

:is(#boardList, [id^="boardList_"]) .item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 4px;
    border-bottom: 1px solid var(--list-line);
}

:is(#boardList, [id^="boardList_"]) .item .info {
    display: flex;
    flex-direction: column;
    /* gap: 8px; 1104 삭제 */
    width: calc(100% - 66px); /* 1104 수정 */
}

:is(#boardList, [id^="boardList_"]) .item .info_sub {
    display: flex;
    flex-direction: column;
    /* gap: 8px; 1104 삭제 */
    width: calc(100% - 66px); /* 1104 수정 */
}

:is(#boardList, [id^="boardList_"]).notice .item .info {
    width: 100%;
}

:is(#boardList, [id^="boardList_"]) .item .titleContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    width:100%;
}

:is(#boardList, [id^="boardList_"]) .item .author-info {
    display: flex;
    flex-direction: column;
    gap:6px;
    align-items: center;
    width:100%;
}

:is(#boardList, [id^="boardList_"]) .item .category-info,
:is(#boardList, [id^="boardList_"]) .item .etc-info {
    display:flex;
    flex-direction: row;
    /* 1104 삭제 gap: 8px; */
    align-items: center;
    width:100%;
}

/* 1004 삭제
:is(#boardList, [id^="boardList_"]) .item .etc-info {
    font-size: 0.75rem;
}
*/

/* 1004 추가 */
:is(#boardList, [id^="boardList_"]) .dot,
#galleryList .dot {
    font-size: 0.6875rem;
    font-weight: 400; /* 1104 수정 */
    color: var(--alpha-40);
}

/* 요기까지 */

:is(#boardList, [id^="boardList_"]) .category-area {
    display: flex;
    flex-direction: row;
    gap:0;
    align-items: center;
}

:is(#boardList, [id^="boardList_"]) .item .primaryNotice,
:is(#boardList, [id^="boardList_"]) .item .notice {
    box-sizing: border-box;
    display: flex;
    /* margin-right: 4px;
     font-size: 0.75rem;
    padding: 4px 6px; 1104 삭제 */
    font-weight:700;
    color: var(--default-background-color);
    background: var(--default-font-color);
    border-radius: 4px;
}

:is(#boardList, [id^="boardList_"]).notice .item .info {
    display: flex;
    flex-direction:column;
    align-items: center;
}

:is(#boardList, [id^="boardList_"]) .item .title,
#galleryList .item .title {
    display: flex;
    flex-direction: row;
    gap:4px;
    align-items: center;
    overflow: hidden;
}

:is(#boardList, [id^="boardList_"]) .item .title .text {
    /* min-height:17px; 1104 삭제 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

:is(#boardList, [id^="boardList_"]) .item .title .commentCount,
:is(#boardList, [id^="boardList_"]) .item .commentCount,
#galleryList .info .titleContainer .commentCount {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--point-background-color);
}

:is(#boardList, [id^="boardList_"]) .item .isAuthor,
:is(#boardList, [id^="boardList_"]).simple .item .now {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
}

:is(#boardList, [id^="boardList_"]) .item .isAuthor,
#galleryList .item .isAuthor,
:is(#boardList, [id^="boardList_"]).simple .item .now {
    box-sizing: border-box;
    /* padding: 4px 6px;
    font-size: 0.75rem; 1104 삭제 */
    font-weight:700;
    color: #FFF;
    background-color: var(--point-background-color);
    border-radius: 4px;
}

:is(#boardList, [id^="boardList_"]) .like-area,
:is(#boardList, [id^="boardList_"]) .etc-area,
#galleryList .like-area,
#galleryList .etc-area {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* 1104 삭제
:is(#boardList, [id^="boardList_"]) .like-area {
    gap: 8px;
    font-size: 0.75rem;
}
 */

:is(#boardList, [id^="boardList_"]).default .item:last-child {
    margin-bottom: 24px;
}

:is(#boardList, [id^="boardList_"]).simple .item:not(.notice):last-child {
    margin-bottom: 24px;
}

#galleryList .like-area {
    gap: 4px;
    font-size: 0.75rem; /* 1004 추가 */
}

/* 1104 삭제
:is(#boardList, [id^="boardList_"]) .etc-area {
    gap: 4px;
}
*/

/* 1004 추가 */
#galleryList .etc-area {
    flex-wrap: wrap;
    gap: 4px;
}

:is(#boardList, [id^="boardList_"]) .item .nickName,
#galleryList .item .nickName {
    display: flex;
    flex-direction: row;
    gap: 2px; /* 1004 추가 */
    align-items: center;
    font-size: 0.6875rem; /* 1004 수정 */
    font-weight: 400; /* 1104 수정 */
    color: var(--alpha-40); /* 1004 수정 */
    word-break: break-all;
    white-space: nowrap;
}

:is(#boardList, [id^="boardList_"]) .item .commentCount img,
#galleryList .item .commentCount img {
    width: 14px;
    height: 14px;
    margin-right:2px;
}

img.normal-thumb {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 8px;
}

/* galleryList */
#galleryList {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    margin-bottom:24px;
}

#galleryList .border-top {
    display:none;
}

#galleryList .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    padding-bottom: 16px;
    border-radius: 8px;
}

#galleryList .image img {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 4px;
}

#galleryList .info {
    display: flex;
    flex-direction: column;
    /* gap: 6px; 1104 삭제 */
    align-items: flex-start;
    justify-content: left;
}

#galleryList .titleContainer {
    display: flex;
    flex-direction: column;
    /* gap: 6px; 1104 삭제 */
    align-items: flex-start;
    justify-content: left;
    width: 100%;
}

#galleryList .item .title {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width:100%;
    font-size: 0.875rem;
}

#galleryList .item .title .text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#galleryList .item .author-info {
    display:flex;
    flex-direction: column;
    /* gap: 4px; 1104 삭제 */
    width: 100%;
}

#galleryList .item .etc-info {
    display: flex;
    flex-direction: row;
    gap: 4px;
    width: 100%;
    /* font-size: 0.75rem; 1004 삭제 */
}

/* simple - 글상세 리스트 */

:is(#boardList, [id^="boardList_"]).simple .current {
    background-color: var(--point-background-color-10);
}

:is(#boardList, [id^="boardList_"]).simple .item .info {
    width: 100%;
}

:is(#boardList, [id^="boardList_"]).simple .item .info .author-info,
:is(#boardList, [id^="boardList_"]).simple .item .info .etc-info,
:is(#boardList, [id^="boardList_"]).simple .item .info .etc-area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

:is(#boardList, [id^="boardList_"]).simple .item .category-info,
:is(#boardList, [id^="boardList_"]).simple .item .etc-info {
    width: fit-content;
}

@media only screen and (min-width: 1200px) {
    /* 1104 추가 */
    #title .title-area {
        max-width: 90%;
        gap: 12px;
    }

    #title .title-area .h1 {
        gap: 8px;
    }

    #title .description {
        font-size: 1rem;
    }

    /* 1104 추가 */
    :is(#boardList, [id^="boardList_"]) .item .info {
        gap: 8px;
    }

    :is(#boardList, [id^="boardList_"]) .item .author-info {
        gap: 6px;
    }

    :is(#boardList, [id^="boardList_"]) .item .title .text {
        min-height: 17px;
        font-size: 1rem;
    }

    #powerLink .info .titleContainer a.title #title {
        min-height: 17px;
        font-size: 1rem !important;
    }

    #powerLink .info .titleContainer a.title #link {
        min-height: 17px;
        font-size: 14px !important;
    }

    :is(#boardList, [id^="boardList_"]) .item .primaryNotice,
    :is(#boardList, [id^="boardList_"]) .item .notice {
        margin-right: 4px;
    }

    :is(#boardList, [id^="boardList_"]) .item .title .commentCount,
    :is(#boardList, [id^="boardList_"]) .item .commentCount,
    #galleryList .info .titleContainer .commentCount {
        font-size: 0.9375rem;
    }

    :is(#boardList, [id^="boardList_"]) .item .commentCount img,
    #galleryList .item .commentCount img {
        margin-right: 2px;
    }

    :is(#boardList, [id^="boardList_"]) .item .title,
    #galleryList .item .title {
        gap: 4px;
    }

    :is(#boardList, [id^="boardList_"]) .like-area {
        gap: 8px;
        font-size: 0.875rem;
    }

    :is(#boardList, [id^="boardList_"]) .item .category-info,
    :is(#boardList, [id^="boardList_"]) .item .etc-info {
        gap: 8px;
    }

    :is(#boardList, [id^="boardList_"]),
    :is(#boardListGallery, [id^="boardListGallery_"]),
     {
        padding: 0 !important;
    }

    :is(#boardList, [id^="boardList_"]).notice .category-area {
        display:none;
    }

    /* :is(#boardList, [id^="boardList_"]).notice .titleContainer {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    } */

    :is(#boardList, [id^="boardList_"]).notice .item .info {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    /* 1104 추가 */
    :is(#boardList, [id^="boardList_"]).default .item {
        flex-direction: row-reverse;
        gap: 12px;
        justify-content: start;
    }

    :is(#boardList, [id^="boardList_"]) .etc-area {
        gap: 4px;
    }

    :is(#boardList, [id^="boardList_"]).simple .etc-area {
        gap: 0;
    }

    :is(#boardList, [id^="boardList_"]) .item .title {
        gap: 8px;
    }

    :is(#boardList, [id^="boardList_"]) .item .primaryNotice,
    :is(#boardList, [id^="boardList_"]) .item .notice,
    :is(#boardList, [id^="boardList_"]) .item .isAuthor {
        margin-right: 8px;
    }

    :is(#boardList, [id^="boardList_"]) .item .author-info {
        display: flex;
        flex-direction: row;
        gap: 8px;
        align-items: center;
        width:fit-content;
    }

    /* 1104 추가 */
    :is(#boardList, [id^="boardList_"]).notice .item .author-info {
        gap: 24px;
    }

    :is(#boardList, [id^="boardList_"]) .like-area,
    #galleryList .like-area {
        font-size: 0.875rem !important;
    }

    :is(#boardList, [id^="boardList_"]).default .item:last-child {
        margin-bottom: 32px;
    }

    :is(#boardList, [id^="boardList_"]).simple .item:not(.notice):last-child {
        margin-bottom: 32px;
    }

    /* 갤러리 타입 리스트 */
    #galleryList {
        margin-bottom: 32px;
        padding: 0 16px;
    }

    .page#galleryList {
        padding: 0;
    }

    #galleryList .info {
        gap: 8px;
    }

    #galleryList .item {
        padding-bottom: 24px;
    }

    #galleryList .item .titleContainer {
        gap: 8px;
    }

    #galleryList .item .title {
        max-height: 1em !important;
        font-size: 1em !important;
    }

    #galleryList .item .author-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    #galleryList .item .etc-info {
        display:flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        width: fit-content;
    }

    :is(#boardList, [id^="boardList_"]) .item .nickName,
    #galleryList .item .nickName,
    :is(#boardList, [id^="boardList_"]) .item .viewCount, /* 1004 수정 - viewCount, datetime, dot 라인을 추가 */
    #galleryList .item .viewCount,
    :is(#boardList, [id^="boardList_"]) .item .datetime,
    #galleryList .item .datetime,
    :is(#boardList, [id^="boardList_"]) .item .dot,
    #galleryList .item .dot {
        font-size: 0.8125em !important; /* 1004 수정 */
        font-weight: 400 !important; /* 1104 수정 */
    }

    /* 1104 추가 */
    #galleryList .titleContainer,
    #galleryList .info {
        gap: 6px;
    }

    #galleryList .item .author-info,
    #galleryList .etc-area {
        gap: 4px;
    }

    img.normal-thumb {
        width: 49px;
        height: 49px;
    }

    /* simple 상세글전체 */
    .bottomBoardListHeader {
        padding: 16px 0 !important;
        margin-top: 56px;
    }

    :is(#boardList, [id^="boardList_"]).simple .item .info {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    :is(#boardList, [id^="boardList_"]).simple .item .info .author-info {
        display: flex;
        flex-direction: row;
        gap: 0; /* 1104 추가 */
        align-items: center;
    }

    :is(#boardList, [id^="boardList_"]).simple .item .titleContainer {
        width: fit-content;
        max-width: 540px; /* 1104 추가 - 다른 요소의 길이 조정에 따라 달라지는 부분 */
    }

    /* 1104 추가 */
    :is(#boardList, [id^="boardList_"]).simple .dot {
        display:none;
    }

    :is(#boardList, [id^="boardList_"]).simple .datetime {
        width: 56px;
        text-align: right;
    }

    :is(#boardList, [id^="boardList_"]).simple .viewCount {
        justify-content: center;
        width: 72px;
    }

    :is(#boardList, [id^="boardList_"]).simple .nickName {
        justify-content: center;
        width: 160px;
    }

    :is(#boardList, [id^="boardList_"]).simple .category-area {
        justify-content: center;
        width: 88px;
    }
}

@media only screen and (max-width: 1199px) {
    :is(#boardList, [id^="boardList_"]) .header {
        display: none;
    }

    /* 1104 추가 */
    :is(#boardList, [id^="boardList_"]) .item .title .text {
        min-height: 0.975rem;
        font-size: 0.9125rem;
    }

    #powerLink .info .titleContainer a.title #title {
        min-height: 0.975rem;
        font-size: 0.9125rem !important;
    }

    #powerLink .info .titleContainer a.title #link {
        min-height: 0.975rem;
        font-size: 0.875rem !important;
    }

    :is(#boardList, [id^="boardList_"]) .item .info {
        gap: 5px;
    }

    :is(#boardList, [id^="boardList_"]) .item .primaryNotice,
    :is(#boardList, [id^="boardList_"]) .item .notice {
        margin-right: 3px;
    }

    :is(#boardList, [id^="boardList_"]) .item .title .commentCount,
    :is(#boardList, [id^="boardList_"]) .item .commentCount,
    #galleryList .info .titleContainer .commentCount {
        font-size: 0.875rem;
    }

    :is(#boardList, [id^="boardList_"]) .item .commentCount img,
    #galleryList .item .commentCount img {
        margin-right: 1px;
    }

    :is(#boardList, [id^="boardList_"]) .item .title,
    #galleryList .item .title {
        gap: 3px;
    }

    :is(#boardList, [id^="boardList_"]) .like-area {
        gap: 4px;
        font-size: 0.75rem;
    }

    :is(#boardList, [id^="boardList_"]) .item .category-info,
    :is(#boardList, [id^="boardList_"]) .item .etc-info {
        gap: 5px;
    }

    :is(#boardList, [id^="boardList_"]) .item .author-info {
        gap: 5px;
    }

    :is(#boardList, [id^="boardList_"]) .etc-area {
        gap: 3px;
    }

    #galleryList .titleContainer,
    #galleryList .info,
    #galleryList .item .author-info,
    #galleryList .etc-area {
        gap: 3px;
    }

    :is(#boardList, [id^="boardList_"]) .dot {
        display: inline-block;
        width: 4px;
    }

    :is(#boardList, [id^="boardList_"]) img.normal-thumb {
        width: 58px; /* 1104 수정 */
        height: 58px; /* 1104 수정 */
    }

    #galleryList {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 16px;
    }

    #galleryList .item .etc-info {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 1200px) {
    #title .title-area {
        gap: 12px;
    }

    #title .description {
        font-size: 1rem;
    }

    :is(#boardList, [id^="boardList_"]) .item .titleContainer {
        width:982px;
    }
}

/* bookmarkList */
#bookmarkList {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

#bookmarkList.bookmarkThree {
    grid-template-columns: repeat(3, 1fr);
}

#bookmarkList.bookmarkFour {
    grid-template-columns: repeat(4, 1fr);
}

#bookmarkList.bookmarkFive {
    grid-template-columns: repeat(5, 1fr);
}

#bookmarkList .item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px;
    font-weight: bold;
}

#bookmarkList .item .image {
    position: relative;
    display: flex;
    width: 200px;
    height: 200px;
}

#bookmarkList .item .image img {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
}

#bookmarkList .item .image .label {
    position: absolute;
    top: 40%;
    width: 100%;
    margin: auto;
    font-size: 2.7em;
    color: #fff;
    text-align: center;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

#bookmarkList .item .image .soldOut {
    filter: grayscale(100%) brightness(50%);
}

#bookmarkList .item .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#bookmarkList .item .info div {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: start;
    width: 100%;
    padding: 0;
    margin: 6px 0;
}

#bookmarkList .item .info .title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: start;
    justify-content: center;
    width: 200px;
}

#bookmarkList .item .info .title .text {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
    font-size: 1.2em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#bookmarkList .item .info .title .category {
    display: inline-block;
    margin-bottom: 0;
    overflow: visible;
    color: var(--alpha-50);
    text-overflow: ellipsis;
    white-space: nowrap;
}

#bookmarkList .item .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#bookmarkList .item .buttons a,
#bookmarkList .item .buttons span {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    white-space: nowrap;
}

#bookmarkList .item .buttons .detail,
#bookmarkList .item .buttons .detail:hover {
    margin-right: 6px;
    color: #000;
    background-color: #fff !important;
    border: solid 1px var(--default-font-color);
    border-radius: 5px;
}

#bookmarkList .item .buttons .join,
#bookmarkList .item .buttons .join:hover {
    color: #fff;
    background-color: #eb2357 !important;
    border-radius: 5px;
}

#bookmarkList .item .buttons .soldOut,
#bookmarkList .item .buttons .soldOut:hover {
    color: #fff;
    background-color: #333 !important;
    border-radius: 5px;
}

@media (max-width: 950px) {
  #bookmarkList {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-right: 10px;
    margin-left: 10px;
  }

  #bookmarkList .item .image {
    width: 150px;
    height: 150px;
  }

  #bookmarkList .item .info .title {
    width: 150px;
  }

  #bookmarkList .item .image .label {
    font-size: 2em;
  }
}

#slot-1, #slot-2, #slot-3, #slot-6, #slot-6-1 {
  max-height: 250px;
}

#slot-5 {
  max-height: 100px;
  min-height: 70px;
}

#slot-4, #slot-4-1 {
  max-height: 90px;
}

#slot-1, #slot-4, #slot-5 {
  margin-top: 15px;
}

#slot-1, #slot-3, #slot-4, #slot-4-1 {
  min-height : 90px;
}

#slot-2 {
  min-height: 250px;
}

#slot-6, #slot-6-1 {
  min-height: 250px;
}

.show-on-small {
    display: none !important;
}

@media (max-width: 826px) {
    .show-on-small {
        display: block !important;
    }
    .hide-on-verySmall {
        display: none !important;
    }
}

@media (max-width: 1199px) {
  .hide-on-small {
    display: none !important;
  }
  .author-admin-small {
        display: block;
    }
}

@media (min-width: 1200px) {
    .showInsertOnBig {
        margin-left: 5px !important;
    }
    .author-admin-small {
        display: none;
    }
}

a.item.visited {
  color: var(--default-visited-anchor-color) !important;
}

@media (max-width: 1199px) {
    #boardSmall  .info {
        display: flex;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        overflow: hidden;
    }

    #boardSmall  .author-info {
        display: flex;
        justify-content: right;
        flex-direction: row !important;
        align-items: center;
        width: 100%;
    }

    #boardSmall  .category-info {
        width: fit-content !important;
    }

    #boardSmall .etc-info {
        width: fit-content !important;
    }
}

@media (max-width: 1199px) {
  #boardSmall  .titleContainer {
    overflow-x: hidden; /* 튀어나감 방지 */
  }
}

#boardSmall  .nickName {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

#boardSmall  .item {
    padding : 8px 4px !important;
    width: 100%;
}

#boardSmall   .text {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

#boardSmall  .author-info {
    gap: 3px !important;
    width: fit-content !important;
}

.naverAds a:hover {
    background-color: transparent !important;
}

.readAdsTop {
    min-height: 103px !important;
    max-height: 103px !important;
    width: 100%;
}

.listAdsTop, .listAdsBottom {
    min-height: 103px !important;
    max-height: 103px !important;
    width: 100%;
}

.indexAdsBottom {
    min-height: 103px !important;
    max-height: 103px !important;
    width: 100%;
}

.readAdsBottomBig {
    min-height: 200px !important;
    max-height: 200px !important;
    width: 100%;
}

.readAdsCenter,
.readAdsBottom {
    min-height: 103px !important;
    max-height: 103px !important;
    width: 100%;
}

.powerLinkAdsCenter {
    min-height: 220px;
    width: 100%;
}
