
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_02314f5904513934ae5807c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910714;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8f3dcf43a0419831e37f3827.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.193359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f990a0ac1e6963c2b3d7a128.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.193359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1469579c90d53e030426cf21.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1d88ebe43b1467d312269f97.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.193359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e87eed324ac40108a8514aa3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.193359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cf8faede58f53e4ae447c091.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.193359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a124e3f52981acb17a90164c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.193359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b833359a87dbd8e3768ebabe.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.193359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6554fe55fcaf6f4df7d02a40.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.023438;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_eb3440ffa1622aad4b06e033.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.193359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cebebea80b0275a690015c98.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b547ce7c9ac32903d5b4306a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ca16545ae01caddcff134768.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.020020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_01b55e03d6ce54500f0574cd.woff2')format("woff");}.fff{font-family:fff;line-height:0.956000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_657b3b8dc0b91f667e0c01b1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.720000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d3c2c7efeafde9e3fb3836b8.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.250000,0.000000,0.000000,-0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,-0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,-0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls32{letter-spacing:-12.900000px;}
.ls33{letter-spacing:-9.168000px;}
.ls2f{letter-spacing:-3.100800px;}
.ls23{letter-spacing:-2.803200px;}
.ls35{letter-spacing:-2.544000px;}
.ls2d{letter-spacing:-2.196000px;}
.ls26{letter-spacing:-1.651200px;}
.ls36{letter-spacing:-1.612800px;}
.ls27{letter-spacing:-1.190400px;}
.ls2e{letter-spacing:-1.161600px;}
.ls34{letter-spacing:-1.152000px;}
.ls31{letter-spacing:-0.924000px;}
.ls25{letter-spacing:-0.648000px;}
.ls30{letter-spacing:-0.600000px;}
.ls29{letter-spacing:-0.588000px;}
.ls22{letter-spacing:-0.576000px;}
.ls2b{letter-spacing:-0.540000px;}
.ls24{letter-spacing:-0.451200px;}
.ls2c{letter-spacing:-0.201600px;}
.ls21{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.172800px;}
.ls7{letter-spacing:0.182400px;}
.ls2a{letter-spacing:0.192000px;}
.ls5{letter-spacing:0.201600px;}
.ls3{letter-spacing:0.211200px;}
.ls9{letter-spacing:0.220800px;}
.ls6{letter-spacing:0.230400px;}
.ls12{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.249600px;}
.lsa{letter-spacing:0.250200px;}
.ls8{letter-spacing:0.250500px;}
.ls13{letter-spacing:0.250800px;}
.lsc{letter-spacing:0.259200px;}
.ls18{letter-spacing:0.268800px;}
.ls11{letter-spacing:0.272400px;}
.ls10{letter-spacing:0.272580px;}
.lsd{letter-spacing:0.272640px;}
.ls19{letter-spacing:0.272820px;}
.ls16{letter-spacing:0.272880px;}
.lse{letter-spacing:0.273000px;}
.ls2{letter-spacing:0.278400px;}
.ls17{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.297600px;}
.ls15{letter-spacing:0.741000px;}
.ls14{letter-spacing:0.741360px;}
.ls1a{letter-spacing:1.210140px;}
.ls1b{letter-spacing:1.210200px;}
.ls20{letter-spacing:2.098200px;}
.ls1f{letter-spacing:2.102400px;}
.ls28{letter-spacing:2.105280px;}
.ls1{letter-spacing:2.534400px;}
.ls0{letter-spacing:4.550400px;}
.ls1c{letter-spacing:7.772400px;}
.ls1e{letter-spacing:7.772640px;}
.ls1d{letter-spacing:7.776000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14{word-spacing:-29.412000px;}
.ws1b{word-spacing:-29.400000px;}
.wsf{word-spacing:-29.352000px;}
.ws1a{word-spacing:-27.254400px;}
.wsd{word-spacing:-27.244800px;}
.wse{word-spacing:-27.235200px;}
.wsc{word-spacing:-27.225600px;}
.ws1d{word-spacing:-27.216000px;}
.ws8{word-spacing:-27.206400px;}
.ws11{word-spacing:-27.196800px;}
.wsb{word-spacing:-27.187200px;}
.ws0{word-spacing:-27.177600px;}
.wsa{word-spacing:-27.158400px;}
.ws13{word-spacing:-26.976000px;}
.ws16{word-spacing:-26.774400px;}
.ws9{word-spacing:-26.524800px;}
.ws1e{word-spacing:-25.824000px;}
.ws12{word-spacing:-25.785600px;}
.ws20{word-spacing:-25.363200px;}
.ws10{word-spacing:-25.324800px;}
.ws7{word-spacing:-25.027200px;}
.ws5{word-spacing:-24.940800px;}
.ws18{word-spacing:-23.875200px;}
.ws1f{word-spacing:-22.224000px;}
.ws6{word-spacing:-21.964800px;}
.ws1c{word-spacing:-17.808000px;}
.ws1{word-spacing:-0.345600px;}
.ws4{word-spacing:-0.316800px;}
.ws19{word-spacing:-0.307200px;}
.ws3{word-spacing:-0.297600px;}
.ws15{word-spacing:-0.288000px;}
.ws2{word-spacing:-0.096000px;}
.ws21{word-spacing:0.000000px;}
.ws17{word-spacing:1.065600px;}
._a{margin-left:-11.232000px;}
._9{margin-left:-9.888000px;}
._6{margin-left:-7.968000px;}
._8{margin-left:-6.624000px;}
._3{margin-left:-5.616000px;}
._0{margin-left:-3.840000px;}
._2{margin-left:-2.592000px;}
._4{margin-left:-1.056000px;}
._5{width:1.056000px;}
._7{width:2.064000px;}
._1{width:3.264000px;}
._c{width:9.408000px;}
._b{width:12.360000px;}
.fc5{color:transparent;}
.fc2{color:rgb(51,122,183);}
.fc4{color:rgb(118,118,118);}
.fc3{color:rgb(153,153,153);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs4{font-size:81.600000px;}
.fs0{font-size:96.000000px;}
.fs3{font-size:120.000000px;}
.fs2{font-size:144.000000px;}
.fs1{font-size:192.000000px;}
.y5{bottom:-627.300000px;}
.y85{bottom:-465.628500px;}
.y111{bottom:-465.534000px;}
.yd3{bottom:-465.346500px;}
.y1a8{bottom:-465.253500px;}
.y8{bottom:-465.165000px;}
.ye8{bottom:-465.066000px;}
.y15{bottom:-384.630000px;}
.y30{bottom:-384.628500px;}
.y89{bottom:-384.346500px;}
.y115{bottom:-384.253500px;}
.y197{bottom:-373.800300px;}
.y2b{bottom:-373.800000px;}
.y1df{bottom:-358.800000px;}
.y195{bottom:-355.800300px;}
.yc3{bottom:-355.800000px;}
.y196{bottom:-337.800300px;}
.yc5{bottom:-337.800000px;}
.y1e2{bottom:-322.800000px;}
.y1da{bottom:-319.800300px;}
.y63{bottom:-319.800000px;}
.y1c4{bottom:-318.300300px;}
.y29{bottom:-318.300000px;}
.y136{bottom:-318.253500px;}
.yc{bottom:-303.630000px;}
.y18{bottom:-303.628500px;}
.yec{bottom:-303.534000px;}
.y8c{bottom:-303.346500px;}
.y18e{bottom:-303.253800px;}
.y118{bottom:-303.253500px;}
.yd7{bottom:-303.066000px;}
.y1c0{bottom:-302.972175px;}
.y1ac{bottom:-302.972100px;}
.y1bb{bottom:-302.972093px;}
.y2{bottom:-301.845000px;}
.y1d9{bottom:-291.300300px;}
.y61{bottom:-291.300000px;}
.y58{bottom:-270.628500px;}
.y103{bottom:-270.534000px;}
.y9d{bottom:-270.346500px;}
.y126{bottom:-270.253500px;}
.ye5{bottom:-270.066000px;}
.y0{bottom:0.000000px;}
.y1e4{bottom:7.500000px;}
.y1dc{bottom:12.000000px;}
.y1e0{bottom:13.500000px;}
.y2c{bottom:19.500000px;}
.y64{bottom:31.500000px;}
.yc4{bottom:37.500000px;}
.yc6{bottom:55.500000px;}
.y62{bottom:60.000000px;}
.y1bc{bottom:60.750000px;}
.y2a{bottom:75.000000px;}
.y60{bottom:88.500000px;}
.y52{bottom:93.000000px;}
.y1c3{bottom:100.921875px;}
.y54{bottom:111.000000px;}
.y5e{bottom:117.000000px;}
.y1bf{bottom:118.921875px;}
.ybf{bottom:129.000000px;}
.y28{bottom:130.500000px;}
.y1c2{bottom:136.921875px;}
.y5c{bottom:145.500000px;}
.yc1{bottom:147.000000px;}
.y1c1{bottom:148.500000px;}
.y50{bottom:166.500000px;}
.y5a{bottom:174.000000px;}
.y26{bottom:186.000000px;}
.y1be{bottom:192.421800px;}
.ya1{bottom:202.500000px;}
.y16c{bottom:204.000000px;}
.y4e{bottom:222.000000px;}
.y9f{bottom:231.000000px;}
.y24{bottom:241.500000px;}
.y1e3{bottom:247.500000px;}
.y1bd{bottom:247.921800px;}
.ybc{bottom:258.000000px;}
.ycb{bottom:259.500000px;}
.y4c{bottom:277.500000px;}
.y1d1{bottom:288.000000px;}
.y22{bottom:297.000000px;}
.y1ba{bottom:303.421800px;}
.y1e6{bottom:304.500000px;}
.yba{bottom:313.500000px;}
.y4a{bottom:333.000000px;}
.y167{bottom:351.000000px;}
.y20{bottom:352.500000px;}
.y1e8{bottom:361.500000px;}
.yb8{bottom:369.000000px;}
.y1b8{bottom:373.921800px;}
.y48{bottom:388.500000px;}
.y94{bottom:408.000000px;}
.y1b6{bottom:409.921800px;}
.y1ea{bottom:418.500000px;}
.yb6{bottom:424.500000px;}
.y189{bottom:442.500000px;}
.y1b4{bottom:445.921800px;}
.y18b{bottom:460.500000px;}
.y92{bottom:463.500000px;}
.y1b9{bottom:464.250000px;}
.y1ec{bottom:475.500000px;}
.yb4{bottom:480.000000px;}
.y1b2{bottom:481.921800px;}
.y1b7{bottom:500.250000px;}
.y187{bottom:516.000000px;}
.y1b0{bottom:517.921800px;}
.y1ee{bottom:532.500000px;}
.yb2{bottom:535.500000px;}
.y1b5{bottom:536.250000px;}
.y1ae{bottom:553.921800px;}
.y185{bottom:571.500000px;}
.y1b3{bottom:572.250000px;}
.y1ab{bottom:589.921800px;}
.yb0{bottom:591.000000px;}
.y1b1{bottom:608.250000px;}
.y1a7{bottom:614.203200px;}
.y183{bottom:627.000000px;}
.y1af{bottom:644.250000px;}
.y1ad{bottom:680.250000px;}
.y181{bottom:682.500000px;}
.y1a5{bottom:743.203200px;}
.y1aa{bottom:752.250000px;}
.y1a2{bottom:779.203200px;}
.y1a4{bottom:788.203200px;}
.y19f{bottom:821.203200px;}
.y1a1{bottom:830.203200px;}
.y1a6{bottom:833.250000px;}
.y19c{bottom:863.203200px;}
.y1a3{bottom:869.250000px;}
.y19e{bottom:872.203200px;}
.y19a{bottom:897.703200px;}
.y1a0{bottom:911.250000px;}
.y19d{bottom:953.250000px;}
.y19b{bottom:1011.750000px;}
.y1d0{bottom:1077.750000px;}
.y1d8{bottom:1085.203200px;}
.y1d7{bottom:1113.703200px;}
.y1d6{bottom:1142.203200px;}
.y1d5{bottom:1170.703200px;}
.y1d4{bottom:1199.203200px;}
.y1d3{bottom:1227.703200px;}
.y1d2{bottom:1256.203200px;}
.y1cf{bottom:1284.703200px;}
.y198{bottom:1350.703200px;}
.y199{bottom:1440.750000px;}
.y180{bottom:1500.750000px;}
.y194{bottom:1521.703500px;}
.y192{bottom:1539.703500px;}
.y193{bottom:1557.703500px;}
.y191{bottom:1613.203500px;}
.y190{bottom:1668.703500px;}
.y18f{bottom:1724.203500px;}
.y18d{bottom:1779.703500px;}
.y18c{bottom:1835.203500px;}
.y188{bottom:1853.203500px;}
.y18a{bottom:1871.203500px;}
.y186{bottom:1926.703500px;}
.y184{bottom:1982.203500px;}
.y182{bottom:2037.703500px;}
.y17f{bottom:2093.203500px;}
.y17d{bottom:2163.703500px;}
.y17c{bottom:2216.203500px;}
.y17a{bottom:2222.203500px;}
.y17e{bottom:2253.750000px;}
.y17b{bottom:2312.250000px;}
.y173{bottom:2372.250000px;}
.y179{bottom:2379.703500px;}
.y178{bottom:2408.203500px;}
.y177{bottom:2436.703500px;}
.y176{bottom:2465.203500px;}
.y175{bottom:2493.703500px;}
.y174{bottom:2522.203500px;}
.y172{bottom:2550.703500px;}
.y170{bottom:2616.703500px;}
.y171{bottom:2706.750000px;}
.y162{bottom:2766.750000px;}
.y16f{bottom:2807.203500px;}
.y16e{bottom:2862.703500px;}
.y16b{bottom:2880.703500px;}
.y16d{bottom:2898.703500px;}
.y16a{bottom:2954.203500px;}
.y169{bottom:3009.703500px;}
.y166{bottom:3027.703500px;}
.y168{bottom:3045.703500px;}
.y165{bottom:3101.203500px;}
.y164{bottom:3156.703500px;}
.y163{bottom:3212.203500px;}
.y161{bottom:3267.703500px;}
.y15f{bottom:3338.203500px;}
.y15d{bottom:3374.203500px;}
.y15c{bottom:3426.703500px;}
.y160{bottom:3428.250000px;}
.y15a{bottom:3432.703500px;}
.y15e{bottom:3464.250000px;}
.y15b{bottom:3522.750000px;}
.y157{bottom:3582.750000px;}
.y159{bottom:3590.203500px;}
.y158{bottom:3618.703500px;}
.y156{bottom:3647.203500px;}
.y154{bottom:3713.203500px;}
.y155{bottom:3803.250000px;}
.y14e{bottom:3863.250000px;}
.y152{bottom:3866.203500px;}
.y153{bottom:3884.203500px;}
.y151{bottom:3939.703500px;}
.y150{bottom:3995.203500px;}
.y14f{bottom:4050.703500px;}
.y14d{bottom:4106.203500px;}
.y14b{bottom:4176.703500px;}
.y149{bottom:4212.703500px;}
.y148{bottom:4265.203500px;}
.y14c{bottom:4266.750000px;}
.y146{bottom:4271.203500px;}
.y14a{bottom:4302.750000px;}
.y147{bottom:4361.250000px;}
.y144{bottom:4421.250000px;}
.y145{bottom:4428.703500px;}
.y143{bottom:4457.203500px;}
.y141{bottom:4523.203500px;}
.y142{bottom:4613.250000px;}
.y13c{bottom:4673.250000px;}
.y13f{bottom:4676.203500px;}
.y140{bottom:4694.203500px;}
.y13e{bottom:4749.703500px;}
.y13d{bottom:4805.203500px;}
.y13b{bottom:4860.703500px;}
.y139{bottom:4931.203500px;}
.y137{bottom:4967.203500px;}
.y135{bottom:5019.703500px;}
.y13a{bottom:5021.250000px;}
.y133{bottom:5025.703500px;}
.y138{bottom:5057.250000px;}
.y131{bottom:5069.203500px;}
.y134{bottom:5115.750000px;}
.y130{bottom:5168.203500px;}
.y12f{bottom:5177.203500px;}
.y132{bottom:5183.250000px;}
.y12d{bottom:5210.203500px;}
.y12c{bottom:5219.203500px;}
.y12a{bottom:5252.203500px;}
.y12e{bottom:5258.250000px;}
.y129{bottom:5261.203500px;}
.y127{bottom:5294.203500px;}
.y12b{bottom:5300.250000px;}
.y125{bottom:5303.203500px;}
.y128{bottom:5342.250000px;}
.y122{bottom:5354.203500px;}
.y124{bottom:5384.250000px;}
.y120{bottom:5388.703500px;}
.y123{bottom:5444.250000px;}
.y11e{bottom:5487.703500px;}
.y121{bottom:5502.750000px;}
.y11c{bottom:5547.703500px;}
.y11f{bottom:5577.750000px;}
.y11a{bottom:5583.703500px;}
.y117{bottom:5619.703500px;}
.y11d{bottom:5637.750000px;}
.y114{bottom:5654.203500px;}
.y11b{bottom:5673.750000px;}
.y119{bottom:5709.750000px;}
.y110{bottom:5717.484000px;}
.y116{bottom:5768.250000px;}
.y10e{bottom:5846.484000px;}
.y113{bottom:5855.250000px;}
.y10c{bottom:5888.484000px;}
.y10a{bottom:5930.484000px;}
.y10f{bottom:5936.250000px;}
.y108{bottom:5972.484000px;}
.y10d{bottom:5978.250000px;}
.y10b{bottom:6020.250000px;}
.y106{bottom:6032.484000px;}
.y109{bottom:6062.250000px;}
.y107{bottom:6122.250000px;}
.y104{bottom:6173.250000px;}
.y105{bottom:6180.984000px;}
.y102{bottom:6209.484000px;}
.y100{bottom:6275.484000px;}
.y101{bottom:6365.250000px;}
.yfb{bottom:6425.250000px;}
.yfe{bottom:6428.484000px;}
.yff{bottom:6446.484000px;}
.yfd{bottom:6501.984000px;}
.yfc{bottom:6557.484000px;}
.yfa{bottom:6612.984000px;}
.yf8{bottom:6719.484000px;}
.yf6{bottom:6755.484000px;}
.yf9{bottom:6809.250000px;}
.yf7{bottom:6845.250000px;}
.yf4{bottom:6863.484000px;}
.yf2{bottom:6923.484000px;}
.yf5{bottom:6953.250000px;}
.yf0{bottom:6959.484000px;}
.yee{bottom:6995.484000px;}
.yf3{bottom:7013.250000px;}
.yeb{bottom:7031.484000px;}
.yf1{bottom:7049.250000px;}
.ye7{bottom:7055.766000px;}
.yef{bottom:7085.250000px;}
.yed{bottom:7121.250000px;}
.yea{bottom:7194.000000px;}
.ye6{bottom:7266.000000px;}
.ye4{bottom:7273.266000px;}
.ye2{bottom:7339.266000px;}
.ye3{bottom:7429.500000px;}
.ye0{bottom:7489.500000px;}
.ye1{bottom:7529.766000px;}
.ydf{bottom:7585.266000px;}
.ydd{bottom:7691.766000px;}
.yde{bottom:7782.000000px;}
.ydb{bottom:7799.766000px;}
.yd9{bottom:7859.766000px;}
.ydc{bottom:7890.000000px;}
.yd6{bottom:7895.766000px;}
.yd2{bottom:7920.046500px;}
.yda{bottom:7950.000000px;}
.yd8{bottom:7986.000000px;}
.yd5{bottom:8058.000000px;}
.yca{bottom:8130.000000px;}
.yd1{bottom:8137.546500px;}
.yd0{bottom:8166.046500px;}
.ycf{bottom:8194.546500px;}
.yce{bottom:8223.046500px;}
.ycd{bottom:8251.546500px;}
.ycc{bottom:8280.046500px;}
.yc9{bottom:8308.546500px;}
.yc7{bottom:8374.546500px;}
.yc8{bottom:8464.500000px;}
.yaf{bottom:8524.500000px;}
.yc2{bottom:8545.546500px;}
.ybe{bottom:8563.546500px;}
.yc0{bottom:8581.546500px;}
.ybd{bottom:8637.046500px;}
.ybb{bottom:8692.546500px;}
.yb9{bottom:8748.046500px;}
.yb7{bottom:8803.546500px;}
.yb5{bottom:8859.046500px;}
.yb3{bottom:8914.546500px;}
.yb1{bottom:8970.046500px;}
.yae{bottom:9025.546500px;}
.yac{bottom:9096.046500px;}
.yaa{bottom:9156.046500px;}
.yad{bottom:9186.000000px;}
.ya8{bottom:9192.046500px;}
.ya6{bottom:9226.546500px;}
.yab{bottom:9246.000000px;}
.ya9{bottom:9282.000000px;}
.ya7{bottom:9340.500000px;}
.y9e{bottom:9406.500000px;}
.ya5{bottom:9414.046500px;}
.ya4{bottom:9442.546500px;}
.ya3{bottom:9471.046500px;}
.ya2{bottom:9499.546500px;}
.ya0{bottom:9528.046500px;}
.y9c{bottom:9556.546500px;}
.y9a{bottom:9622.546500px;}
.y9b{bottom:9712.500000px;}
.y91{bottom:9772.500000px;}
.y99{bottom:9813.046500px;}
.y98{bottom:9868.546500px;}
.y97{bottom:9924.046500px;}
.y96{bottom:9979.546500px;}
.y95{bottom:10035.046500px;}
.y93{bottom:10090.546500px;}
.y90{bottom:10146.046500px;}
.y8e{bottom:10216.546500px;}
.y8b{bottom:10276.546500px;}
.y8f{bottom:10306.500000px;}
.y88{bottom:10311.046500px;}
.y8d{bottom:10366.500000px;}
.y84{bottom:10374.328500px;}
.y8a{bottom:10425.000000px;}
.y87{bottom:10512.000000px;}
.y83{bottom:10584.000000px;}
.y81{bottom:10629.328500px;}
.y82{bottom:10719.000000px;}
.y80{bottom:10779.000000px;}
.y7f{bottom:10819.828500px;}
.y7d{bottom:10890.328500px;}
.y7b{bottom:10947.328500px;}
.y7e{bottom:10980.000000px;}
.y7c{bottom:11037.000000px;}
.y79{bottom:11097.000000px;}
.y7a{bottom:11104.828500px;}
.y78{bottom:11133.328500px;}
.y76{bottom:11199.328500px;}
.y77{bottom:11289.000000px;}
.y73{bottom:11349.000000px;}
.y75{bottom:11389.828500px;}
.y74{bottom:11445.328500px;}
.y72{bottom:11500.828500px;}
.y70{bottom:11571.328500px;}
.y6e{bottom:11605.828500px;}
.y71{bottom:11661.000000px;}
.y6f{bottom:11719.500000px;}
.y6d{bottom:11785.500000px;}
.y6b{bottom:11830.828500px;}
.y6c{bottom:11920.500000px;}
.y6a{bottom:11980.500000px;}
.y69{bottom:12021.328500px;}
.y67{bottom:12091.828500px;}
.y65{bottom:12148.828500px;}
.y68{bottom:12181.500000px;}
.y66{bottom:12238.500000px;}
.y59{bottom:12298.500000px;}
.y5f{bottom:12306.328500px;}
.y5d{bottom:12334.828500px;}
.y5b{bottom:12363.328500px;}
.y57{bottom:12391.828500px;}
.y55{bottom:12457.828500px;}
.y56{bottom:12547.500000px;}
.y47{bottom:12607.500000px;}
.y51{bottom:12610.828500px;}
.y53{bottom:12628.828500px;}
.y4f{bottom:12684.328500px;}
.y4d{bottom:12739.828500px;}
.y4b{bottom:12795.328500px;}
.y49{bottom:12850.828500px;}
.y46{bottom:12906.328500px;}
.y44{bottom:12976.828500px;}
.y42{bottom:13011.328500px;}
.y45{bottom:13066.500000px;}
.y43{bottom:13125.000000px;}
.y1cb{bottom:13191.000000px;}
.y1ce{bottom:13198.828500px;}
.y1cd{bottom:13227.328500px;}
.y1cc{bottom:13255.828500px;}
.y1ca{bottom:13284.328500px;}
.y40{bottom:13350.328500px;}
.y41{bottom:13440.000000px;}
.y3b{bottom:13500.000000px;}
.y3f{bottom:13540.828500px;}
.y3e{bottom:13596.328500px;}
.y3d{bottom:13651.828500px;}
.y3c{bottom:13707.328500px;}
.y3a{bottom:13762.828500px;}
.y38{bottom:13833.328500px;}
.y36{bottom:13890.328500px;}
.y39{bottom:13923.000000px;}
.y34{bottom:13959.328500px;}
.y37{bottom:13980.000000px;}
.y32{bottom:13995.328500px;}
.y2f{bottom:14029.828500px;}
.y35{bottom:14049.000000px;}
.y33{bottom:14085.000000px;}
.y31{bottom:14143.500000px;}
.y1c6{bottom:14209.500000px;}
.y1c9{bottom:14217.328500px;}
.y1c8{bottom:14245.828500px;}
.y1c7{bottom:14274.328500px;}
.y1c5{bottom:14302.828500px;}
.y2d{bottom:14368.828500px;}
.y2e{bottom:14458.500000px;}
.y1f{bottom:14518.500000px;}
.y27{bottom:14559.328500px;}
.y25{bottom:14614.828500px;}
.y23{bottom:14670.328500px;}
.y21{bottom:14725.828500px;}
.y1e{bottom:14781.328500px;}
.y1c{bottom:14851.828500px;}
.y1a{bottom:14908.828500px;}
.y1d{bottom:14941.500000px;}
.y17{bottom:14977.828500px;}
.y1b{bottom:14998.500000px;}
.y14{bottom:15012.330000px;}
.y1{bottom:15039.795000px;}
.y19{bottom:15067.500000px;}
.y12{bottom:15111.330000px;}
.y16{bottom:15126.000000px;}
.y3{bottom:15131.250000px;}
.y10{bottom:15147.330000px;}
.y13{bottom:15201.000000px;}
.ye{bottom:15207.330000px;}
.y11{bottom:15237.000000px;}
.y1dd{bottom:15238.500000px;}
.yb{bottom:15243.330000px;}
.y7{bottom:15267.615000px;}
.y1db{bottom:15276.000000px;}
.yf{bottom:15297.000000px;}
.y4{bottom:15319.500000px;}
.yd{bottom:15333.000000px;}
.y1ed{bottom:15343.500000px;}
.y1eb{bottom:15372.000000px;}
.y1e9{bottom:15400.500000px;}
.ya{bottom:15405.750000px;}
.y1e7{bottom:15429.000000px;}
.y1e5{bottom:15457.500000px;}
.y1e1{bottom:15486.000000px;}
.y6{bottom:15505.500000px;}
.y1de{bottom:15514.500000px;}
.y9{bottom:15821.250000px;}
.y86{bottom:20715.000000px;}
.yd4{bottom:23169.000000px;}
.ye9{bottom:24033.000000px;}
.y112{bottom:25371.750000px;}
.y1a9{bottom:30474.750000px;}
.h52{height:28.500000px;}
.h4e{height:37.500000px;}
.h50{height:39.000000px;}
.h4f{height:52.704000px;}
.h51{height:55.224000px;}
.h37{height:57.534375px;}
.h12{height:65.981250px;}
.h39{height:67.687500px;}
.h53{height:72.000000px;}
.h3a{height:78.046875px;}
.h2{height:81.428571px;}
.h8{height:91.406250px;}
.h18{height:105.000000px;}
.ha{height:114.257812px;}
.h4a{height:124.171875px;}
.h2c{height:124.265625px;}
.h3e{height:124.453125px;}
.h1f{height:124.546875px;}
.h33{height:124.734375px;}
.hf{height:124.828125px;}
.h11{height:125.671500px;}
.h34{height:125.765625px;}
.h20{height:125.953125px;}
.h3f{height:126.046500px;}
.h4b{height:126.046800px;}
.h2d{height:126.234000px;}
.hb{height:127.171875px;}
.h2f{height:127.265625px;}
.h1b{height:127.453125px;}
.h3b{height:127.546875px;}
.h28{height:127.734375px;}
.h47{height:127.828125px;}
.h2e{height:133.500000px;}
.h6{height:137.109375px;}
.h45{height:142.453125px;}
.h25{height:142.546875px;}
.h7{height:144.000000px;}
.h41{height:152.953200px;}
.h23{height:153.046800px;}
.h36{height:153.234300px;}
.h16{height:153.328200px;}
.h14{height:154.171500px;}
.h35{height:154.265700px;}
.h22{height:154.453200px;}
.h40{height:154.546500px;}
.h4d{height:154.546800px;}
.h46{height:160.453200px;}
.h26{height:160.546800px;}
.h1a{height:162.000000px;}
.h17{height:168.000000px;}
.h15{height:174.000000px;}
.h49{height:179.671800px;}
.h2b{height:179.765700px;}
.h3d{height:179.953200px;}
.h1e{height:180.046800px;}
.h32{height:180.234300px;}
.he{height:180.328200px;}
.hd{height:182.671800px;}
.h31{height:182.765700px;}
.h4{height:182.812500px;}
.h1d{height:182.953200px;}
.h3c{height:183.046800px;}
.h2a{height:183.234300px;}
.h48{height:183.328200px;}
.h43{height:190.500000px;}
.h1{height:195.000000px;}
.h38{height:205.500000px;}
.h13{height:219.000000px;}
.h29{height:223.500000px;}
.h9{height:247.500000px;}
.h21{height:276.000000px;}
.h19{height:279.000000px;}
.h3{height:294.000000px;}
.h5{height:300.000000px;}
.h27{height:304.500000px;}
.h30{height:315.000000px;}
.h4c{height:333.000000px;}
.h42{height:370.500000px;}
.hc{height:390.000000px;}
.h10{height:426.000000px;}
.h1c{height:501.000000px;}
.h24{height:628.500000px;}
.h44{height:720.000000px;}
.h0{height:15613.500000px;}
.we6{width:127.284375px;}
.w61{width:135.883605px;}
.w31{width:138.778125px;}
.w1f{width:141.520320px;}
.wbc{width:158.201850px;}
.w12a{width:163.851600px;}
.w10{width:165.140700px;}
.w3f{width:168.564900px;}
.w133{width:170.586000px;}
.w109{width:170.939100px;}
.wcd{width:171.735900px;}
.wa4{width:172.382850px;}
.wde{width:172.802400px;}
.wb8{width:175.181250px;}
.wc8{width:177.970200px;}
.w135{width:178.275000px;}
.w2b{width:182.667150px;}
.wc6{width:186.649200px;}
.w68{width:190.147800px;}
.w10b{width:190.352400px;}
.w2{width:190.382100px;}
.w5c{width:191.467950px;}
.w136{width:193.506000px;}
.w101{width:193.518750px;}
.wcb{width:194.163300px;}
.w72{width:195.918750px;}
.w49{width:197.784300px;}
.w5e{width:200.371800px;}
.wed{width:202.352400px;}
.wb7{width:205.809450px;}
.w21{width:207.562500px;}
.w122{width:208.657050px;}
.w2f{width:210.260100px;}
.w80{width:211.021800px;}
.wff{width:211.935900px;}
.w1d{width:212.662500px;}
.wf3{width:212.946150px;}
.w2d{width:214.523400px;}
.w78{width:214.795350px;}
.w7c{width:215.285100px;}
.wd2{width:215.521800px;}
.w74{width:217.546800px;}
.wf1{width:223.101600px;}
.wdc{width:223.947600px;}
.w110{width:224.224200px;}
.w12{width:227.586300px;}
.w93{width:228.433500px;}
.w7d{width:228.529650px;}
.w1b{width:229.232850px;}
.w7f{width:229.382850px;}
.w13b{width:229.974000px;}
.w14{width:234.267150px;}
.w7a{width:236.423400px;}
.w70{width:237.199200px;}
.wa0{width:237.735900px;}
.w115{width:239.647800px;}
.w4d{width:241.375200px;}
.wa5{width:242.027400px;}
.w17{width:243.478050px;}
.w1a{width:245.889750px;}
.w54{width:245.960100px;}
.w103{width:246.956250px;}
.w13f{width:250.809000px;}
.wc2{width:252.454650px;}
.w37{width:254.182050px;}
.w6e{width:254.500800px;}
.w76{width:256.075800px;}
.w18{width:256.673400px;}
.w81{width:258.276600px;}
.wea{width:258.768750px;}
.wd3{width:259.192950px;}
.w128{width:260.020350px;}
.wf0{width:261.496800px;}
.w137{width:261.673500px;}
.w132{width:266.988900px;}
.w15{width:270.030450px;}
.w13d{width:276.228000px;}
.we3{width:276.370650px;}
.w127{width:277.399200px;}
.w8e{width:277.889100px;}
.wcf{width:278.299200px;}
.w45{width:278.955450px;}
.w85{width:279.795600px;}
.we{width:281.329650px;}
.wa{width:282.597600px;}
.w5a{width:283.000800px;}
.wa1{width:283.108500px;}
.w33{width:284.868750px;}
.wc5{width:286.628550px;}
.w58{width:287.240550px;}
.w35{width:287.273400px;}
.w7{width:287.683650px;}
.wa9{width:290.540550px;}
.we9{width:291.726450px;}
.w39{width:292.602450px;}
.wf5{width:295.837500px;}
.wb4{width:297.431250px;}
.w26{width:300.698400px;}
.w125{width:300.832050px;}
.w56{width:303.417300px;}
.wbd{width:303.682050px;}
.w38{width:305.409300px;}
.wa3{width:305.655450px;}
.wd0{width:306.318750px;}
.w8{width:307.221150px;}
.w13{width:308.241750px;}
.w139{width:308.751000px;}
.w13c{width:310.479000px;}
.w113{width:315.134700px;}
.w12c{width:318.216150px;}
.wd8{width:319.146300px;}
.w47{width:320.236050px;}
.wb{width:321.343500px;}
.w42{width:323.188350px;}
.w82{width:331.023000px;}
.w53{width:331.232850px;}
.w8c{width:333.124200px;}
.waf{width:333.271800px;}
.w105{width:333.834600px;}
.w120{width:336.895500px;}
.wad{width:337.818750px;}
.w10f{width:342.102450px;}
.w63{width:343.829850px;}
.wb1{width:346.795500px;}
.w123{width:353.067150px;}
.wfc{width:354.714300px;}
.wbf{width:354.909450px;}
.we0{width:356.636700px;}
.wfd{width:356.690550px;}
.w23{width:358.802700px;}
.w12b{width:363.004650px;}
.w13e{width:366.765000px;}
.w10a{width:368.446800px;}
.w4b{width:369.443700px;}
.w6c{width:373.410900px;}
.wec{width:373.436700px;}
.w29{width:374.327400px;}
.w28{width:377.454000px;}
.wf{width:378.204000px;}
.w2a{width:379.446300px;}
.w8d{width:381.649350px;}
.wfa{width:382.250400px;}
.wf7{width:382.250550px;}
.w134{width:387.000000px;}
.wab{width:393.750000px;}
.wd5{width:395.057100px;}
.w89{width:395.057250px;}
.w3b{width:395.057400px;}
.wf4{width:398.828850px;}
.w138{width:399.000000px;}
.wdd{width:400.089750px;}
.w92{width:400.207050px;}
.w121{width:400.413300px;}
.w9d{width:401.231400px;}
.w13a{width:402.000000px;}
.w4e{width:404.449350px;}
.w10d{width:404.970600px;}
.w107{width:406.115550px;}
.w34{width:407.451450px;}
.w88{width:407.863950px;}
.w3c{width:407.864250px;}
.w9c{width:408.525000px;}
.wf2{width:408.984300px;}
.w43{width:409.207200px;}
.wc7{width:416.587650px;}
.w100{width:419.423400px;}
.w97{width:420.670800px;}
.w6f{width:420.705450px;}
.we5{width:436.089750px;}
.w2c{width:436.954650px;}
.w55{width:437.859300px;}
.w111{width:438.992550px;}
.w6d{width:439.807200px;}
.w8f{width:441.075150px;}
.w11f{width:445.551450px;}
.w41{width:446.284500px;}
.w3e{width:452.008800px;}
.w83{width:459.091350px;}
.wf8{width:459.091500px;}
.w12d{width:459.091650px;}
.w3d{width:460.704600px;}
.w62{width:464.247600px;}
.w71{width:470.470350px;}
.w116{width:470.488950px;}
.w130{width:471.898200px;}
.w117{width:474.281250px;}
.w4a{width:475.739100px;}
.wd9{width:476.484600px;}
.wc4{width:477.541500px;}
.w44{width:477.895350px;}
.w40{width:478.235100px;}
.w59{width:479.139750px;}
.w10c{width:479.472900px;}
.w4f{width:481.769700px;}
.w51{width:482.834550px;}
.w50{width:484.683300px;}
.w96{width:484.705050px;}
.wfb{width:484.705200px;}
.w114{width:492.909450px;}
.wd4{width:493.647600px;}
.w91{width:494.653050px;}
.w32{width:498.375000px;}
.w60{width:499.279650px;}
.wce{width:502.359300px;}
.w3a{width:510.319050px;}
.w48{width:510.506250px;}
.wba{width:514.068750px;}
.w12f{width:523.125900px;}
.w75{width:524.512500px;}
.w118{width:532.383750px;}
.w5d{width:533.182050px;}
.w129{width:537.007050px;}
.w5f{width:543.178050px;}
.w77{width:545.889750px;}
.w73{width:548.582850px;}
.we1{width:548.739150px;}
.we2{width:548.739600px;}
.w24{width:550.278450px;}
.w57{width:554.064900px;}
.w66{width:561.546000px;}
.wee{width:566.355450px;}
.w108{width:566.859300px;}
.w131{width:574.352850px;}
.w6{width:579.623400px;}
.w98{width:583.915050px;}
.w69{width:587.160150px;}
.w94{width:595.914900px;}
.wdf{width:596.685900px;}
.w46{width:597.789900px;}
.we7{width:599.568750px;}
.w10e{width:600.909300px;}
.w7b{width:604.769550px;}
.wb3{width:606.032850px;}
.w126{width:606.077250px;}
.wb6{width:611.418750px;}
.w12e{width:612.773700px;}
.wf6{width:616.914750px;}
.w79{width:624.002400px;}
.w20{width:624.913950px;}
.wd6{width:625.580400px;}
.wf9{width:625.580550px;}
.w22{width:630.353850px;}
.w6a{width:633.317700px;}
.w5b{width:633.492150px;}
.w112{width:636.923400px;}
.wae{width:639.848850px;}
.w8a{width:645.109650px;}
.we8{width:645.421800px;}
.wac{width:647.208150px;}
.w4{width:647.791500px;}
.waa{width:650.841000px;}
.w65{width:651.193950px;}
.w4c{width:651.194100px;}
.wa8{width:651.520650px;}
.wcc{width:652.235100px;}
.w102{width:655.521000px;}
.w124{width:657.000000px;}
.wbb{width:663.201450px;}
.w84{width:664.001100px;}
.w104{width:665.631900px;}
.w87{width:676.807950px;}
.w86{width:689.614500px;}
.w36{width:700.842150px;}
.w95{width:702.421650px;}
.w67{width:702.421800px;}
.w106{width:706.828200px;}
.w1e{width:713.158500px;}
.w19{width:719.360100px;}
.w16{width:723.161700px;}
.w3{width:726.345450px;}
.wbe{width:734.934300px;}
.wa2{width:740.524200px;}
.w27{width:742.128150px;}
.wd{width:743.338950px;}
.wb2{width:757.099200px;}
.wd1{width:762.351600px;}
.w2e{width:766.753050px;}
.wb0{width:772.963500px;}
.w64{width:779.262900px;}
.wef{width:780.953850px;}
.web{width:782.463150px;}
.wc1{width:783.028050px;}
.w30{width:789.679650px;}
.wa6{width:795.944400px;}
.wd7{width:804.876600px;}
.wc0{width:809.219400px;}
.w1c{width:814.905450px;}
.w7e{width:820.828200px;}
.w5{width:823.846800px;}
.w90{width:826.225650px;}
.w9f{width:831.813300px;}
.wca{width:840.067950px;}
.wdb{width:910.821000px;}
.w9e{width:965.742150px;}
.w8b{width:978.667950px;}
.wc3{width:994.628850px;}
.wb9{width:1080.585900px;}
.wb5{width:1087.031100px;}
.wc{width:1087.668750px;}
.w11{width:1092.000000px;}
.wa7{width:1137.937350px;}
.w9{width:1144.073250px;}
.wfe{width:1160.767800px;}
.we4{width:1165.588800px;}
.w25{width:1175.118600px;}
.w11c{width:1189.326300px;}
.w99{width:1200.405450px;}
.w9b{width:1206.184950px;}
.wda{width:1212.623250px;}
.wc9{width:1223.842650px;}
.w119{width:1227.916200px;}
.w11b{width:1231.028700px;}
.w52{width:1231.394250px;}
.w11a{width:1231.593600px;}
.w11e{width:1241.753700px;}
.w11d{width:1243.183350px;}
.w6b{width:1250.167650px;}
.w9a{width:1254.789600px;}
.w1{width:2879.823333px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x8d{left:15.000000px;}
.x13{left:21.000000px;}
.x1c{left:24.000000px;}
.x8f{left:27.000000px;}
.x92{left:45.000000px;}
.x91{left:69.525000px;}
.x48{left:73.500000px;}
.x2{left:82.500000px;}
.x52{left:87.000000px;}
.x10{left:105.000000px;}
.x1e{left:137.671800px;}
.x8{left:168.525000px;}
.x5{left:172.500000px;}
.x34{left:198.492150px;}
.x15{left:200.906250px;}
.x2d{left:211.101600px;}
.x58{left:233.320350px;}
.x19{left:242.273400px;}
.x67{left:250.875000px;}
.x29{left:258.421800px;}
.x22{left:275.250000px;}
.x20{left:280.218750px;}
.x70{left:288.843750px;}
.x89{left:291.914100px;}
.x27{left:296.859300px;}
.x36{left:327.679650px;}
.x17{left:343.453200px;}
.x2f{left:353.671800px;}
.x69{left:380.085900px;}
.x1b{left:384.820350px;}
.x2b{left:400.968750px;}
.x24{left:404.437500px;}
.x5a{left:412.148400px;}
.x71{left:467.671800px;}
.x8b{left:517.500000px;}
.x4{left:721.500000px;}
.x7{left:766.500000px;}
.x1{left:781.500000px;}
.xf{left:789.000000px;}
.xa{left:811.500000px;}
.x37{left:859.500000px;}
.x3{left:864.000000px;}
.x47{left:868.500000px;}
.x49{left:876.701850px;}
.x6{left:894.000000px;}
.x46{left:905.250000px;}
.x62{left:915.370650px;}
.x11{left:924.829650px;}
.xd{left:931.183650px;}
.x9{left:935.025000px;}
.x41{left:940.931250px;}
.x38{left:942.000000px;}
.x1d{left:949.171800px;}
.x4a{left:950.201850px;}
.x5b{left:958.146300px;}
.x5c{left:967.795500px;}
.x25{left:979.171800px;}
.x6a{left:993.714300px;}
.x63{left:1002.370650px;}
.x12{left:1007.329650px;}
.x33{left:1009.992150px;}
.x14{left:1012.406250px;}
.xe{left:1013.683650px;}
.x2c{left:1022.601600px;}
.x32{left:1025.149350px;}
.x4b{left:1030.383750px;}
.x57{left:1044.820350px;}
.x50{left:1052.656500px;}
.x18{left:1053.773400px;}
.x5d{left:1054.795500px;}
.x51{left:1060.858350px;}
.x66{left:1062.375000px;}
.x28{left:1069.921800px;}
.x4e{left:1081.611300px;}
.x21{left:1086.750000px;}
.x82{left:1089.134700px;}
.x6b{left:1090.363650px;}
.x1f{left:1091.718750px;}
.x72{left:1096.470750px;}
.x6f{left:1100.343750px;}
.x4c{left:1103.883750px;}
.x26{left:1108.359300px;}
.x4d{left:1112.085600px;}
.x7a{left:1130.492550px;}
.x35{left:1139.179650px;}
.x16{left:1154.953200px;}
.x4f{left:1163.313150px;}
.x2e{left:1165.171800px;}
.x53{left:1174.865400px;}
.x65{left:1178.756850px;}
.x6c{left:1183.054200px;}
.x55{left:1189.014600px;}
.x68{left:1191.585900px;}
.x1a{left:1196.320350px;}
.x2a{left:1212.468750px;}
.x23{left:1215.937500px;}
.x59{left:1223.648400px;}
.x64{left:1251.607500px;}
.x42{left:1254.918750px;}
.x54{left:1261.865400px;}
.x5e{left:1267.280100px;}
.x6d{left:1270.054200px;}
.x56{left:1271.514600px;}
.x6e{left:1279.703400px;}
.x60{left:1281.429300px;}
.x44{left:1292.728050px;}
.x8a{left:1329.000000px;}
.x3d{left:1331.348850px;}
.x43{left:1337.418750px;}
.x3b{left:1338.708150px;}
.x83{left:1340.544150px;}
.x39{left:1343.020650px;}
.x84{left:1348.746000px;}
.x5f{left:1354.280100px;}
.x61{left:1363.929300px;}
.x45{left:1375.228050px;}
.x3f{left:1400.599200px;}
.x3e{left:1413.848850px;}
.x3c{left:1421.208150px;}
.x85{left:1422.246000px;}
.x3a{left:1425.520650px;}
.x86{left:1438.393800px;}
.xb{left:1467.346800px;}
.x40{left:1483.099200px;}
.x87{left:1511.893500px;}
.x88{left:1520.095500px;}
.x73{left:1538.380500px;}
.x75{left:1546.582500px;}
.xc{left:1549.846500px;}
.x7b{left:1608.415500px;}
.x74{left:1611.880500px;}
.x7d{left:1616.617500px;}
.x76{left:1620.082500px;}
.x30{left:1622.167500px;}
.x7c{left:1681.915500px;}
.x7e{left:1690.117500px;}
.x31{left:1704.667500px;}
.x77{left:1738.684500px;}
.x7f{left:1770.300000px;}
.x78{left:1812.184500px;}
.x79{left:1820.386500px;}
.x80{left:1843.800000px;}
.x81{left:1852.002000px;}
.x90{left:2008.500000px;}
.x8e{left:2011.500000px;}
.x8c{left:2023.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls32{letter-spacing:-11.466667pt;}
.ls33{letter-spacing:-8.149333pt;}
.ls2f{letter-spacing:-2.756267pt;}
.ls23{letter-spacing:-2.491733pt;}
.ls35{letter-spacing:-2.261333pt;}
.ls2d{letter-spacing:-1.952000pt;}
.ls26{letter-spacing:-1.467733pt;}
.ls36{letter-spacing:-1.433600pt;}
.ls27{letter-spacing:-1.058133pt;}
.ls2e{letter-spacing:-1.032533pt;}
.ls34{letter-spacing:-1.024000pt;}
.ls31{letter-spacing:-0.821333pt;}
.ls25{letter-spacing:-0.576000pt;}
.ls30{letter-spacing:-0.533333pt;}
.ls29{letter-spacing:-0.522667pt;}
.ls22{letter-spacing:-0.512000pt;}
.ls2b{letter-spacing:-0.480000pt;}
.ls24{letter-spacing:-0.401067pt;}
.ls2c{letter-spacing:-0.179200pt;}
.ls21{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.153600pt;}
.ls7{letter-spacing:0.162133pt;}
.ls2a{letter-spacing:0.170667pt;}
.ls5{letter-spacing:0.179200pt;}
.ls3{letter-spacing:0.187733pt;}
.ls9{letter-spacing:0.196267pt;}
.ls6{letter-spacing:0.204800pt;}
.ls12{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.221867pt;}
.lsa{letter-spacing:0.222400pt;}
.ls8{letter-spacing:0.222667pt;}
.ls13{letter-spacing:0.222933pt;}
.lsc{letter-spacing:0.230400pt;}
.ls18{letter-spacing:0.238933pt;}
.ls11{letter-spacing:0.242133pt;}
.ls10{letter-spacing:0.242293pt;}
.lsd{letter-spacing:0.242347pt;}
.ls19{letter-spacing:0.242507pt;}
.ls16{letter-spacing:0.242560pt;}
.lse{letter-spacing:0.242667pt;}
.ls2{letter-spacing:0.247467pt;}
.ls17{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.264533pt;}
.ls15{letter-spacing:0.658667pt;}
.ls14{letter-spacing:0.658987pt;}
.ls1a{letter-spacing:1.075680pt;}
.ls1b{letter-spacing:1.075733pt;}
.ls20{letter-spacing:1.865067pt;}
.ls1f{letter-spacing:1.868800pt;}
.ls28{letter-spacing:1.871360pt;}
.ls1{letter-spacing:2.252800pt;}
.ls0{letter-spacing:4.044800pt;}
.ls1c{letter-spacing:6.908800pt;}
.ls1e{letter-spacing:6.909013pt;}
.ls1d{letter-spacing:6.912000pt;}
.ws14{word-spacing:-26.144000pt;}
.ws1b{word-spacing:-26.133333pt;}
.wsf{word-spacing:-26.090667pt;}
.ws1a{word-spacing:-24.226133pt;}
.wsd{word-spacing:-24.217600pt;}
.wse{word-spacing:-24.209067pt;}
.wsc{word-spacing:-24.200533pt;}
.ws1d{word-spacing:-24.192000pt;}
.ws8{word-spacing:-24.183467pt;}
.ws11{word-spacing:-24.174933pt;}
.wsb{word-spacing:-24.166400pt;}
.ws0{word-spacing:-24.157867pt;}
.wsa{word-spacing:-24.140800pt;}
.ws13{word-spacing:-23.978667pt;}
.ws16{word-spacing:-23.799467pt;}
.ws9{word-spacing:-23.577600pt;}
.ws1e{word-spacing:-22.954667pt;}
.ws12{word-spacing:-22.920533pt;}
.ws20{word-spacing:-22.545067pt;}
.ws10{word-spacing:-22.510933pt;}
.ws7{word-spacing:-22.246400pt;}
.ws5{word-spacing:-22.169600pt;}
.ws18{word-spacing:-21.222400pt;}
.ws1f{word-spacing:-19.754667pt;}
.ws6{word-spacing:-19.524267pt;}
.ws1c{word-spacing:-15.829333pt;}
.ws1{word-spacing:-0.307200pt;}
.ws4{word-spacing:-0.281600pt;}
.ws19{word-spacing:-0.273067pt;}
.ws3{word-spacing:-0.264533pt;}
.ws15{word-spacing:-0.256000pt;}
.ws2{word-spacing:-0.085333pt;}
.ws21{word-spacing:0.000000pt;}
.ws17{word-spacing:0.947200pt;}
._a{margin-left:-9.984000pt;}
._9{margin-left:-8.789333pt;}
._6{margin-left:-7.082667pt;}
._8{margin-left:-5.888000pt;}
._3{margin-left:-4.992000pt;}
._0{margin-left:-3.413333pt;}
._2{margin-left:-2.304000pt;}
._4{margin-left:-0.938667pt;}
._5{width:0.938667pt;}
._7{width:1.834667pt;}
._1{width:2.901333pt;}
._c{width:8.362667pt;}
._b{width:10.986667pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs4{font-size:72.533333pt;}
.fs0{font-size:85.333333pt;}
.fs3{font-size:106.666667pt;}
.fs2{font-size:128.000000pt;}
.fs1{font-size:170.666667pt;}
.y5{bottom:-557.600000pt;}
.y85{bottom:-413.892000pt;}
.y111{bottom:-413.808000pt;}
.yd3{bottom:-413.641333pt;}
.y1a8{bottom:-413.558667pt;}
.y8{bottom:-413.480000pt;}
.ye8{bottom:-413.392000pt;}
.y15{bottom:-341.893333pt;}
.y30{bottom:-341.892000pt;}
.y89{bottom:-341.641333pt;}
.y115{bottom:-341.558667pt;}
.y197{bottom:-332.266933pt;}
.y2b{bottom:-332.266667pt;}
.y1df{bottom:-318.933333pt;}
.y195{bottom:-316.266933pt;}
.yc3{bottom:-316.266667pt;}
.y196{bottom:-300.266933pt;}
.yc5{bottom:-300.266667pt;}
.y1e2{bottom:-286.933333pt;}
.y1da{bottom:-284.266933pt;}
.y63{bottom:-284.266667pt;}
.y1c4{bottom:-282.933600pt;}
.y29{bottom:-282.933333pt;}
.y136{bottom:-282.892000pt;}
.yc{bottom:-269.893333pt;}
.y18{bottom:-269.892000pt;}
.yec{bottom:-269.808000pt;}
.y8c{bottom:-269.641333pt;}
.y18e{bottom:-269.558933pt;}
.y118{bottom:-269.558667pt;}
.yd7{bottom:-269.392000pt;}
.y1c0{bottom:-269.308600pt;}
.y1ac{bottom:-269.308533pt;}
.y1bb{bottom:-269.308527pt;}
.y2{bottom:-268.306667pt;}
.y1d9{bottom:-258.933600pt;}
.y61{bottom:-258.933333pt;}
.y58{bottom:-240.558667pt;}
.y103{bottom:-240.474667pt;}
.y9d{bottom:-240.308000pt;}
.y126{bottom:-240.225333pt;}
.ye5{bottom:-240.058667pt;}
.y0{bottom:0.000000pt;}
.y1e4{bottom:6.666667pt;}
.y1dc{bottom:10.666667pt;}
.y1e0{bottom:12.000000pt;}
.y2c{bottom:17.333333pt;}
.y64{bottom:28.000000pt;}
.yc4{bottom:33.333333pt;}
.yc6{bottom:49.333333pt;}
.y62{bottom:53.333333pt;}
.y1bc{bottom:54.000000pt;}
.y2a{bottom:66.666667pt;}
.y60{bottom:78.666667pt;}
.y52{bottom:82.666667pt;}
.y1c3{bottom:89.708333pt;}
.y54{bottom:98.666667pt;}
.y5e{bottom:104.000000pt;}
.y1bf{bottom:105.708333pt;}
.ybf{bottom:114.666667pt;}
.y28{bottom:116.000000pt;}
.y1c2{bottom:121.708333pt;}
.y5c{bottom:129.333333pt;}
.yc1{bottom:130.666667pt;}
.y1c1{bottom:132.000000pt;}
.y50{bottom:148.000000pt;}
.y5a{bottom:154.666667pt;}
.y26{bottom:165.333333pt;}
.y1be{bottom:171.041600pt;}
.ya1{bottom:180.000000pt;}
.y16c{bottom:181.333333pt;}
.y4e{bottom:197.333333pt;}
.y9f{bottom:205.333333pt;}
.y24{bottom:214.666667pt;}
.y1e3{bottom:220.000000pt;}
.y1bd{bottom:220.374933pt;}
.ybc{bottom:229.333333pt;}
.ycb{bottom:230.666667pt;}
.y4c{bottom:246.666667pt;}
.y1d1{bottom:256.000000pt;}
.y22{bottom:264.000000pt;}
.y1ba{bottom:269.708267pt;}
.y1e6{bottom:270.666667pt;}
.yba{bottom:278.666667pt;}
.y4a{bottom:296.000000pt;}
.y167{bottom:312.000000pt;}
.y20{bottom:313.333333pt;}
.y1e8{bottom:321.333333pt;}
.yb8{bottom:328.000000pt;}
.y1b8{bottom:332.374933pt;}
.y48{bottom:345.333333pt;}
.y94{bottom:362.666667pt;}
.y1b6{bottom:364.374933pt;}
.y1ea{bottom:372.000000pt;}
.yb6{bottom:377.333333pt;}
.y189{bottom:393.333333pt;}
.y1b4{bottom:396.374933pt;}
.y18b{bottom:409.333333pt;}
.y92{bottom:412.000000pt;}
.y1b9{bottom:412.666667pt;}
.y1ec{bottom:422.666667pt;}
.yb4{bottom:426.666667pt;}
.y1b2{bottom:428.374933pt;}
.y1b7{bottom:444.666667pt;}
.y187{bottom:458.666667pt;}
.y1b0{bottom:460.374933pt;}
.y1ee{bottom:473.333333pt;}
.yb2{bottom:476.000000pt;}
.y1b5{bottom:476.666667pt;}
.y1ae{bottom:492.374933pt;}
.y185{bottom:508.000000pt;}
.y1b3{bottom:508.666667pt;}
.y1ab{bottom:524.374933pt;}
.yb0{bottom:525.333333pt;}
.y1b1{bottom:540.666667pt;}
.y1a7{bottom:545.958400pt;}
.y183{bottom:557.333333pt;}
.y1af{bottom:572.666667pt;}
.y1ad{bottom:604.666667pt;}
.y181{bottom:606.666667pt;}
.y1a5{bottom:660.625067pt;}
.y1aa{bottom:668.666667pt;}
.y1a2{bottom:692.625067pt;}
.y1a4{bottom:700.625067pt;}
.y19f{bottom:729.958400pt;}
.y1a1{bottom:737.958400pt;}
.y1a6{bottom:740.666667pt;}
.y19c{bottom:767.291733pt;}
.y1a3{bottom:772.666667pt;}
.y19e{bottom:775.291733pt;}
.y19a{bottom:797.958400pt;}
.y1a0{bottom:810.000000pt;}
.y19d{bottom:847.333333pt;}
.y19b{bottom:899.333333pt;}
.y1d0{bottom:958.000000pt;}
.y1d8{bottom:964.625067pt;}
.y1d7{bottom:989.958400pt;}
.y1d6{bottom:1015.291733pt;}
.y1d5{bottom:1040.625067pt;}
.y1d4{bottom:1065.958400pt;}
.y1d3{bottom:1091.291733pt;}
.y1d2{bottom:1116.625067pt;}
.y1cf{bottom:1141.958400pt;}
.y198{bottom:1200.625067pt;}
.y199{bottom:1280.666667pt;}
.y180{bottom:1334.000000pt;}
.y194{bottom:1352.625333pt;}
.y192{bottom:1368.625333pt;}
.y193{bottom:1384.625333pt;}
.y191{bottom:1433.958667pt;}
.y190{bottom:1483.292000pt;}
.y18f{bottom:1532.625333pt;}
.y18d{bottom:1581.958667pt;}
.y18c{bottom:1631.292000pt;}
.y188{bottom:1647.292000pt;}
.y18a{bottom:1663.292000pt;}
.y186{bottom:1712.625333pt;}
.y184{bottom:1761.958667pt;}
.y182{bottom:1811.292000pt;}
.y17f{bottom:1860.625333pt;}
.y17d{bottom:1923.292000pt;}
.y17c{bottom:1969.958667pt;}
.y17a{bottom:1975.292000pt;}
.y17e{bottom:2003.333333pt;}
.y17b{bottom:2055.333333pt;}
.y173{bottom:2108.666667pt;}
.y179{bottom:2115.292000pt;}
.y178{bottom:2140.625333pt;}
.y177{bottom:2165.958667pt;}
.y176{bottom:2191.292000pt;}
.y175{bottom:2216.625333pt;}
.y174{bottom:2241.958667pt;}
.y172{bottom:2267.292000pt;}
.y170{bottom:2325.958667pt;}
.y171{bottom:2406.000000pt;}
.y162{bottom:2459.333333pt;}
.y16f{bottom:2495.292000pt;}
.y16e{bottom:2544.625333pt;}
.y16b{bottom:2560.625333pt;}
.y16d{bottom:2576.625333pt;}
.y16a{bottom:2625.958667pt;}
.y169{bottom:2675.292000pt;}
.y166{bottom:2691.292000pt;}
.y168{bottom:2707.292000pt;}
.y165{bottom:2756.625333pt;}
.y164{bottom:2805.958667pt;}
.y163{bottom:2855.292000pt;}
.y161{bottom:2904.625333pt;}
.y15f{bottom:2967.292000pt;}
.y15d{bottom:2999.292000pt;}
.y15c{bottom:3045.958667pt;}
.y160{bottom:3047.333333pt;}
.y15a{bottom:3051.292000pt;}
.y15e{bottom:3079.333333pt;}
.y15b{bottom:3131.333333pt;}
.y157{bottom:3184.666667pt;}
.y159{bottom:3191.292000pt;}
.y158{bottom:3216.625333pt;}
.y156{bottom:3241.958667pt;}
.y154{bottom:3300.625333pt;}
.y155{bottom:3380.666667pt;}
.y14e{bottom:3434.000000pt;}
.y152{bottom:3436.625333pt;}
.y153{bottom:3452.625333pt;}
.y151{bottom:3501.958667pt;}
.y150{bottom:3551.292000pt;}
.y14f{bottom:3600.625333pt;}
.y14d{bottom:3649.958667pt;}
.y14b{bottom:3712.625333pt;}
.y149{bottom:3744.625333pt;}
.y148{bottom:3791.292000pt;}
.y14c{bottom:3792.666667pt;}
.y146{bottom:3796.625333pt;}
.y14a{bottom:3824.666667pt;}
.y147{bottom:3876.666667pt;}
.y144{bottom:3930.000000pt;}
.y145{bottom:3936.625333pt;}
.y143{bottom:3961.958667pt;}
.y141{bottom:4020.625333pt;}
.y142{bottom:4100.666667pt;}
.y13c{bottom:4154.000000pt;}
.y13f{bottom:4156.625333pt;}
.y140{bottom:4172.625333pt;}
.y13e{bottom:4221.958667pt;}
.y13d{bottom:4271.292000pt;}
.y13b{bottom:4320.625333pt;}
.y139{bottom:4383.292000pt;}
.y137{bottom:4415.292000pt;}
.y135{bottom:4461.958667pt;}
.y13a{bottom:4463.333333pt;}
.y133{bottom:4467.292000pt;}
.y138{bottom:4495.333333pt;}
.y131{bottom:4505.958667pt;}
.y134{bottom:4547.333333pt;}
.y130{bottom:4593.958667pt;}
.y12f{bottom:4601.958667pt;}
.y132{bottom:4607.333333pt;}
.y12d{bottom:4631.292000pt;}
.y12c{bottom:4639.292000pt;}
.y12a{bottom:4668.625333pt;}
.y12e{bottom:4674.000000pt;}
.y129{bottom:4676.625333pt;}
.y127{bottom:4705.958667pt;}
.y12b{bottom:4711.333333pt;}
.y125{bottom:4713.958667pt;}
.y128{bottom:4748.666667pt;}
.y122{bottom:4759.292000pt;}
.y124{bottom:4786.000000pt;}
.y120{bottom:4789.958667pt;}
.y123{bottom:4839.333333pt;}
.y11e{bottom:4877.958667pt;}
.y121{bottom:4891.333333pt;}
.y11c{bottom:4931.292000pt;}
.y11f{bottom:4958.000000pt;}
.y11a{bottom:4963.292000pt;}
.y117{bottom:4995.292000pt;}
.y11d{bottom:5011.333333pt;}
.y114{bottom:5025.958667pt;}
.y11b{bottom:5043.333333pt;}
.y119{bottom:5075.333333pt;}
.y110{bottom:5082.208000pt;}
.y116{bottom:5127.333333pt;}
.y10e{bottom:5196.874667pt;}
.y113{bottom:5204.666667pt;}
.y10c{bottom:5234.208000pt;}
.y10a{bottom:5271.541333pt;}
.y10f{bottom:5276.666667pt;}
.y108{bottom:5308.874667pt;}
.y10d{bottom:5314.000000pt;}
.y10b{bottom:5351.333333pt;}
.y106{bottom:5362.208000pt;}
.y109{bottom:5388.666667pt;}
.y107{bottom:5442.000000pt;}
.y104{bottom:5487.333333pt;}
.y105{bottom:5494.208000pt;}
.y102{bottom:5519.541333pt;}
.y100{bottom:5578.208000pt;}
.y101{bottom:5658.000000pt;}
.yfb{bottom:5711.333333pt;}
.yfe{bottom:5714.208000pt;}
.yff{bottom:5730.208000pt;}
.yfd{bottom:5779.541333pt;}
.yfc{bottom:5828.874667pt;}
.yfa{bottom:5878.208000pt;}
.yf8{bottom:5972.874667pt;}
.yf6{bottom:6004.874667pt;}
.yf9{bottom:6052.666667pt;}
.yf7{bottom:6084.666667pt;}
.yf4{bottom:6100.874667pt;}
.yf2{bottom:6154.208000pt;}
.yf5{bottom:6180.666667pt;}
.yf0{bottom:6186.208000pt;}
.yee{bottom:6218.208000pt;}
.yf3{bottom:6234.000000pt;}
.yeb{bottom:6250.208000pt;}
.yf1{bottom:6266.000000pt;}
.ye7{bottom:6271.792000pt;}
.yef{bottom:6298.000000pt;}
.yed{bottom:6330.000000pt;}
.yea{bottom:6394.666667pt;}
.ye6{bottom:6458.666667pt;}
.ye4{bottom:6465.125333pt;}
.ye2{bottom:6523.792000pt;}
.ye3{bottom:6604.000000pt;}
.ye0{bottom:6657.333333pt;}
.ye1{bottom:6693.125333pt;}
.ydf{bottom:6742.458667pt;}
.ydd{bottom:6837.125333pt;}
.yde{bottom:6917.333333pt;}
.ydb{bottom:6933.125333pt;}
.yd9{bottom:6986.458667pt;}
.ydc{bottom:7013.333333pt;}
.yd6{bottom:7018.458667pt;}
.yd2{bottom:7040.041333pt;}
.yda{bottom:7066.666667pt;}
.yd8{bottom:7098.666667pt;}
.yd5{bottom:7162.666667pt;}
.yca{bottom:7226.666667pt;}
.yd1{bottom:7233.374667pt;}
.yd0{bottom:7258.708000pt;}
.ycf{bottom:7284.041333pt;}
.yce{bottom:7309.374667pt;}
.ycd{bottom:7334.708000pt;}
.ycc{bottom:7360.041333pt;}
.yc9{bottom:7385.374667pt;}
.yc7{bottom:7444.041333pt;}
.yc8{bottom:7524.000000pt;}
.yaf{bottom:7577.333333pt;}
.yc2{bottom:7596.041333pt;}
.ybe{bottom:7612.041333pt;}
.yc0{bottom:7628.041333pt;}
.ybd{bottom:7677.374667pt;}
.ybb{bottom:7726.708000pt;}
.yb9{bottom:7776.041333pt;}
.yb7{bottom:7825.374667pt;}
.yb5{bottom:7874.708000pt;}
.yb3{bottom:7924.041333pt;}
.yb1{bottom:7973.374667pt;}
.yae{bottom:8022.708000pt;}
.yac{bottom:8085.374667pt;}
.yaa{bottom:8138.708000pt;}
.yad{bottom:8165.333333pt;}
.ya8{bottom:8170.708000pt;}
.ya6{bottom:8201.374667pt;}
.yab{bottom:8218.666667pt;}
.ya9{bottom:8250.666667pt;}
.ya7{bottom:8302.666667pt;}
.y9e{bottom:8361.333333pt;}
.ya5{bottom:8368.041333pt;}
.ya4{bottom:8393.374667pt;}
.ya3{bottom:8418.708000pt;}
.ya2{bottom:8444.041333pt;}
.ya0{bottom:8469.374667pt;}
.y9c{bottom:8494.708000pt;}
.y9a{bottom:8553.374667pt;}
.y9b{bottom:8633.333333pt;}
.y91{bottom:8686.666667pt;}
.y99{bottom:8722.708000pt;}
.y98{bottom:8772.041333pt;}
.y97{bottom:8821.374667pt;}
.y96{bottom:8870.708000pt;}
.y95{bottom:8920.041333pt;}
.y93{bottom:8969.374667pt;}
.y90{bottom:9018.708000pt;}
.y8e{bottom:9081.374667pt;}
.y8b{bottom:9134.708000pt;}
.y8f{bottom:9161.333333pt;}
.y88{bottom:9165.374667pt;}
.y8d{bottom:9214.666667pt;}
.y84{bottom:9221.625333pt;}
.y8a{bottom:9266.666667pt;}
.y87{bottom:9344.000000pt;}
.y83{bottom:9408.000000pt;}
.y81{bottom:9448.292000pt;}
.y82{bottom:9528.000000pt;}
.y80{bottom:9581.333333pt;}
.y7f{bottom:9617.625333pt;}
.y7d{bottom:9680.292000pt;}
.y7b{bottom:9730.958667pt;}
.y7e{bottom:9760.000000pt;}
.y7c{bottom:9810.666667pt;}
.y79{bottom:9864.000000pt;}
.y7a{bottom:9870.958667pt;}
.y78{bottom:9896.292000pt;}
.y76{bottom:9954.958667pt;}
.y77{bottom:10034.666667pt;}
.y73{bottom:10088.000000pt;}
.y75{bottom:10124.292000pt;}
.y74{bottom:10173.625333pt;}
.y72{bottom:10222.958667pt;}
.y70{bottom:10285.625333pt;}
.y6e{bottom:10316.292000pt;}
.y71{bottom:10365.333333pt;}
.y6f{bottom:10417.333333pt;}
.y6d{bottom:10476.000000pt;}
.y6b{bottom:10516.292000pt;}
.y6c{bottom:10596.000000pt;}
.y6a{bottom:10649.333333pt;}
.y69{bottom:10685.625333pt;}
.y67{bottom:10748.292000pt;}
.y65{bottom:10798.958667pt;}
.y68{bottom:10828.000000pt;}
.y66{bottom:10878.666667pt;}
.y59{bottom:10932.000000pt;}
.y5f{bottom:10938.958667pt;}
.y5d{bottom:10964.292000pt;}
.y5b{bottom:10989.625333pt;}
.y57{bottom:11014.958667pt;}
.y55{bottom:11073.625333pt;}
.y56{bottom:11153.333333pt;}
.y47{bottom:11206.666667pt;}
.y51{bottom:11209.625333pt;}
.y53{bottom:11225.625333pt;}
.y4f{bottom:11274.958667pt;}
.y4d{bottom:11324.292000pt;}
.y4b{bottom:11373.625333pt;}
.y49{bottom:11422.958667pt;}
.y46{bottom:11472.292000pt;}
.y44{bottom:11534.958667pt;}
.y42{bottom:11565.625333pt;}
.y45{bottom:11614.666667pt;}
.y43{bottom:11666.666667pt;}
.y1cb{bottom:11725.333333pt;}
.y1ce{bottom:11732.292000pt;}
.y1cd{bottom:11757.625333pt;}
.y1cc{bottom:11782.958667pt;}
.y1ca{bottom:11808.292000pt;}
.y40{bottom:11866.958667pt;}
.y41{bottom:11946.666667pt;}
.y3b{bottom:12000.000000pt;}
.y3f{bottom:12036.292000pt;}
.y3e{bottom:12085.625333pt;}
.y3d{bottom:12134.958667pt;}
.y3c{bottom:12184.292000pt;}
.y3a{bottom:12233.625333pt;}
.y38{bottom:12296.292000pt;}
.y36{bottom:12346.958667pt;}
.y39{bottom:12376.000000pt;}
.y34{bottom:12408.292000pt;}
.y37{bottom:12426.666667pt;}
.y32{bottom:12440.292000pt;}
.y2f{bottom:12470.958667pt;}
.y35{bottom:12488.000000pt;}
.y33{bottom:12520.000000pt;}
.y31{bottom:12572.000000pt;}
.y1c6{bottom:12630.666667pt;}
.y1c9{bottom:12637.625333pt;}
.y1c8{bottom:12662.958667pt;}
.y1c7{bottom:12688.292000pt;}
.y1c5{bottom:12713.625333pt;}
.y2d{bottom:12772.292000pt;}
.y2e{bottom:12852.000000pt;}
.y1f{bottom:12905.333333pt;}
.y27{bottom:12941.625333pt;}
.y25{bottom:12990.958667pt;}
.y23{bottom:13040.292000pt;}
.y21{bottom:13089.625333pt;}
.y1e{bottom:13138.958667pt;}
.y1c{bottom:13201.625333pt;}
.y1a{bottom:13252.292000pt;}
.y1d{bottom:13281.333333pt;}
.y17{bottom:13313.625333pt;}
.y1b{bottom:13332.000000pt;}
.y14{bottom:13344.293333pt;}
.y1{bottom:13368.706667pt;}
.y19{bottom:13393.333333pt;}
.y12{bottom:13432.293333pt;}
.y16{bottom:13445.333333pt;}
.y3{bottom:13450.000000pt;}
.y10{bottom:13464.293333pt;}
.y13{bottom:13512.000000pt;}
.ye{bottom:13517.626667pt;}
.y11{bottom:13544.000000pt;}
.y1dd{bottom:13545.333333pt;}
.yb{bottom:13549.626667pt;}
.y7{bottom:13571.213333pt;}
.y1db{bottom:13578.666667pt;}
.yf{bottom:13597.333333pt;}
.y4{bottom:13617.333333pt;}
.yd{bottom:13629.333333pt;}
.y1ed{bottom:13638.666667pt;}
.y1eb{bottom:13664.000000pt;}
.y1e9{bottom:13689.333333pt;}
.ya{bottom:13694.000000pt;}
.y1e7{bottom:13714.666667pt;}
.y1e5{bottom:13740.000000pt;}
.y1e1{bottom:13765.333333pt;}
.y6{bottom:13782.666667pt;}
.y1de{bottom:13790.666667pt;}
.y9{bottom:14063.333333pt;}
.y86{bottom:18413.333333pt;}
.yd4{bottom:20594.666667pt;}
.ye9{bottom:21362.666667pt;}
.y112{bottom:22552.666667pt;}
.y1a9{bottom:27088.666667pt;}
.h52{height:25.333333pt;}
.h4e{height:33.333333pt;}
.h50{height:34.666667pt;}
.h4f{height:46.848000pt;}
.h51{height:49.088000pt;}
.h37{height:51.141667pt;}
.h12{height:58.650000pt;}
.h39{height:60.166667pt;}
.h53{height:64.000000pt;}
.h3a{height:69.375000pt;}
.h2{height:72.380952pt;}
.h8{height:81.250000pt;}
.h18{height:93.333333pt;}
.ha{height:101.562500pt;}
.h4a{height:110.375000pt;}
.h2c{height:110.458333pt;}
.h3e{height:110.625000pt;}
.h1f{height:110.708333pt;}
.h33{height:110.875000pt;}
.hf{height:110.958333pt;}
.h11{height:111.708000pt;}
.h34{height:111.791667pt;}
.h20{height:111.958333pt;}
.h3f{height:112.041333pt;}
.h4b{height:112.041600pt;}
.h2d{height:112.208000pt;}
.hb{height:113.041667pt;}
.h2f{height:113.125000pt;}
.h1b{height:113.291667pt;}
.h3b{height:113.375000pt;}
.h28{height:113.541667pt;}
.h47{height:113.625000pt;}
.h2e{height:118.666667pt;}
.h6{height:121.875000pt;}
.h45{height:126.625000pt;}
.h25{height:126.708333pt;}
.h7{height:128.000000pt;}
.h41{height:135.958400pt;}
.h23{height:136.041600pt;}
.h36{height:136.208267pt;}
.h16{height:136.291733pt;}
.h14{height:137.041333pt;}
.h35{height:137.125067pt;}
.h22{height:137.291733pt;}
.h40{height:137.374667pt;}
.h4d{height:137.374933pt;}
.h46{height:142.625067pt;}
.h26{height:142.708267pt;}
.h1a{height:144.000000pt;}
.h17{height:149.333333pt;}
.h15{height:154.666667pt;}
.h49{height:159.708267pt;}
.h2b{height:159.791733pt;}
.h3d{height:159.958400pt;}
.h1e{height:160.041600pt;}
.h32{height:160.208267pt;}
.he{height:160.291733pt;}
.hd{height:162.374933pt;}
.h31{height:162.458400pt;}
.h4{height:162.500000pt;}
.h1d{height:162.625067pt;}
.h3c{height:162.708267pt;}
.h2a{height:162.874933pt;}
.h48{height:162.958400pt;}
.h43{height:169.333333pt;}
.h1{height:173.333333pt;}
.h38{height:182.666667pt;}
.h13{height:194.666667pt;}
.h29{height:198.666667pt;}
.h9{height:220.000000pt;}
.h21{height:245.333333pt;}
.h19{height:248.000000pt;}
.h3{height:261.333333pt;}
.h5{height:266.666667pt;}
.h27{height:270.666667pt;}
.h30{height:280.000000pt;}
.h4c{height:296.000000pt;}
.h42{height:329.333333pt;}
.hc{height:346.666667pt;}
.h10{height:378.666667pt;}
.h1c{height:445.333333pt;}
.h24{height:558.666667pt;}
.h44{height:640.000000pt;}
.h0{height:13878.666667pt;}
.we6{width:113.141667pt;}
.w61{width:120.785427pt;}
.w31{width:123.358333pt;}
.w1f{width:125.795840pt;}
.wbc{width:140.623867pt;}
.w12a{width:145.645867pt;}
.w10{width:146.791733pt;}
.w3f{width:149.835467pt;}
.w133{width:151.632000pt;}
.w109{width:151.945867pt;}
.wcd{width:152.654133pt;}
.wa4{width:153.229200pt;}
.wde{width:153.602133pt;}
.wb8{width:155.716667pt;}
.wc8{width:158.195733pt;}
.w135{width:158.466667pt;}
.w2b{width:162.370800pt;}
.wc6{width:165.910400pt;}
.w68{width:169.020267pt;}
.w10b{width:169.202133pt;}
.w2{width:169.228533pt;}
.w5c{width:170.193733pt;}
.w136{width:172.005333pt;}
.w101{width:172.016667pt;}
.wcb{width:172.589600pt;}
.w72{width:174.150000pt;}
.w49{width:175.808267pt;}
.w5e{width:178.108267pt;}
.wed{width:179.868800pt;}
.wb7{width:182.941733pt;}
.w21{width:184.500000pt;}
.w122{width:185.472933pt;}
.w2f{width:186.897867pt;}
.w80{width:187.574933pt;}
.wff{width:188.387467pt;}
.w1d{width:189.033333pt;}
.wf3{width:189.285467pt;}
.w2d{width:190.687467pt;}
.w78{width:190.929200pt;}
.w7c{width:191.364533pt;}
.wd2{width:191.574933pt;}
.w74{width:193.374933pt;}
.wf1{width:198.312533pt;}
.wdc{width:199.064533pt;}
.w110{width:199.310400pt;}
.w12{width:202.298933pt;}
.w93{width:203.052000pt;}
.w7d{width:203.137467pt;}
.w1b{width:203.762533pt;}
.w7f{width:203.895867pt;}
.w13b{width:204.421333pt;}
.w14{width:208.237467pt;}
.w7a{width:210.154133pt;}
.w70{width:210.843733pt;}
.wa0{width:211.320800pt;}
.w115{width:213.020267pt;}
.w4d{width:214.555733pt;}
.wa5{width:215.135467pt;}
.w17{width:216.424933pt;}
.w1a{width:218.568667pt;}
.w54{width:218.631200pt;}
.w103{width:219.516667pt;}
.w13f{width:222.941333pt;}
.wc2{width:224.404133pt;}
.w37{width:225.939600pt;}
.w6e{width:226.222933pt;}
.w76{width:227.622933pt;}
.w18{width:228.154133pt;}
.w81{width:229.579200pt;}
.wea{width:230.016667pt;}
.wd3{width:230.393733pt;}
.w128{width:231.129200pt;}
.wf0{width:232.441600pt;}
.w137{width:232.598667pt;}
.w132{width:237.323467pt;}
.w15{width:240.027067pt;}
.w13d{width:245.536000pt;}
.we3{width:245.662800pt;}
.w127{width:246.577067pt;}
.w8e{width:247.012533pt;}
.wcf{width:247.377067pt;}
.w45{width:247.960400pt;}
.w85{width:248.707200pt;}
.we{width:250.070800pt;}
.wa{width:251.197867pt;}
.w5a{width:251.556267pt;}
.wa1{width:251.652000pt;}
.w33{width:253.216667pt;}
.wc5{width:254.780933pt;}
.w58{width:255.324933pt;}
.w35{width:255.354133pt;}
.w7{width:255.718800pt;}
.wa9{width:258.258267pt;}
.we9{width:259.312400pt;}
.w39{width:260.091067pt;}
.wf5{width:262.966667pt;}
.wb4{width:264.383333pt;}
.w26{width:267.287467pt;}
.w125{width:267.406267pt;}
.w56{width:269.704267pt;}
.wbd{width:269.939600pt;}
.w38{width:271.474933pt;}
.wa3{width:271.693733pt;}
.wd0{width:272.283333pt;}
.w8{width:273.085467pt;}
.w13{width:273.992667pt;}
.w139{width:274.445333pt;}
.w13c{width:275.981333pt;}
.w113{width:280.119733pt;}
.w12c{width:282.858800pt;}
.wd8{width:283.685600pt;}
.w47{width:284.654267pt;}
.wb{width:285.638667pt;}
.w42{width:287.278533pt;}
.w82{width:294.242667pt;}
.w53{width:294.429200pt;}
.w8c{width:296.110400pt;}
.waf{width:296.241600pt;}
.w105{width:296.741867pt;}
.w120{width:299.462667pt;}
.wad{width:300.283333pt;}
.w10f{width:304.091067pt;}
.w63{width:305.626533pt;}
.wb1{width:308.262667pt;}
.w123{width:313.837467pt;}
.wfc{width:315.301600pt;}
.wbf{width:315.475067pt;}
.we0{width:317.010400pt;}
.wfd{width:317.058267pt;}
.w23{width:318.935733pt;}
.w12b{width:322.670800pt;}
.w13e{width:326.013333pt;}
.w10a{width:327.508267pt;}
.w4b{width:328.394400pt;}
.w6c{width:331.920800pt;}
.wec{width:331.943733pt;}
.w29{width:332.735467pt;}
.w28{width:335.514667pt;}
.wf{width:336.181333pt;}
.w2a{width:337.285600pt;}
.w8d{width:339.243867pt;}
.wfa{width:339.778133pt;}
.wf7{width:339.778267pt;}
.w134{width:344.000000pt;}
.wab{width:350.000000pt;}
.wd5{width:351.161867pt;}
.w89{width:351.162000pt;}
.w3b{width:351.162133pt;}
.wf4{width:354.514533pt;}
.w138{width:354.666667pt;}
.wdd{width:355.635333pt;}
.w92{width:355.739600pt;}
.w121{width:355.922933pt;}
.w9d{width:356.650133pt;}
.w13a{width:357.333333pt;}
.w4e{width:359.510533pt;}
.w10d{width:359.973867pt;}
.w107{width:360.991600pt;}
.w34{width:362.179067pt;}
.w88{width:362.545733pt;}
.w3c{width:362.546000pt;}
.w9c{width:363.133333pt;}
.wf2{width:363.541600pt;}
.w43{width:363.739733pt;}
.wc7{width:370.300133pt;}
.w100{width:372.820800pt;}
.w97{width:373.929600pt;}
.w6f{width:373.960400pt;}
.we5{width:387.635333pt;}
.w2c{width:388.404133pt;}
.w55{width:389.208267pt;}
.w111{width:390.215600pt;}
.w6d{width:390.939733pt;}
.w8f{width:392.066800pt;}
.w11f{width:396.045733pt;}
.w41{width:396.697333pt;}
.w3e{width:401.785600pt;}
.w83{width:408.081200pt;}
.wf8{width:408.081333pt;}
.w12d{width:408.081467pt;}
.w3d{width:409.515200pt;}
.w62{width:412.664533pt;}
.w71{width:418.195867pt;}
.w116{width:418.212400pt;}
.w130{width:419.465067pt;}
.w117{width:421.583333pt;}
.w4a{width:422.879200pt;}
.wd9{width:423.541867pt;}
.wc4{width:424.481333pt;}
.w44{width:424.795867pt;}
.w40{width:425.097867pt;}
.w59{width:425.902000pt;}
.w10c{width:426.198133pt;}
.w4f{width:428.239733pt;}
.w51{width:429.186267pt;}
.w50{width:430.829600pt;}
.w96{width:430.848933pt;}
.wfb{width:430.849067pt;}
.w114{width:438.141733pt;}
.wd4{width:438.797867pt;}
.w91{width:439.691600pt;}
.w32{width:443.000000pt;}
.w60{width:443.804133pt;}
.wce{width:446.541600pt;}
.w3a{width:453.616933pt;}
.w48{width:453.783333pt;}
.wba{width:456.950000pt;}
.w12f{width:465.000800pt;}
.w75{width:466.233333pt;}
.w118{width:473.230000pt;}
.w5d{width:473.939600pt;}
.w129{width:477.339600pt;}
.w5f{width:482.824933pt;}
.w77{width:485.235333pt;}
.w73{width:487.629200pt;}
.we1{width:487.768133pt;}
.we2{width:487.768533pt;}
.w24{width:489.136400pt;}
.w57{width:492.502133pt;}
.w66{width:499.152000pt;}
.wee{width:503.427067pt;}
.w108{width:503.874933pt;}
.w131{width:510.535867pt;}
.w6{width:515.220800pt;}
.w98{width:519.035600pt;}
.w69{width:521.920133pt;}
.w94{width:529.702133pt;}
.wdf{width:530.387467pt;}
.w46{width:531.368800pt;}
.we7{width:532.950000pt;}
.w10e{width:534.141600pt;}
.w7b{width:537.572933pt;}
.wb3{width:538.695867pt;}
.w126{width:538.735333pt;}
.wb6{width:543.483333pt;}
.w12e{width:544.687733pt;}
.wf6{width:548.368667pt;}
.w79{width:554.668800pt;}
.w20{width:555.479067pt;}
.wd6{width:556.071467pt;}
.wf9{width:556.071600pt;}
.w22{width:560.314533pt;}
.w6a{width:562.949067pt;}
.w5b{width:563.104133pt;}
.w112{width:566.154133pt;}
.wae{width:568.754533pt;}
.w8a{width:573.430800pt;}
.we8{width:573.708267pt;}
.wac{width:575.296133pt;}
.w4{width:575.814667pt;}
.waa{width:578.525333pt;}
.w65{width:578.839067pt;}
.w4c{width:578.839200pt;}
.wa8{width:579.129467pt;}
.wcc{width:579.764533pt;}
.w102{width:582.685333pt;}
.w124{width:584.000000pt;}
.wbb{width:589.512400pt;}
.w84{width:590.223200pt;}
.w104{width:591.672800pt;}
.w87{width:601.607067pt;}
.w86{width:612.990667pt;}
.w36{width:622.970800pt;}
.w95{width:624.374800pt;}
.w67{width:624.374933pt;}
.w106{width:628.291733pt;}
.w1e{width:633.918667pt;}
.w19{width:639.431200pt;}
.w16{width:642.810400pt;}
.w3{width:645.640400pt;}
.wbe{width:653.274933pt;}
.wa2{width:658.243733pt;}
.w27{width:659.669467pt;}
.wd{width:660.745733pt;}
.wb2{width:672.977067pt;}
.wd1{width:677.645867pt;}
.w2e{width:681.558267pt;}
.wb0{width:687.078667pt;}
.w64{width:692.678133pt;}
.wef{width:694.181200pt;}
.web{width:695.522800pt;}
.wc1{width:696.024933pt;}
.w30{width:701.937467pt;}
.wa6{width:707.506133pt;}
.wd7{width:715.445867pt;}
.wc0{width:719.306133pt;}
.w1c{width:724.360400pt;}
.w7e{width:729.625067pt;}
.w5{width:732.308267pt;}
.w90{width:734.422800pt;}
.w9f{width:739.389600pt;}
.wca{width:746.727067pt;}
.wdb{width:809.618667pt;}
.w9e{width:858.437467pt;}
.w8b{width:869.927067pt;}
.wc3{width:884.114533pt;}
.wb9{width:960.520800pt;}
.wb5{width:966.249867pt;}
.wc{width:966.816667pt;}
.w11{width:970.666667pt;}
.wa7{width:1011.499867pt;}
.w9{width:1016.954000pt;}
.wfe{width:1031.793600pt;}
.we4{width:1036.078933pt;}
.w25{width:1044.549867pt;}
.w11c{width:1057.178933pt;}
.w99{width:1067.027067pt;}
.w9b{width:1072.164400pt;}
.wda{width:1077.887333pt;}
.wc9{width:1087.860133pt;}
.w119{width:1091.481067pt;}
.w11b{width:1094.247733pt;}
.w52{width:1094.572667pt;}
.w11a{width:1094.749867pt;}
.w11e{width:1103.781067pt;}
.w11d{width:1105.051867pt;}
.w6b{width:1111.260133pt;}
.w9a{width:1115.368533pt;}
.w1{width:2559.842963pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x8d{left:13.333333pt;}
.x13{left:18.666667pt;}
.x1c{left:21.333333pt;}
.x8f{left:24.000000pt;}
.x92{left:40.000000pt;}
.x91{left:61.800000pt;}
.x48{left:65.333333pt;}
.x2{left:73.333333pt;}
.x52{left:77.333333pt;}
.x10{left:93.333333pt;}
.x1e{left:122.374933pt;}
.x8{left:149.800000pt;}
.x5{left:153.333333pt;}
.x34{left:176.437467pt;}
.x15{left:178.583333pt;}
.x2d{left:187.645867pt;}
.x58{left:207.395867pt;}
.x19{left:215.354133pt;}
.x67{left:223.000000pt;}
.x29{left:229.708267pt;}
.x22{left:244.666667pt;}
.x20{left:249.083333pt;}
.x70{left:256.750000pt;}
.x89{left:259.479200pt;}
.x27{left:263.874933pt;}
.x36{left:291.270800pt;}
.x17{left:305.291733pt;}
.x2f{left:314.374933pt;}
.x69{left:337.854133pt;}
.x1b{left:342.062533pt;}
.x2b{left:356.416667pt;}
.x24{left:359.500000pt;}
.x5a{left:366.354133pt;}
.x71{left:415.708267pt;}
.x8b{left:460.000000pt;}
.x4{left:641.333333pt;}
.x7{left:681.333333pt;}
.x1{left:694.666667pt;}
.xf{left:701.333333pt;}
.xa{left:721.333333pt;}
.x37{left:764.000000pt;}
.x3{left:768.000000pt;}
.x47{left:772.000000pt;}
.x49{left:779.290533pt;}
.x6{left:794.666667pt;}
.x46{left:804.666667pt;}
.x62{left:813.662800pt;}
.x11{left:822.070800pt;}
.xd{left:827.718800pt;}
.x9{left:831.133333pt;}
.x41{left:836.383333pt;}
.x38{left:837.333333pt;}
.x1d{left:843.708267pt;}
.x4a{left:844.623867pt;}
.x5b{left:851.685600pt;}
.x5c{left:860.262667pt;}
.x25{left:870.374933pt;}
.x6a{left:883.301600pt;}
.x63{left:890.996133pt;}
.x12{left:895.404133pt;}
.x33{left:897.770800pt;}
.x14{left:899.916667pt;}
.xe{left:901.052133pt;}
.x2c{left:908.979200pt;}
.x32{left:911.243867pt;}
.x4b{left:915.896667pt;}
.x57{left:928.729200pt;}
.x50{left:935.694667pt;}
.x18{left:936.687467pt;}
.x5d{left:937.596000pt;}
.x51{left:942.985200pt;}
.x66{left:944.333333pt;}
.x28{left:951.041600pt;}
.x4e{left:961.432267pt;}
.x21{left:966.000000pt;}
.x82{left:968.119733pt;}
.x6b{left:969.212133pt;}
.x1f{left:970.416667pt;}
.x72{left:974.640667pt;}
.x6f{left:978.083333pt;}
.x4c{left:981.230000pt;}
.x26{left:985.208267pt;}
.x4d{left:988.520533pt;}
.x7a{left:1004.882267pt;}
.x35{left:1012.604133pt;}
.x16{left:1026.625067pt;}
.x4f{left:1034.056133pt;}
.x2e{left:1035.708267pt;}
.x53{left:1044.324800pt;}
.x65{left:1047.783867pt;}
.x6c{left:1051.603733pt;}
.x55{left:1056.901867pt;}
.x68{left:1059.187467pt;}
.x1a{left:1063.395867pt;}
.x2a{left:1077.750000pt;}
.x23{left:1080.833333pt;}
.x59{left:1087.687467pt;}
.x64{left:1112.540000pt;}
.x42{left:1115.483333pt;}
.x54{left:1121.658133pt;}
.x5e{left:1126.471200pt;}
.x6d{left:1128.937067pt;}
.x56{left:1130.235200pt;}
.x6e{left:1137.514133pt;}
.x60{left:1139.048267pt;}
.x44{left:1149.091600pt;}
.x8a{left:1181.333333pt;}
.x3d{left:1183.421200pt;}
.x43{left:1188.816667pt;}
.x3b{left:1189.962800pt;}
.x83{left:1191.594800pt;}
.x39{left:1193.796133pt;}
.x84{left:1198.885333pt;}
.x5f{left:1203.804533pt;}
.x61{left:1212.381600pt;}
.x45{left:1222.424933pt;}
.x3f{left:1244.977067pt;}
.x3e{left:1256.754533pt;}
.x3c{left:1263.296133pt;}
.x85{left:1264.218667pt;}
.x3a{left:1267.129467pt;}
.x86{left:1278.572267pt;}
.xb{left:1304.308267pt;}
.x40{left:1318.310400pt;}
.x87{left:1343.905333pt;}
.x88{left:1351.196000pt;}
.x73{left:1367.449333pt;}
.x75{left:1374.740000pt;}
.xc{left:1377.641333pt;}
.x7b{left:1429.702667pt;}
.x74{left:1432.782667pt;}
.x7d{left:1436.993333pt;}
.x76{left:1440.073333pt;}
.x30{left:1441.926667pt;}
.x7c{left:1495.036000pt;}
.x7e{left:1502.326667pt;}
.x31{left:1515.260000pt;}
.x77{left:1545.497333pt;}
.x7f{left:1573.600000pt;}
.x78{left:1610.830667pt;}
.x79{left:1618.121333pt;}
.x80{left:1638.933333pt;}
.x81{left:1646.224000pt;}
.x90{left:1785.333333pt;}
.x8e{left:1788.000000pt;}
.x8c{left:1798.666667pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  