/*
    #FFFFFF
    #C0C0C0
    #808080
    #404040
    #000000
*/

* {
    padding: 0;
    margin: 0;
    font-family: 'Varela', sans-serif;
    font-size: 14px;
    outline: 0;
}

.disabled {
  opacity: 0.7;
  pointer-events: none;
  cursor: wait;
}

body {
    background-image: url(../images/bg_pattern_2.png);
    background-attachment: fixed;
}

a {
    text-decoration: none;
}

#body_wrap {
    width: 950px;
    margin: 0px auto;
    padding-top: 50px;
}

#left_menu {
    position: fixed;
    width: 300px;
}

#header_wrap {
    position: absolute;
    top: -50px;
    left: -9px;
    
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
}
#logo a {
    text-decoration: none;
}
#logo #logo_text,
#logo #logo_text .part {
    font-family: 'Gloria Hallelujah', cursive;
    color: #FF5858;
    font-size: 48px;
    font-weight: 800;
    text-shadow: 10px 10px 5px rgba(0, 0, 0, .3);
}
#logo #logo_text {
    color: white;
}
#logo #logo_text .part {
    position: relative;
}
#logo #logo_text .part:nth-child(1) {
    color: #0DBCE9;
}
#logo #logo_text .part:nth-child(2) {
    color: #A273DD;
}
#logo #logo_text .part:nth-child(3) {
    color: #AEBB09;
}

#navi_wrap {
    position: relative;
    top: 50px;
    right: 25px;
}
#navi_wrap #navi {
    width: 100%;
    display: inline-block;
}
#navi_wrap #navi div.menu {
    display: inline-block;
    clear: both;
    float: right;
    height: 100%;
    border: 1px solid #BDBDBD;
    height: 30px;
    
    -webkit-box-shadow: 10px 10px 5px rgba(0, 0, 0, .3);
    -moz-box-shadow: 10px 10px 5px rgba(0, 0, 0, .3);
    box-shadow: 10px 10px 5px rgba(0, 0, 0, .3);
    
    -moz-transition: border .4s;
    -ms-transition: border .4s;
    -o-transition: border .4s;
    -webkit-transition: border .4s;
    
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
#navi_wrap #navi div.menu a {
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 50px;
    width: 100%;
    height: 100%;
    color: #FFF;
    position: relative;

    -webkit-transition: background-color .8s;
    -moz-transition: background-color .8s;
    -o-transition: background-color .8s;
    transition: background-color .8s;
    
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
#navi_wrap #navi div.menu a img {
    width: 25px;
}

#navi_wrap #navi div.menu:nth-child(1) { border-color: #0DBCE9; margin: 0px 0px 30px 0px; }
#navi_wrap #navi div.menu:nth-child(2) { border-color: #A273DD; margin: 0px 0px 30px 0px; }
#navi_wrap #navi div.menu:nth-child(3) { border-color: #AEBB09; margin: 0px 0px 30px 0px; }
#navi_wrap #navi div.menu:nth-child(4) { border-color: #FD654E; /*margin: 0px 0px 30px 0px;*/ }

#navi_wrap #navi div.menu:nth-child(1):hover a { background-color: #0DBCE9; }
#navi_wrap #navi div.menu:nth-child(2):hover a { background-color: #A273DD; }
#navi_wrap #navi div.menu:nth-child(3):hover a { background-color: #AEBB09; }
#navi_wrap #navi div.menu:nth-child(4):hover a { background-color: #FD654E; }

#navi_wrap #navi div.menu a .menu_icon {
    float: left;
    margin: 3px 20px 0px 3px;
}
#navi_wrap #navi div a .menu_text {
    float: left;
    height: 100%;
    line-height: 30px;
    margin-right: 10px;
}

#content_wrap {
    float: right;
    width: 650px;
}
#content_wrap article.gif_entry {
    position: relative;
}
#content_wrap article.gif_entry div.entry_wrap  {
    overflow: hidden;
    width: 600px;
    min-height: 250px;
    margin: 0px auto 75px;
    padding: 30px 25px 0px 25px;
    background-color: #FFF;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;

    -webkit-box-shadow: 10px 10px 5px rgba(0, 0, 0, .3);
    -moz-box-shadow: 10px 10px 5px rgba(0, 0, 0, .3);
    box-shadow: 10px 10px 5px rgba(0, 0, 0, .3);
}