
    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_cad427270f1368a030c3d976.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_a1700f3ef06c1d8d8cbd3b0c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_f4f0311e32e92b1f94d5ff60.woff')format("woff");}.ff3{font-family:ff3;line-height:0.729492;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_3867ac855a61183717fc162c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_b52126cf72e54f742335c2df.woff')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_ffad4ab2e06c2a8a08bd6aed.woff')format("woff");}.ff6{font-family:ff6;line-height:0.854492;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_f5f8f2b0925f89ef13baae11.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_89b9a9fe4fded5c17162718b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_de8d54a77c8a6d53de39e21a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_23e9994f008c4877d4190630.woff')format("woff");}.ffa{font-family:ffa;line-height:0.800293;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_26f0a0b7d195402664a8eea9.woff')format("woff");}.ffb{font-family:ffb;line-height:0.977539;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_bb44b3ed1b05be50cc6a99f9.woff')format("woff");}.ffc{font-family:ffc;line-height:0.688477;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_fef26b5c587d3cc27630ee18.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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_c781b0bc8a2e4faf06a57bac.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_1dcfa936f4c5e082cf27b49c.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;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_974c4a57c2cc5d4be41e2697.woff')format("woff");}.ff10{font-family:ff10;line-height:1.435059;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_656714fa8bcf455f14255e7f.woff')format("woff");}.ff11{font-family:ff11;line-height:0.938965;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:ff12;src:url('chunks/assets/font_5272d941397dd045241ff88b.woff')format("woff");}.ff12{font-family:ff12;line-height:0.758789;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:ff13;src:url('chunks/assets/font_6f50b9f871fd4dcf6a9a7d87.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_85a58c2504ada578292a9207.woff')format("woff");}.ff14{font-family:ff14;line-height:0.921387;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:ff15;src:url('chunks/assets/font_25fe17972aa01976ec52540d.woff')format("woff");}.ff15{font-family:ff15;line-height:1.040039;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;}
.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);}
.m1{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);}
.v3{vertical-align:-94.320000px;}
.v2{vertical-align:-82.800000px;}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.882000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.187200px;}
.ls6{letter-spacing:-0.172800px;}
.ls27{letter-spacing:-0.072000px;}
.ls1a{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.040320px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012960px;}
.ls5{letter-spacing:0.023040px;}
.ls16{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.072000px;}
.ls25{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.150000px;}
.ls11{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.252000px;}
.ls14{letter-spacing:0.259800px;}
.ls19{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.351360px;}
.ls15{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.460080px;}
.ls24{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.612000px;}
.ls1d{letter-spacing:0.869760px;}
.ls1f{letter-spacing:0.900000px;}
.ls1c{letter-spacing:1.980000px;}
.lse{letter-spacing:9.360000px;}
.ls22{letter-spacing:10.026720px;}
.ls20{letter-spacing:13.680000px;}
.ls26{letter-spacing:15.120000px;}
.lsd{letter-spacing:33.984000px;}
.lsf{letter-spacing:38.304000px;}
.ls0{letter-spacing:45.383040px;}
.lsc{letter-spacing:54.840000px;}
.ls18{letter-spacing:197.976000px;}
.ls21{letter-spacing:2549.976000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws14{word-spacing:-59.760000px;}
.ws13{word-spacing:-18.216000px;}
.ws15{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.wsa{word-spacing:-18.000000px;}
.ws16{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.128000px;}
.ws10{word-spacing:-15.552000px;}
.wse{word-spacing:-15.199800px;}
.wsd{word-spacing:-14.993280px;}
.wsf{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.ws2{word-spacing:-13.106880px;}
.ws12{word-spacing:-12.564000px;}
.ws7{word-spacing:-11.880000px;}
.ws5{word-spacing:-10.836000px;}
.ws8{word-spacing:-10.612800px;}
.ws3{word-spacing:-9.937440px;}
.ws4{word-spacing:-9.702000px;}
.ws6{word-spacing:0.000000px;}
.ws1{word-spacing:36.380160px;}
._4b{margin-left:-2664.837120px;}
._5d{margin-left:-2369.302560px;}
._7a{margin-left:-1821.096000px;}
._75{margin-left:-1800.097440px;}
._53{margin-left:-1744.056000px;}
._52{margin-left:-1691.796000px;}
._65{margin-left:-1689.441120px;}
._41{margin-left:-1665.684000px;}
._81{margin-left:-1560.000000px;}
._80{margin-left:-1471.641120px;}
._34{margin-left:-1432.080000px;}
._61{margin-left:-1424.460720px;}
._60{margin-left:-1415.172000px;}
._42{margin-left:-1357.608000px;}
._2d{margin-left:-1345.248000px;}
._79{margin-left:-1342.449120px;}
._66{margin-left:-1328.040000px;}
._4d{margin-left:-1320.636000px;}
._5a{margin-left:-1296.144000px;}
._6b{margin-left:-1273.176000px;}
._5b{margin-left:-1246.188000px;}
._58{margin-left:-1220.625120px;}
._64{margin-left:-1217.160000px;}
._62{margin-left:-1183.836000px;}
._76{margin-left:-1158.461040px;}
._74{margin-left:-1146.756000px;}
._78{margin-left:-1139.592000px;}
._7e{margin-left:-1115.868000px;}
._5c{margin-left:-1086.430560px;}
._2e{margin-left:-1060.848000px;}
._63{margin-left:-1001.160000px;}
._7d{margin-left:-986.001120px;}
._6e{margin-left:-970.128000px;}
._4a{margin-left:-921.240000px;}
._49{margin-left:-911.892000px;}
._7c{margin-left:-892.092000px;}
._6d{margin-left:-886.656000px;}
._3e{margin-left:-869.184000px;}
._3d{margin-left:-859.836000px;}
._57{margin-left:-811.620000px;}
._32{margin-left:-772.968000px;}
._37{margin-left:-669.288000px;}
._40{margin-left:-659.028000px;}
._5f{margin-left:-636.873120px;}
._71{margin-left:-630.696000px;}
._72{margin-left:-627.192000px;}
._6c{margin-left:-581.760000px;}
._33{margin-left:-541.401120px;}
._77{margin-left:-515.160000px;}
._38{margin-left:-511.056000px;}
._2f{margin-left:-478.080000px;}
._59{margin-left:-467.136000px;}
._3f{margin-left:-452.556000px;}
._7f{margin-left:-451.401120px;}
._46{margin-left:-445.032000px;}
._45{margin-left:-435.072000px;}
._54{margin-left:-415.128000px;}
._69{margin-left:-391.896000px;}
._51{margin-left:-379.800000px;}
._55{margin-left:-373.104000px;}
._68{margin-left:-336.936000px;}
._82{margin-left:-321.120000px;}
._73{margin-left:-303.696000px;}
._31{margin-left:-301.140000px;}
._4f{margin-left:-279.336000px;}
._50{margin-left:-277.056000px;}
._6f{margin-left:-263.412000px;}
._7b{margin-left:-235.836000px;}
._36{margin-left:-227.520000px;}
._44{margin-left:-223.776000px;}
._48{margin-left:-203.976000px;}
._35{margin-left:-180.900000px;}
._56{margin-left:-169.032000px;}
._39{margin-left:-167.760000px;}
._67{margin-left:-162.000000px;}
._30{margin-left:-144.000000px;}
._3b{margin-left:-131.760000px;}
._70{margin-left:-108.000000px;}
._6a{margin-left:-105.120000px;}
._3c{margin-left:-95.976000px;}
._47{margin-left:-75.744000px;}
._4e{margin-left:-72.432000px;}
._5e{margin-left:-69.984000px;}
._3a{margin-left:-59.976000px;}
._1f{margin-left:-6.000000px;}
._1e{margin-left:-2.792400px;}
._0{margin-left:-1.622880px;}
._1{width:1.069440px;}
._3{width:2.810640px;}
._5{width:3.884880px;}
._11{width:5.189280px;}
._10{width:6.362400px;}
._a{width:7.416480px;}
._9{width:8.605440px;}
._8{width:9.920160px;}
._1a{width:10.924320px;}
._16{width:11.952000px;}
._15{width:13.032000px;}
._17{width:14.760000px;}
._d{width:16.236240px;}
._e{width:17.313840px;}
._4{width:18.406080px;}
._b{width:19.601280px;}
._c{width:20.714400px;}
._f{width:22.246320px;}
._7{width:23.501280px;}
._6{width:24.680880px;}
._1b{width:25.884000px;}
._14{width:27.108000px;}
._22{width:28.425120px;}
._12{width:29.640960px;}
._13{width:30.678720px;}
._2a{width:31.679040px;}
._23{width:32.688000px;}
._1c{width:33.696000px;}
._2b{width:34.757760px;}
._1d{width:35.820000px;}
._28{width:37.656000px;}
._29{width:38.846880px;}
._2c{width:40.170240px;}
._26{width:41.832000px;}
._27{width:43.342560px;}
._20{width:45.288000px;}
._21{width:46.509120px;}
._24{width:48.666480px;}
._18{width:49.824000px;}
._19{width:51.120000px;}
._25{width:52.344000px;}
._43{width:106.896000px;}
._4c{width:671.016000px;}
._2{width:2694.606000px;}
.fc9{color:rgb(191,143,0);}
.fc6{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc8{color:rgb(148,54,52);}
.fc2{color:rgb(238,78,60);}
.fc7{color:rgb(128,128,128);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs9{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs0{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y3d{bottom:-10.980000px;}
.y38{bottom:-0.210000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:2.340000px;}
.y36{bottom:2.490000px;}
.y20b{bottom:3.225000px;}
.y22a{bottom:3.240000px;}
.y20c{bottom:3.405000px;}
.y225{bottom:3.420000px;}
.yc9{bottom:3.585000px;}
.yb9{bottom:3.600000px;}
.yc3{bottom:3.765000px;}
.yd9{bottom:3.780000px;}
.y3{bottom:4.500000px;}
.y74{bottom:4.680000px;}
.y190{bottom:4.845000px;}
.yb1{bottom:4.860000px;}
.y40{bottom:5.400000px;}
.y3c{bottom:8.100000px;}
.y217{bottom:9.360000px;}
.yc6{bottom:10.785000px;}
.y147{bottom:12.240000px;}
.y189{bottom:12.405000px;}
.y138{bottom:14.940000px;}
.y21a{bottom:15.120000px;}
.y73{bottom:15.480000px;}
.yc1{bottom:15.825000px;}
.y272{bottom:15.840000px;}
.y178{bottom:16.020000px;}
.yb0{bottom:16.200000px;}
.ya5{bottom:16.380000px;}
.y1f2{bottom:16.560000px;}
.y208{bottom:16.725000px;}
.yb4{bottom:16.920000px;}
.y1c5{bottom:20.520000px;}
.y20a{bottom:20.550000px;}
.y12d{bottom:20.865000px;}
.yb7{bottom:20.880000px;}
.y15e{bottom:20.910000px;}
.ycd{bottom:21.045000px;}
.ye3{bottom:21.060000px;}
.y20e{bottom:21.585000px;}
.y18f{bottom:22.125000px;}
.y14f{bottom:22.140000px;}
.y45{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y206{bottom:25.365000px;}
.y216{bottom:26.640000px;}
.y21b{bottom:27.180000px;}
.y180{bottom:29.505000px;}
.y146{bottom:29.520000px;}
.y212{bottom:29.550000px;}
.y188{bottom:29.685000px;}
.yd5{bottom:29.700000px;}
.y210{bottom:30.045000px;}
.y220{bottom:30.060000px;}
.y213{bottom:30.090000px;}
.y21d{bottom:30.420000px;}
.y219{bottom:32.220000px;}
.yc0{bottom:33.105000px;}
.y207{bottom:34.005000px;}
.y41{bottom:35.280000px;}
.y12b{bottom:38.145000px;}
.yb8{bottom:38.160000px;}
.y13b{bottom:38.190000px;}
.y111{bottom:38.205000px;}
.ycc{bottom:38.325000px;}
.ye2{bottom:38.340000px;}
.y125{bottom:38.370000px;}
.y18e{bottom:39.405000px;}
.y14e{bottom:39.465000px;}
.y3a{bottom:41.940000px;}
.y1{bottom:42.660000px;}
.y215{bottom:43.920000px;}
.y1eb{bottom:46.785000px;}
.y145{bottom:46.800000px;}
.y17f{bottom:46.830000px;}
.y187{bottom:46.965000px;}
.yd4{bottom:46.980000px;}
.y1e0{bottom:48.225000px;}
.y218{bottom:49.500000px;}
.ybf{bottom:50.385000px;}
.y12a{bottom:55.425000px;}
.yde{bottom:55.440000px;}
.y15d{bottom:55.470000px;}
.y223{bottom:55.485000px;}
.ycb{bottom:55.605000px;}
.y154{bottom:55.620000px;}
.y124{bottom:55.650000px;}
.y18d{bottom:56.685000px;}
.y14d{bottom:56.745000px;}
.y3e{bottom:63.000000px;}
.y1ea{bottom:64.065000px;}
.y17e{bottom:64.110000px;}
.yd3{bottom:64.290000px;}
.y1df{bottom:65.550000px;}
.ybe{bottom:67.485000px;}
.y116{bottom:72.720000px;}
.y1d2{bottom:72.750000px;}
.y14c{bottom:73.845000px;}
.y1e9{bottom:81.345000px;}
.y1de{bottom:82.830000px;}
.ybd{bottom:84.765000px;}
.y115{bottom:90.000000px;}
.y34{bottom:100.230000px;}
.y32{bottom:111.060000px;}
.y26f{bottom:113.400000px;}
.y31{bottom:114.840000px;}
.y214{bottom:115.200000px;}
.y1f1{bottom:119.880000px;}
.y13e{bottom:120.240000px;}
.y1fa{bottom:123.840000px;}
.ya4{bottom:124.200000px;}
.y19a{bottom:124.560000px;}
.ydb{bottom:124.740000px;}
.y10e{bottom:125.820000px;}
.y30{bottom:129.960000px;}
.y177{bottom:131.400000px;}
.yaf{bottom:132.480000px;}
.y26e{bottom:134.100000px;}
.y1c4{bottom:135.900000px;}
.y1ef{bottom:136.800000px;}
.y13d{bottom:138.240000px;}
.y137{bottom:140.940000px;}
.y197{bottom:142.560000px;}
.yd2{bottom:142.740000px;}
.y72{bottom:144.360000px;}
.y1f9{bottom:144.540000px;}
.ya3{bottom:144.900000px;}
.y10d{bottom:146.520000px;}
.y176{bottom:152.100000px;}
.yae{bottom:153.180000px;}
.y26d{bottom:154.800000px;}
.y13c{bottom:156.240000px;}
.y1c3{bottom:156.600000px;}
.y2f{bottom:160.020000px;}
.y136{bottom:161.640000px;}
.y240{bottom:164.700000px;}
.y71{bottom:165.060000px;}
.y1f8{bottom:165.240000px;}
.ya2{bottom:165.600000px;}
.y10c{bottom:167.220000px;}
.y1f0{bottom:171.360000px;}
.y175{bottom:172.800000px;}
.yad{bottom:173.880000px;}
.y13a{bottom:174.240000px;}
.y26c{bottom:175.500000px;}
.y199{bottom:177.120000px;}
.yda{bottom:177.300000px;}
.y2e{bottom:180.360000px;}
.y135{bottom:182.340000px;}
.y70{bottom:185.760000px;}
.y1f7{bottom:185.940000px;}
.ya1{bottom:186.300000px;}
.y211{bottom:187.740000px;}
.y10b{bottom:187.920000px;}
.y174{bottom:193.500000px;}
.yac{bottom:193.860000px;}
.y198{bottom:194.400000px;}
.yd8{bottom:194.580000px;}
.y26b{bottom:196.200000px;}
.y1c2{bottom:198.000000px;}
.y2d{bottom:200.520000px;}
.y134{bottom:203.040000px;}
.y23f{bottom:203.580000px;}
.y6f{bottom:206.490000px;}
.y1f6{bottom:206.670000px;}
.y1e8{bottom:206.685000px;}
.ya0{bottom:207.030000px;}
.y10a{bottom:208.650000px;}
.yab{bottom:211.170000px;}
.yd7{bottom:211.905000px;}
.y194{bottom:212.445000px;}
.y173{bottom:214.230000px;}
.y26a{bottom:216.930000px;}
.y1c1{bottom:218.730000px;}
.y2c{bottom:220.890000px;}
.y133{bottom:223.770000px;}
.y6e{bottom:227.190000px;}
.y1f5{bottom:227.370000px;}
.y9f{bottom:227.730000px;}
.yaa{bottom:229.170000px;}
.yd6{bottom:229.185000px;}
.y109{bottom:229.350000px;}
.y196{bottom:229.545000px;}
.y139{bottom:230.070000px;}
.y172{bottom:234.930000px;}
.y269{bottom:237.630000px;}
.y1c0{bottom:239.430000px;}
.y1ee{bottom:241.245000px;}
.y2b{bottom:242.670000px;}
.y132{bottom:244.470000px;}
.ya9{bottom:245.370000px;}
.y195{bottom:246.825000px;}
.yca{bottom:247.005000px;}
.y6d{bottom:247.890000px;}
.y1f4{bottom:248.070000px;}
.y9e{bottom:248.430000px;}
.y108{bottom:250.050000px;}
.y23e{bottom:251.310000px;}
.y268{bottom:258.330000px;}
.y1ed{bottom:258.345000px;}
.y1bf{bottom:260.130000px;}
.y2a{bottom:264.270000px;}
.yd1{bottom:264.285000px;}
.y18c{bottom:264.825000px;}
.y131{bottom:265.170000px;}
.y20f{bottom:266.265000px;}
.y6c{bottom:268.590000px;}
.y9d{bottom:269.130000px;}
.y107{bottom:270.750000px;}
.y23d{bottom:275.070000px;}
.y171{bottom:276.330000px;}
.y267{bottom:279.030000px;}
.y1be{bottom:280.830000px;}
.yd0{bottom:281.565000px;}
.y193{bottom:282.825000px;}
.y29{bottom:284.250000px;}
.y130{bottom:285.510000px;}
.y6b{bottom:289.290000px;}
.y9c{bottom:289.830000px;}
.y106{bottom:291.450000px;}
.y1ec{bottom:292.905000px;}
.y170{bottom:297.030000px;}
.y23c{bottom:298.830000px;}
.ycf{bottom:298.845000px;}
.y266{bottom:299.730000px;}
.y192{bottom:300.825000px;}
.y1bd{bottom:301.530000px;}
.y12f{bottom:302.805000px;}
.y6a{bottom:309.990000px;}
.y9b{bottom:310.530000px;}
.y105{bottom:312.150000px;}
.y28{bottom:314.850000px;}
.yce{bottom:316.125000px;}
.y16f{bottom:317.730000px;}
.y191{bottom:318.825000px;}
.y265{bottom:320.070000px;}
.y1bc{bottom:322.230000px;}
.y1e6{bottom:328.185000px;}
.y69{bottom:330.690000px;}
.y9a{bottom:331.230000px;}
.y104{bottom:332.850000px;}
.ybc{bottom:334.125000px;}
.y186{bottom:336.825000px;}
.y23b{bottom:337.710000px;}
.y129{bottom:338.085000px;}
.y16e{bottom:338.430000px;}
.y27{bottom:340.950000px;}
.y264{bottom:341.130000px;}
.y1bb{bottom:342.930000px;}
.y20d{bottom:344.565000px;}
.y68{bottom:351.390000px;}
.yc8{bottom:351.405000px;}
.yb3{bottom:351.570000px;}
.y99{bottom:351.930000px;}
.y103{bottom:353.550000px;}
.y18b{bottom:354.105000px;}
.y12e{bottom:355.365000px;}
.y16d{bottom:359.130000px;}
.y26{bottom:360.750000px;}
.y23a{bottom:361.470000px;}
.y263{bottom:361.830000px;}
.y1e7{bottom:362.745000px;}
.y1ba{bottom:363.630000px;}
.yc7{bottom:368.505000px;}
.y18a{bottom:371.385000px;}
.y67{bottom:372.090000px;}
.y98{bottom:372.630000px;}
.y12c{bottom:372.645000px;}
.y102{bottom:374.250000px;}
.y16c{bottom:379.830000px;}
.y25{bottom:380.550000px;}
.y1dd{bottom:380.745000px;}
.y262{bottom:382.530000px;}
.y1b9{bottom:384.330000px;}
.y239{bottom:385.230000px;}
.yc5{bottom:385.785000px;}
.y66{bottom:392.790000px;}
.y1f3{bottom:392.970000px;}
.y97{bottom:393.330000px;}
.y101{bottom:394.950000px;}
.y1e5{bottom:398.745000px;}
.y24{bottom:400.530000px;}
.y261{bottom:403.230000px;}
.y1b8{bottom:405.030000px;}
.y205{bottom:405.765000px;}
.y17d{bottom:406.665000px;}
.y123{bottom:407.745000px;}
.y238{bottom:408.990000px;}
.yc4{bottom:410.085000px;}
.y65{bottom:413.490000px;}
.y96{bottom:414.030000px;}
.y100{bottom:415.650000px;}
.y1e4{bottom:416.745000px;}
.y23{bottom:420.330000px;}
.y16b{bottom:421.230000px;}
.y260{bottom:423.930000px;}
.y185{bottom:423.945000px;}
.y128{bottom:425.025000px;}
.y1b7{bottom:425.730000px;}
.yc2{bottom:427.365000px;}
.y209{bottom:432.585000px;}
.y237{bottom:432.930000px;}
.y64{bottom:434.010000px;}
.y95{bottom:434.730000px;}
.y1e3{bottom:434.745000px;}
.yff{bottom:436.350000px;}
.y22{bottom:440.130000px;}
.y184{bottom:441.075000px;}
.y16a{bottom:441.795000px;}
.y127{bottom:442.335000px;}
.y25f{bottom:444.315000px;}
.ybb{bottom:445.395000px;}
.y1b6{bottom:446.295000px;}
.y63{bottom:454.755000px;}
.ya8{bottom:455.115000px;}
.y94{bottom:455.475000px;}
.yfe{bottom:457.095000px;}
.y183{bottom:458.355000px;}
.y126{bottom:459.615000px;}
.y21{bottom:459.975000px;}
.y169{bottom:462.495000px;}
.yba{bottom:463.395000px;}
.y25e{bottom:465.375000px;}
.y1b5{bottom:466.995000px;}
.y1e2{bottom:469.875000px;}
.y236{bottom:471.675000px;}
.y62{bottom:475.455000px;}
.y182{bottom:475.635000px;}
.y93{bottom:476.175000px;}
.y204{bottom:476.715000px;}
.y11f{bottom:477.615000px;}
.yfd{bottom:477.795000px;}
.y20{bottom:479.775000px;}
.yb6{bottom:481.395000px;}
.y168{bottom:483.195000px;}
.y25d{bottom:486.075000px;}
.y1e1{bottom:487.155000px;}
.y1b4{bottom:487.695000px;}
.y181{bottom:492.915000px;}
.y122{bottom:494.895000px;}
.y235{bottom:495.435000px;}
.y61{bottom:496.155000px;}
.y92{bottom:496.875000px;}
.y203{bottom:497.415000px;}
.yfc{bottom:498.495000px;}
.y1f{bottom:499.755000px;}
.y167{bottom:503.895000px;}
.y25c{bottom:506.775000px;}
.y1b3{bottom:508.395000px;}
.y17c{bottom:510.915000px;}
.y121{bottom:511.995000px;}
.y60{bottom:516.855000px;}
.yb2{bottom:517.215000px;}
.y91{bottom:517.575000px;}
.y202{bottom:518.115000px;}
.yfb{bottom:519.195000px;}
.y234{bottom:519.375000px;}
.y1e{bottom:519.555000px;}
.y1d9{bottom:522.435000px;}
.y166{bottom:524.595000px;}
.y25b{bottom:527.475000px;}
.y17b{bottom:528.915000px;}
.y1b2{bottom:529.095000px;}
.y5f{bottom:537.555000px;}
.y90{bottom:538.275000px;}
.y201{bottom:538.815000px;}
.y1d{bottom:539.355000px;}
.y1dc{bottom:539.715000px;}
.yfa{bottom:539.895000px;}
.y233{bottom:543.135000px;}
.y165{bottom:545.295000px;}
.y120{bottom:546.555000px;}
.y17a{bottom:546.915000px;}
.y25a{bottom:548.175000px;}
.y1b1{bottom:549.795000px;}
.y5e{bottom:558.255000px;}
.ya7{bottom:558.975000px;}
.y1c{bottom:559.155000px;}
.yf9{bottom:560.595000px;}
.y164{bottom:565.995000px;}
.y232{bottom:566.895000px;}
.y259{bottom:568.875000px;}
.y1b0{bottom:570.495000px;}
.y1db{bottom:574.095000px;}
.y1b{bottom:578.955000px;}
.y8f{bottom:579.675000px;}
.y200{bottom:580.215000px;}
.yf8{bottom:581.295000px;}
.y11b{bottom:581.835000px;}
.y163{bottom:586.695000px;}
.y258{bottom:589.215000px;}
.y231{bottom:590.655000px;}
.y1af{bottom:591.195000px;}
.y1a{bottom:598.935000px;}
.y11e{bottom:599.115000px;}
.y5d{bottom:599.655000px;}
.y1ff{bottom:600.015000px;}
.y8e{bottom:600.375000px;}
.yf7{bottom:601.995000px;}
.y179{bottom:602.715000px;}
.y162{bottom:607.395000px;}
.y1da{bottom:608.655000px;}
.y257{bottom:610.275000px;}
.y1ae{bottom:611.895000px;}
.y1fe{bottom:617.295000px;}
.y19{bottom:618.735000px;}
.y5c{bottom:620.355000px;}
.y271{bottom:620.715000px;}
.y8d{bottom:621.075000px;}
.yf6{bottom:622.695000px;}
.y1d1{bottom:626.655000px;}
.y230{bottom:629.535000px;}
.y256{bottom:630.975000px;}
.y1ad{bottom:632.595000px;}
.y11d{bottom:633.495000px;}
.y1fd{bottom:634.575000px;}
.y18{bottom:638.535000px;}
.y5b{bottom:641.055000px;}
.y8c{bottom:641.775000px;}
.yf5{bottom:643.395000px;}
.y1d8{bottom:643.935000px;}
.y161{bottom:648.795000px;}
.y11c{bottom:650.775000px;}
.y255{bottom:651.675000px;}
.y1fc{bottom:652.215000px;}
.y1ac{bottom:653.295000px;}
.y17{bottom:658.335000px;}
.y1d7{bottom:661.215000px;}
.y5a{bottom:661.755000px;}
.y8b{bottom:662.475000px;}
.yf4{bottom:664.095000px;}
.y15c{bottom:665.895000px;}
.y1fb{bottom:668.775000px;}
.y254{bottom:672.375000px;}
.y1ab{bottom:673.995000px;}
.y22f{bottom:677.085000px;}
.y1d6{bottom:678.525000px;}
.y59{bottom:682.485000px;}
.y8a{bottom:683.205000px;}
.yf3{bottom:684.825000px;}
.y114{bottom:686.085000px;}
.y16{bottom:688.965000px;}
.y253{bottom:693.105000px;}
.y1aa{bottom:694.725000px;}
.y1d5{bottom:695.625000px;}
.y160{bottom:700.305000px;}
.y22e{bottom:701.025000px;}
.y58{bottom:703.185000px;}
.y11a{bottom:703.365000px;}
.y89{bottom:703.905000px;}
.yf2{bottom:705.525000px;}
.y1d4{bottom:712.905000px;}
.y252{bottom:713.445000px;}
.y1a9{bottom:715.425000px;}
.y15{bottom:715.785000px;}
.y15f{bottom:717.585000px;}
.y57{bottom:723.525000px;}
.y88{bottom:724.605000px;}
.y22d{bottom:724.785000px;}
.yf1{bottom:726.225000px;}
.y1d3{bottom:730.185000px;}
.y251{bottom:734.505000px;}
.y158{bottom:735.585000px;}
.y1a8{bottom:736.125000px;}
.y119{bottom:737.925000px;}
.y14{bottom:739.905000px;}
.y87{bottom:745.305000px;}
.y22c{bottom:745.665000px;}
.yf0{bottom:746.925000px;}
.y1ca{bottom:748.185000px;}
.y15b{bottom:752.865000px;}
.y250{bottom:755.205000px;}
.y1a7{bottom:756.825000px;}
.y56{bottom:758.265000px;}
.y13{bottom:760.065000px;}
.y22b{bottom:761.865000px;}
.y86{bottom:766.005000px;}
.yef{bottom:767.625000px;}
.y15a{bottom:770.145000px;}
.y118{bottom:772.305000px;}
.y24f{bottom:775.905000px;}
.y1a6{bottom:777.525000px;}
.y229{bottom:779.145000px;}
.y12{bottom:780.225000px;}
.y55{bottom:780.405000px;}
.y1d0{bottom:782.745000px;}
.y85{bottom:786.705000px;}
.y159{bottom:787.425000px;}
.yee{bottom:788.325000px;}
.y228{bottom:796.245000px;}
.y24e{bottom:796.605000px;}
.y10{bottom:796.785000px;}
.y1a5{bottom:798.225000px;}
.y1cf{bottom:799.845000px;}
.y11{bottom:800.565000px;}
.y54{bottom:802.725000px;}
.y153{bottom:805.245000px;}
.y117{bottom:806.865000px;}
.y84{bottom:807.405000px;}
.yed{bottom:809.025000px;}
.y227{bottom:813.525000px;}
.y1ce{bottom:817.125000px;}
.y24d{bottom:817.305000px;}
.yf{bottom:817.845000px;}
.y1a4{bottom:818.925000px;}
.y157{bottom:822.525000px;}
.y53{bottom:825.225000px;}
.y83{bottom:828.105000px;}
.yec{bottom:829.725000px;}
.y226{bottom:830.805000px;}
.y1cd{bottom:834.405000px;}
.ye{bottom:836.745000px;}
.y24c{bottom:838.005000px;}
.y1a3{bottom:839.625000px;}
.y156{bottom:839.805000px;}
.y113{bottom:842.145000px;}
.y224{bottom:848.085000px;}
.y52{bottom:848.805000px;}
.yeb{bottom:850.425000px;}
.y155{bottom:857.085000px;}
.y24b{bottom:858.345000px;}
.yd{bottom:859.605000px;}
.y112{bottom:860.145000px;}
.y1a2{bottom:860.325000px;}
.y1cc{bottom:868.965000px;}
.yb5{bottom:869.145000px;}
.y82{bottom:869.505000px;}
.y222{bottom:870.405000px;}
.y51{bottom:871.125000px;}
.y14b{bottom:875.085000px;}
.y110{bottom:878.145000px;}
.y24a{bottom:879.405000px;}
.y1a1{bottom:881.025000px;}
.yc{bottom:883.365000px;}
.y1cb{bottom:886.245000px;}
.y81{bottom:890.205000px;}
.yea{bottom:891.825000px;}
.y152{bottom:893.085000px;}
.y50{bottom:893.445000px;}
.y1a0{bottom:901.725000px;}
.y1c9{bottom:904.245000px;}
.y80{bottom:910.950000px;}
.y151{bottom:911.130000px;}
.ye9{bottom:912.570000px;}
.yb{bottom:915.810000px;}
.y4f{bottom:917.070000px;}
.y249{bottom:917.970000px;}
.y1c8{bottom:922.290000px;}
.y19f{bottom:922.470000px;}
.y7f{bottom:931.650000px;}
.ye8{bottom:933.270000px;}
.y10f{bottom:933.990000px;}
.y4e{bottom:939.390000px;}
.y1c7{bottom:940.290000px;}
.y248{bottom:941.910000px;}
.y150{bottom:946.410000px;}
.ya{bottom:948.210000px;}
.y221{bottom:948.930000px;}
.ya6{bottom:951.990000px;}
.y7e{bottom:952.350000px;}
.ye7{bottom:953.970000px;}
.y4d{bottom:961.890000px;}
.y19e{bottom:963.870000px;}
.y247{bottom:965.670000px;}
.y7d{bottom:973.050000px;}
.y9{bottom:974.130000px;}
.y19c{bottom:980.790000px;}
.y144{bottom:981.690000px;}
.y4c{bottom:985.470000px;}
.y35{bottom:988.740000px;}
.y37{bottom:990.180000px;}
.y8{bottom:993.390000px;}
.y7c{bottom:993.750000px;}
.y1c6{bottom:996.090000px;}
.y19d{bottom:998.070000px;}
.ye6{bottom:998.250000px;}
.y14a{bottom:998.790000px;}
.y246{bottom:1004.370000px;}
.y4b{bottom:1007.790000px;}
.y33{bottom:1011.780000px;}
.y7b{bottom:1014.450000px;}
.ye1{bottom:1015.350000px;}
.y149{bottom:1016.070000px;}
.y21f{bottom:1027.410000px;}
.y7{bottom:1027.590000px;}
.y245{bottom:1028.310000px;}
.y4a{bottom:1030.110000px;}
.ye5{bottom:1032.630000px;}
.y148{bottom:1033.350000px;}
.y7a{bottom:1035.150000px;}
.ye4{bottom:1049.910000px;}
.y13f{bottom:1051.350000px;}
.y244{bottom:1052.070000px;}
.y49{bottom:1053.690000px;}
.y79{bottom:1055.850000px;}
.y6{bottom:1062.870000px;}
.ydd{bottom:1067.910000px;}
.y143{bottom:1068.630000px;}
.y243{bottom:1075.830000px;}
.y48{bottom:1076.010000px;}
.y78{bottom:1076.550000px;}
.y19b{bottom:1085.190000px;}
.y142{bottom:1085.910000px;}
.y77{bottom:1097.250000px;}
.y47{bottom:1098.330000px;}
.y5{bottom:1101.030000px;}
.ye0{bottom:1102.290000px;}
.y141{bottom:1103.190000px;}
.y21c{bottom:1105.890000px;}
.y242{bottom:1114.710000px;}
.y76{bottom:1117.950000px;}
.ydf{bottom:1119.570000px;}
.y140{bottom:1120.290000px;}
.y21e{bottom:1132.530000px;}
.ydc{bottom:1137.570000px;}
.y46{bottom:1138.110000px;}
.y270{bottom:1138.290000px;}
.y241{bottom:1138.470000px;}
.y75{bottom:1138.650000px;}
.y4{bottom:1139.190000px;}
.y44{bottom:1164.600000px;}
.y43{bottom:1180.440000px;}
.y42{bottom:1196.280000px;}
.y39{bottom:1207.800000px;}
.y3b{bottom:1234.260000px;}
.h15{height:11.700000px;}
.h13{height:14.400000px;}
.h27{height:17.085000px;}
.h37{height:17.100000px;}
.h48{height:17.121000px;}
.h50{height:17.122500px;}
.h4c{height:17.136000px;}
.h2a{height:17.265000px;}
.h30{height:17.278500px;}
.h2f{height:17.280000px;}
.h29{height:17.301000px;}
.h31{height:17.310000px;}
.h2e{height:17.316000px;}
.h21{height:18.000000px;}
.h23{height:18.180000px;}
.h2b{height:24.285000px;}
.h18{height:24.380859px;}
.h1a{height:25.920000px;}
.hc{height:32.918906px;}
.h33{height:34.365000px;}
.h39{height:34.380000px;}
.h53{height:34.401000px;}
.h46{height:34.410000px;}
.h3f{height:34.545000px;}
.h4d{height:34.558500px;}
.h3a{height:34.560000px;}
.h3d{height:34.590000px;}
.h56{height:34.596000px;}
.h4f{height:35.099850px;}
.hd{height:35.477578px;}
.h2{height:38.405391px;}
.h14{height:38.464805px;}
.h5{height:38.469727px;}
.h1c{height:40.843828px;}
.h19{height:43.057617px;}
.h3b{height:43.215117px;}
.h59{height:43.950000px;}
.h1b{height:45.720703px;}
.h17{height:49.680000px;}
.ha{height:50.597578px;}
.h26{height:51.645000px;}
.h36{height:51.682500px;}
.h4e{height:51.690000px;}
.h41{height:51.696000px;}
.h34{height:51.825000px;}
.h22{height:52.066406px;}
.h16{height:52.817344px;}
.h4{height:53.709961px;}
.h11{height:58.621992px;}
.h10{height:58.651172px;}
.he{height:59.439023px;}
.h6{height:60.226875px;}
.h8{height:60.960938px;}
.h57{height:61.221000px;}
.h35{height:61.423863px;}
.h58{height:62.998500px;}
.h9{height:64.978594px;}
.h3{height:65.884219px;}
.h32{height:68.925000px;}
.h44{height:68.940000px;}
.h5a{height:68.962500px;}
.h45{height:68.970000px;}
.h4b{height:68.976000px;}
.h49{height:69.105000px;}
.h43{height:69.120000px;}
.h40{height:69.141000px;}
.h55{height:69.156000px;}
.h1d{height:70.628906px;}
.h1f{height:70.664062px;}
.h4a{height:71.265000px;}
.hf{height:71.324297px;}
.h24{height:72.562500px;}
.h1e{height:74.004654px;}
.h20{height:74.953125px;}
.h7{height:81.078047px;}
.h2c{height:86.385000px;}
.h25{height:93.983203px;}
.h3e{height:103.485000px;}
.h47{height:103.521000px;}
.h3c{height:103.530000px;}
.h2d{height:103.536000px;}
.h42{height:105.682500px;}
.h28{height:110.541000px;}
.h12{height:116.100000px;}
.h54{height:120.765000px;}
.h51{height:120.810000px;}
.h52{height:140.961000px;}
.h38{height:155.160000px;}
.hb{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:31.701000px;}
.w18{width:31.845000px;}
.w17{width:32.241000px;}
.w1e{width:32.565000px;}
.w1d{width:32.601000px;}
.wa{width:77.400000px;}
.w8{width:79.200000px;}
.w12{width:93.405000px;}
.w6{width:96.480000px;}
.we{width:100.065000px;}
.w4{width:135.000000px;}
.w14{width:160.189500px;}
.w16{width:162.555000px;}
.wf{width:167.209500px;}
.wb{width:167.389500px;}
.w9{width:168.660000px;}
.w1b{width:173.509500px;}
.w5{width:182.160000px;}
.w1c{width:374.640000px;}
.w19{width:387.600000px;}
.w15{width:387.960000px;}
.wd{width:425.790000px;}
.w13{width:432.450000px;}
.w11{width:432.630000px;}
.wc{width:525.870000px;}
.w10{width:526.050000px;}
.w1f{width:548.164500px;}
.w20{width:580.770000px;}
.w21{width:613.350000px;}
.w7{width:626.400000px;}
.w22{width:645.930000px;}
.w23{width:678.510000px;}
.w3{width:683.460000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x35{left:6.829500px;}
.x26{left:8.089500px;}
.xf{left:10.836000px;}
.x36{left:15.840000px;}
.x12{left:17.100000px;}
.x13{left:18.180000px;}
.x18{left:21.135000px;}
.x11{left:42.090000px;}
.x2d{left:49.669500px;}
.x30{left:65.550000px;}
.x14{left:94.500000px;}
.x25{left:99.946500px;}
.x1{left:108.036000px;}
.xe{left:112.176000px;}
.x19{left:126.216000px;}
.x2{left:134.676000px;}
.x3{left:140.076000px;}
.x1d{left:162.030000px;}
.x4c{left:165.090000px;}
.x1a{left:168.690000px;}
.x4e{left:180.210000px;}
.x7{left:183.450000px;}
.x22{left:189.030000px;}
.x1c{left:192.810000px;}
.x1b{left:196.770000px;}
.x4{left:198.210000px;}
.x46{left:219.450000px;}
.x39{left:227.548500px;}
.xb{left:233.310000px;}
.x49{left:246.450000px;}
.xc{left:257.970000px;}
.x2e{left:260.145000px;}
.xa{left:263.550000px;}
.x3b{left:264.628500px;}
.x27{left:267.345000px;}
.x37{left:273.465000px;}
.x8{left:300.493125px;}
.x9{left:304.815000px;}
.x3a{left:315.928500px;}
.x41{left:320.655000px;}
.xd{left:324.075000px;}
.x3c{left:338.608500px;}
.x48{left:350.175000px;}
.x38{left:366.720000px;}
.x1f{left:369.075000px;}
.x17{left:374.940000px;}
.x3d{left:389.578500px;}
.x43{left:420.015000px;}
.x40{left:430.455000px;}
.x6{left:434.595000px;}
.x5{left:446.475000px;}
.x15{left:454.965000px;}
.x47{left:462.135000px;}
.x45{left:518.685000px;}
.x3f{left:521.100000px;}
.x20{left:523.440000px;}
.x24{left:524.880000px;}
.x4f{left:529.560000px;}
.x4a{left:589.245000px;}
.x44{left:634.965000px;}
.x2f{left:648.120000px;}
.x10{left:668.340000px;}
.x31{left:681.090000px;}
.x4b{left:684.690000px;}
.x4d{left:687.030000px;}
.x2c{left:688.650000px;}
.x28{left:693.150000px;}
.x2b{left:699.810000px;}
.x2a{left:701.280000px;}
.x29{left:703.980000px;}
.x1e{left:706.680000px;}
.x23{left:708.480000px;}
.x32{left:713.670000px;}
.x42{left:719.610000px;}
.x3e{left:723.030000px;}
.x33{left:746.250000px;}
.x34{left:778.830000px;}
.x21{left:810.150000px;}
.x16{left:813.780000px;}
@media print{
.v3{vertical-align:-83.840000pt;}
.v2{vertical-align:-73.600000pt;}
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.784000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.166400pt;}
.ls6{letter-spacing:-0.153600pt;}
.ls27{letter-spacing:-0.064000pt;}
.ls1a{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.035840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.011520pt;}
.ls5{letter-spacing:0.020480pt;}
.ls16{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.064000pt;}
.ls25{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.133333pt;}
.ls11{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.224000pt;}
.ls14{letter-spacing:0.230933pt;}
.ls19{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.312320pt;}
.ls15{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.408960pt;}
.ls24{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.544000pt;}
.ls1d{letter-spacing:0.773120pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:1.760000pt;}
.lse{letter-spacing:8.320000pt;}
.ls22{letter-spacing:8.912640pt;}
.ls20{letter-spacing:12.160000pt;}
.ls26{letter-spacing:13.440000pt;}
.lsd{letter-spacing:30.208000pt;}
.lsf{letter-spacing:34.048000pt;}
.ls0{letter-spacing:40.340480pt;}
.lsc{letter-spacing:48.746667pt;}
.ls18{letter-spacing:175.978667pt;}
.ls21{letter-spacing:2266.645333pt;}
.ws9{word-spacing:-64.000000pt;}
.ws14{word-spacing:-53.120000pt;}
.ws13{word-spacing:-16.192000pt;}
.ws15{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws16{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.336000pt;}
.ws10{word-spacing:-13.824000pt;}
.wse{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.327360pt;}
.wsf{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.ws2{word-spacing:-11.650560pt;}
.ws12{word-spacing:-11.168000pt;}
.ws7{word-spacing:-10.560000pt;}
.ws5{word-spacing:-9.632000pt;}
.ws8{word-spacing:-9.433600pt;}
.ws3{word-spacing:-8.833280pt;}
.ws4{word-spacing:-8.624000pt;}
.ws6{word-spacing:0.000000pt;}
.ws1{word-spacing:32.337920pt;}
._4b{margin-left:-2368.744107pt;}
._5d{margin-left:-2106.046720pt;}
._7a{margin-left:-1618.752000pt;}
._75{margin-left:-1600.086613pt;}
._53{margin-left:-1550.272000pt;}
._52{margin-left:-1503.818667pt;}
._65{margin-left:-1501.725440pt;}
._41{margin-left:-1480.608000pt;}
._81{margin-left:-1386.666667pt;}
._80{margin-left:-1308.125440pt;}
._34{margin-left:-1272.960000pt;}
._61{margin-left:-1266.187307pt;}
._60{margin-left:-1257.930667pt;}
._42{margin-left:-1206.762667pt;}
._2d{margin-left:-1195.776000pt;}
._79{margin-left:-1193.288107pt;}
._66{margin-left:-1180.480000pt;}
._4d{margin-left:-1173.898667pt;}
._5a{margin-left:-1152.128000pt;}
._6b{margin-left:-1131.712000pt;}
._5b{margin-left:-1107.722667pt;}
._58{margin-left:-1085.000107pt;}
._64{margin-left:-1081.920000pt;}
._62{margin-left:-1052.298667pt;}
._76{margin-left:-1029.743147pt;}
._74{margin-left:-1019.338667pt;}
._78{margin-left:-1012.970667pt;}
._7e{margin-left:-991.882667pt;}
._5c{margin-left:-965.716053pt;}
._2e{margin-left:-942.976000pt;}
._63{margin-left:-889.920000pt;}
._7d{margin-left:-876.445440pt;}
._6e{margin-left:-862.336000pt;}
._4a{margin-left:-818.880000pt;}
._49{margin-left:-810.570667pt;}
._7c{margin-left:-792.970667pt;}
._6d{margin-left:-788.138667pt;}
._3e{margin-left:-772.608000pt;}
._3d{margin-left:-764.298667pt;}
._57{margin-left:-721.440000pt;}
._32{margin-left:-687.082667pt;}
._37{margin-left:-594.922667pt;}
._40{margin-left:-585.802667pt;}
._5f{margin-left:-566.109440pt;}
._71{margin-left:-560.618667pt;}
._72{margin-left:-557.504000pt;}
._6c{margin-left:-517.120000pt;}
._33{margin-left:-481.245440pt;}
._77{margin-left:-457.920000pt;}
._38{margin-left:-454.272000pt;}
._2f{margin-left:-424.960000pt;}
._59{margin-left:-415.232000pt;}
._3f{margin-left:-402.272000pt;}
._7f{margin-left:-401.245440pt;}
._46{margin-left:-395.584000pt;}
._45{margin-left:-386.730667pt;}
._54{margin-left:-369.002667pt;}
._69{margin-left:-348.352000pt;}
._51{margin-left:-337.600000pt;}
._55{margin-left:-331.648000pt;}
._68{margin-left:-299.498667pt;}
._82{margin-left:-285.440000pt;}
._73{margin-left:-269.952000pt;}
._31{margin-left:-267.680000pt;}
._4f{margin-left:-248.298667pt;}
._50{margin-left:-246.272000pt;}
._6f{margin-left:-234.144000pt;}
._7b{margin-left:-209.632000pt;}
._36{margin-left:-202.240000pt;}
._44{margin-left:-198.912000pt;}
._48{margin-left:-181.312000pt;}
._35{margin-left:-160.800000pt;}
._56{margin-left:-150.250667pt;}
._39{margin-left:-149.120000pt;}
._67{margin-left:-144.000000pt;}
._30{margin-left:-128.000000pt;}
._3b{margin-left:-117.120000pt;}
._70{margin-left:-96.000000pt;}
._6a{margin-left:-93.440000pt;}
._3c{margin-left:-85.312000pt;}
._47{margin-left:-67.328000pt;}
._4e{margin-left:-64.384000pt;}
._5e{margin-left:-62.208000pt;}
._3a{margin-left:-53.312000pt;}
._1f{margin-left:-5.333333pt;}
._1e{margin-left:-2.482133pt;}
._0{margin-left:-1.442560pt;}
._1{width:0.950613pt;}
._3{width:2.498347pt;}
._5{width:3.453227pt;}
._11{width:4.612693pt;}
._10{width:5.655467pt;}
._a{width:6.592427pt;}
._9{width:7.649280pt;}
._8{width:8.817920pt;}
._1a{width:9.710507pt;}
._16{width:10.624000pt;}
._15{width:11.584000pt;}
._17{width:13.120000pt;}
._d{width:14.432213pt;}
._e{width:15.390080pt;}
._4{width:16.360960pt;}
._b{width:17.423360pt;}
._c{width:18.412800pt;}
._f{width:19.774507pt;}
._7{width:20.890027pt;}
._6{width:21.938560pt;}
._1b{width:23.008000pt;}
._14{width:24.096000pt;}
._22{width:25.266773pt;}
._12{width:26.347520pt;}
._13{width:27.269973pt;}
._2a{width:28.159147pt;}
._23{width:29.056000pt;}
._1c{width:29.952000pt;}
._2b{width:30.895787pt;}
._1d{width:31.840000pt;}
._28{width:33.472000pt;}
._29{width:34.530560pt;}
._2c{width:35.706880pt;}
._26{width:37.184000pt;}
._27{width:38.526720pt;}
._20{width:40.256000pt;}
._21{width:41.341440pt;}
._24{width:43.259093pt;}
._18{width:44.288000pt;}
._19{width:45.440000pt;}
._25{width:46.528000pt;}
._43{width:95.018667pt;}
._4c{width:596.458667pt;}
._2{width:2395.205333pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs0{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y3d{bottom:-9.760000pt;}
.y38{bottom:-0.186667pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:2.080000pt;}
.y36{bottom:2.213333pt;}
.y20b{bottom:2.866667pt;}
.y22a{bottom:2.880000pt;}
.y20c{bottom:3.026667pt;}
.y225{bottom:3.040000pt;}
.yc9{bottom:3.186667pt;}
.yb9{bottom:3.200000pt;}
.yc3{bottom:3.346667pt;}
.yd9{bottom:3.360000pt;}
.y3{bottom:4.000000pt;}
.y74{bottom:4.160000pt;}
.y190{bottom:4.306667pt;}
.yb1{bottom:4.320000pt;}
.y40{bottom:4.800000pt;}
.y3c{bottom:7.200000pt;}
.y217{bottom:8.320000pt;}
.yc6{bottom:9.586667pt;}
.y147{bottom:10.880000pt;}
.y189{bottom:11.026667pt;}
.y138{bottom:13.280000pt;}
.y21a{bottom:13.440000pt;}
.y73{bottom:13.760000pt;}
.yc1{bottom:14.066667pt;}
.y272{bottom:14.080000pt;}
.y178{bottom:14.240000pt;}
.yb0{bottom:14.400000pt;}
.ya5{bottom:14.560000pt;}
.y1f2{bottom:14.720000pt;}
.y208{bottom:14.866667pt;}
.yb4{bottom:15.040000pt;}
.y1c5{bottom:18.240000pt;}
.y20a{bottom:18.266667pt;}
.y12d{bottom:18.546667pt;}
.yb7{bottom:18.560000pt;}
.y15e{bottom:18.586667pt;}
.ycd{bottom:18.706667pt;}
.ye3{bottom:18.720000pt;}
.y20e{bottom:19.186667pt;}
.y18f{bottom:19.666667pt;}
.y14f{bottom:19.680000pt;}
.y45{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y206{bottom:22.546667pt;}
.y216{bottom:23.680000pt;}
.y21b{bottom:24.160000pt;}
.y180{bottom:26.226667pt;}
.y146{bottom:26.240000pt;}
.y212{bottom:26.266667pt;}
.y188{bottom:26.386667pt;}
.yd5{bottom:26.400000pt;}
.y210{bottom:26.706667pt;}
.y220{bottom:26.720000pt;}
.y213{bottom:26.746667pt;}
.y21d{bottom:27.040000pt;}
.y219{bottom:28.640000pt;}
.yc0{bottom:29.426667pt;}
.y207{bottom:30.226667pt;}
.y41{bottom:31.360000pt;}
.y12b{bottom:33.906667pt;}
.yb8{bottom:33.920000pt;}
.y13b{bottom:33.946667pt;}
.y111{bottom:33.960000pt;}
.ycc{bottom:34.066667pt;}
.ye2{bottom:34.080000pt;}
.y125{bottom:34.106667pt;}
.y18e{bottom:35.026667pt;}
.y14e{bottom:35.080000pt;}
.y3a{bottom:37.280000pt;}
.y1{bottom:37.920000pt;}
.y215{bottom:39.040000pt;}
.y1eb{bottom:41.586667pt;}
.y145{bottom:41.600000pt;}
.y17f{bottom:41.626667pt;}
.y187{bottom:41.746667pt;}
.yd4{bottom:41.760000pt;}
.y1e0{bottom:42.866667pt;}
.y218{bottom:44.000000pt;}
.ybf{bottom:44.786667pt;}
.y12a{bottom:49.266667pt;}
.yde{bottom:49.280000pt;}
.y15d{bottom:49.306667pt;}
.y223{bottom:49.320000pt;}
.ycb{bottom:49.426667pt;}
.y154{bottom:49.440000pt;}
.y124{bottom:49.466667pt;}
.y18d{bottom:50.386667pt;}
.y14d{bottom:50.440000pt;}
.y3e{bottom:56.000000pt;}
.y1ea{bottom:56.946667pt;}
.y17e{bottom:56.986667pt;}
.yd3{bottom:57.146667pt;}
.y1df{bottom:58.266667pt;}
.ybe{bottom:59.986667pt;}
.y116{bottom:64.640000pt;}
.y1d2{bottom:64.666667pt;}
.y14c{bottom:65.640000pt;}
.y1e9{bottom:72.306667pt;}
.y1de{bottom:73.626667pt;}
.ybd{bottom:75.346667pt;}
.y115{bottom:80.000000pt;}
.y34{bottom:89.093333pt;}
.y32{bottom:98.720000pt;}
.y26f{bottom:100.800000pt;}
.y31{bottom:102.080000pt;}
.y214{bottom:102.400000pt;}
.y1f1{bottom:106.560000pt;}
.y13e{bottom:106.880000pt;}
.y1fa{bottom:110.080000pt;}
.ya4{bottom:110.400000pt;}
.y19a{bottom:110.720000pt;}
.ydb{bottom:110.880000pt;}
.y10e{bottom:111.840000pt;}
.y30{bottom:115.520000pt;}
.y177{bottom:116.800000pt;}
.yaf{bottom:117.760000pt;}
.y26e{bottom:119.200000pt;}
.y1c4{bottom:120.800000pt;}
.y1ef{bottom:121.600000pt;}
.y13d{bottom:122.880000pt;}
.y137{bottom:125.280000pt;}
.y197{bottom:126.720000pt;}
.yd2{bottom:126.880000pt;}
.y72{bottom:128.320000pt;}
.y1f9{bottom:128.480000pt;}
.ya3{bottom:128.800000pt;}
.y10d{bottom:130.240000pt;}
.y176{bottom:135.200000pt;}
.yae{bottom:136.160000pt;}
.y26d{bottom:137.600000pt;}
.y13c{bottom:138.880000pt;}
.y1c3{bottom:139.200000pt;}
.y2f{bottom:142.240000pt;}
.y136{bottom:143.680000pt;}
.y240{bottom:146.400000pt;}
.y71{bottom:146.720000pt;}
.y1f8{bottom:146.880000pt;}
.ya2{bottom:147.200000pt;}
.y10c{bottom:148.640000pt;}
.y1f0{bottom:152.320000pt;}
.y175{bottom:153.600000pt;}
.yad{bottom:154.560000pt;}
.y13a{bottom:154.880000pt;}
.y26c{bottom:156.000000pt;}
.y199{bottom:157.440000pt;}
.yda{bottom:157.600000pt;}
.y2e{bottom:160.320000pt;}
.y135{bottom:162.080000pt;}
.y70{bottom:165.120000pt;}
.y1f7{bottom:165.280000pt;}
.ya1{bottom:165.600000pt;}
.y211{bottom:166.880000pt;}
.y10b{bottom:167.040000pt;}
.y174{bottom:172.000000pt;}
.yac{bottom:172.320000pt;}
.y198{bottom:172.800000pt;}
.yd8{bottom:172.960000pt;}
.y26b{bottom:174.400000pt;}
.y1c2{bottom:176.000000pt;}
.y2d{bottom:178.240000pt;}
.y134{bottom:180.480000pt;}
.y23f{bottom:180.960000pt;}
.y6f{bottom:183.546667pt;}
.y1f6{bottom:183.706667pt;}
.y1e8{bottom:183.720000pt;}
.ya0{bottom:184.026667pt;}
.y10a{bottom:185.466667pt;}
.yab{bottom:187.706667pt;}
.yd7{bottom:188.360000pt;}
.y194{bottom:188.840000pt;}
.y173{bottom:190.426667pt;}
.y26a{bottom:192.826667pt;}
.y1c1{bottom:194.426667pt;}
.y2c{bottom:196.346667pt;}
.y133{bottom:198.906667pt;}
.y6e{bottom:201.946667pt;}
.y1f5{bottom:202.106667pt;}
.y9f{bottom:202.426667pt;}
.yaa{bottom:203.706667pt;}
.yd6{bottom:203.720000pt;}
.y109{bottom:203.866667pt;}
.y196{bottom:204.040000pt;}
.y139{bottom:204.506667pt;}
.y172{bottom:208.826667pt;}
.y269{bottom:211.226667pt;}
.y1c0{bottom:212.826667pt;}
.y1ee{bottom:214.440000pt;}
.y2b{bottom:215.706667pt;}
.y132{bottom:217.306667pt;}
.ya9{bottom:218.106667pt;}
.y195{bottom:219.400000pt;}
.yca{bottom:219.560000pt;}
.y6d{bottom:220.346667pt;}
.y1f4{bottom:220.506667pt;}
.y9e{bottom:220.826667pt;}
.y108{bottom:222.266667pt;}
.y23e{bottom:223.386667pt;}
.y268{bottom:229.626667pt;}
.y1ed{bottom:229.640000pt;}
.y1bf{bottom:231.226667pt;}
.y2a{bottom:234.906667pt;}
.yd1{bottom:234.920000pt;}
.y18c{bottom:235.400000pt;}
.y131{bottom:235.706667pt;}
.y20f{bottom:236.680000pt;}
.y6c{bottom:238.746667pt;}
.y9d{bottom:239.226667pt;}
.y107{bottom:240.666667pt;}
.y23d{bottom:244.506667pt;}
.y171{bottom:245.626667pt;}
.y267{bottom:248.026667pt;}
.y1be{bottom:249.626667pt;}
.yd0{bottom:250.280000pt;}
.y193{bottom:251.400000pt;}
.y29{bottom:252.666667pt;}
.y130{bottom:253.786667pt;}
.y6b{bottom:257.146667pt;}
.y9c{bottom:257.626667pt;}
.y106{bottom:259.066667pt;}
.y1ec{bottom:260.360000pt;}
.y170{bottom:264.026667pt;}
.y23c{bottom:265.626667pt;}
.ycf{bottom:265.640000pt;}
.y266{bottom:266.426667pt;}
.y192{bottom:267.400000pt;}
.y1bd{bottom:268.026667pt;}
.y12f{bottom:269.160000pt;}
.y6a{bottom:275.546667pt;}
.y9b{bottom:276.026667pt;}
.y105{bottom:277.466667pt;}
.y28{bottom:279.866667pt;}
.yce{bottom:281.000000pt;}
.y16f{bottom:282.426667pt;}
.y191{bottom:283.400000pt;}
.y265{bottom:284.506667pt;}
.y1bc{bottom:286.426667pt;}
.y1e6{bottom:291.720000pt;}
.y69{bottom:293.946667pt;}
.y9a{bottom:294.426667pt;}
.y104{bottom:295.866667pt;}
.ybc{bottom:297.000000pt;}
.y186{bottom:299.400000pt;}
.y23b{bottom:300.186667pt;}
.y129{bottom:300.520000pt;}
.y16e{bottom:300.826667pt;}
.y27{bottom:303.066667pt;}
.y264{bottom:303.226667pt;}
.y1bb{bottom:304.826667pt;}
.y20d{bottom:306.280000pt;}
.y68{bottom:312.346667pt;}
.yc8{bottom:312.360000pt;}
.yb3{bottom:312.506667pt;}
.y99{bottom:312.826667pt;}
.y103{bottom:314.266667pt;}
.y18b{bottom:314.760000pt;}
.y12e{bottom:315.880000pt;}
.y16d{bottom:319.226667pt;}
.y26{bottom:320.666667pt;}
.y23a{bottom:321.306667pt;}
.y263{bottom:321.626667pt;}
.y1e7{bottom:322.440000pt;}
.y1ba{bottom:323.226667pt;}
.yc7{bottom:327.560000pt;}
.y18a{bottom:330.120000pt;}
.y67{bottom:330.746667pt;}
.y98{bottom:331.226667pt;}
.y12c{bottom:331.240000pt;}
.y102{bottom:332.666667pt;}
.y16c{bottom:337.626667pt;}
.y25{bottom:338.266667pt;}
.y1dd{bottom:338.440000pt;}
.y262{bottom:340.026667pt;}
.y1b9{bottom:341.626667pt;}
.y239{bottom:342.426667pt;}
.yc5{bottom:342.920000pt;}
.y66{bottom:349.146667pt;}
.y1f3{bottom:349.306667pt;}
.y97{bottom:349.626667pt;}
.y101{bottom:351.066667pt;}
.y1e5{bottom:354.440000pt;}
.y24{bottom:356.026667pt;}
.y261{bottom:358.426667pt;}
.y1b8{bottom:360.026667pt;}
.y205{bottom:360.680000pt;}
.y17d{bottom:361.480000pt;}
.y123{bottom:362.440000pt;}
.y238{bottom:363.546667pt;}
.yc4{bottom:364.520000pt;}
.y65{bottom:367.546667pt;}
.y96{bottom:368.026667pt;}
.y100{bottom:369.466667pt;}
.y1e4{bottom:370.440000pt;}
.y23{bottom:373.626667pt;}
.y16b{bottom:374.426667pt;}
.y260{bottom:376.826667pt;}
.y185{bottom:376.840000pt;}
.y128{bottom:377.800000pt;}
.y1b7{bottom:378.426667pt;}
.yc2{bottom:379.880000pt;}
.y209{bottom:384.520000pt;}
.y237{bottom:384.826667pt;}
.y64{bottom:385.786667pt;}
.y95{bottom:386.426667pt;}
.y1e3{bottom:386.440000pt;}
.yff{bottom:387.866667pt;}
.y22{bottom:391.226667pt;}
.y184{bottom:392.066667pt;}
.y16a{bottom:392.706667pt;}
.y127{bottom:393.186667pt;}
.y25f{bottom:394.946667pt;}
.ybb{bottom:395.906667pt;}
.y1b6{bottom:396.706667pt;}
.y63{bottom:404.226667pt;}
.ya8{bottom:404.546667pt;}
.y94{bottom:404.866667pt;}
.yfe{bottom:406.306667pt;}
.y183{bottom:407.426667pt;}
.y126{bottom:408.546667pt;}
.y21{bottom:408.866667pt;}
.y169{bottom:411.106667pt;}
.yba{bottom:411.906667pt;}
.y25e{bottom:413.666667pt;}
.y1b5{bottom:415.106667pt;}
.y1e2{bottom:417.666667pt;}
.y236{bottom:419.266667pt;}
.y62{bottom:422.626667pt;}
.y182{bottom:422.786667pt;}
.y93{bottom:423.266667pt;}
.y204{bottom:423.746667pt;}
.y11f{bottom:424.546667pt;}
.yfd{bottom:424.706667pt;}
.y20{bottom:426.466667pt;}
.yb6{bottom:427.906667pt;}
.y168{bottom:429.506667pt;}
.y25d{bottom:432.066667pt;}
.y1e1{bottom:433.026667pt;}
.y1b4{bottom:433.506667pt;}
.y181{bottom:438.146667pt;}
.y122{bottom:439.906667pt;}
.y235{bottom:440.386667pt;}
.y61{bottom:441.026667pt;}
.y92{bottom:441.666667pt;}
.y203{bottom:442.146667pt;}
.yfc{bottom:443.106667pt;}
.y1f{bottom:444.226667pt;}
.y167{bottom:447.906667pt;}
.y25c{bottom:450.466667pt;}
.y1b3{bottom:451.906667pt;}
.y17c{bottom:454.146667pt;}
.y121{bottom:455.106667pt;}
.y60{bottom:459.426667pt;}
.yb2{bottom:459.746667pt;}
.y91{bottom:460.066667pt;}
.y202{bottom:460.546667pt;}
.yfb{bottom:461.506667pt;}
.y234{bottom:461.666667pt;}
.y1e{bottom:461.826667pt;}
.y1d9{bottom:464.386667pt;}
.y166{bottom:466.306667pt;}
.y25b{bottom:468.866667pt;}
.y17b{bottom:470.146667pt;}
.y1b2{bottom:470.306667pt;}
.y5f{bottom:477.826667pt;}
.y90{bottom:478.466667pt;}
.y201{bottom:478.946667pt;}
.y1d{bottom:479.426667pt;}
.y1dc{bottom:479.746667pt;}
.yfa{bottom:479.906667pt;}
.y233{bottom:482.786667pt;}
.y165{bottom:484.706667pt;}
.y120{bottom:485.826667pt;}
.y17a{bottom:486.146667pt;}
.y25a{bottom:487.266667pt;}
.y1b1{bottom:488.706667pt;}
.y5e{bottom:496.226667pt;}
.ya7{bottom:496.866667pt;}
.y1c{bottom:497.026667pt;}
.yf9{bottom:498.306667pt;}
.y164{bottom:503.106667pt;}
.y232{bottom:503.906667pt;}
.y259{bottom:505.666667pt;}
.y1b0{bottom:507.106667pt;}
.y1db{bottom:510.306667pt;}
.y1b{bottom:514.626667pt;}
.y8f{bottom:515.266667pt;}
.y200{bottom:515.746667pt;}
.yf8{bottom:516.706667pt;}
.y11b{bottom:517.186667pt;}
.y163{bottom:521.506667pt;}
.y258{bottom:523.746667pt;}
.y231{bottom:525.026667pt;}
.y1af{bottom:525.506667pt;}
.y1a{bottom:532.386667pt;}
.y11e{bottom:532.546667pt;}
.y5d{bottom:533.026667pt;}
.y1ff{bottom:533.346667pt;}
.y8e{bottom:533.666667pt;}
.yf7{bottom:535.106667pt;}
.y179{bottom:535.746667pt;}
.y162{bottom:539.906667pt;}
.y1da{bottom:541.026667pt;}
.y257{bottom:542.466667pt;}
.y1ae{bottom:543.906667pt;}
.y1fe{bottom:548.706667pt;}
.y19{bottom:549.986667pt;}
.y5c{bottom:551.426667pt;}
.y271{bottom:551.746667pt;}
.y8d{bottom:552.066667pt;}
.yf6{bottom:553.506667pt;}
.y1d1{bottom:557.026667pt;}
.y230{bottom:559.586667pt;}
.y256{bottom:560.866667pt;}
.y1ad{bottom:562.306667pt;}
.y11d{bottom:563.106667pt;}
.y1fd{bottom:564.066667pt;}
.y18{bottom:567.586667pt;}
.y5b{bottom:569.826667pt;}
.y8c{bottom:570.466667pt;}
.yf5{bottom:571.906667pt;}
.y1d8{bottom:572.386667pt;}
.y161{bottom:576.706667pt;}
.y11c{bottom:578.466667pt;}
.y255{bottom:579.266667pt;}
.y1fc{bottom:579.746667pt;}
.y1ac{bottom:580.706667pt;}
.y17{bottom:585.186667pt;}
.y1d7{bottom:587.746667pt;}
.y5a{bottom:588.226667pt;}
.y8b{bottom:588.866667pt;}
.yf4{bottom:590.306667pt;}
.y15c{bottom:591.906667pt;}
.y1fb{bottom:594.466667pt;}
.y254{bottom:597.666667pt;}
.y1ab{bottom:599.106667pt;}
.y22f{bottom:601.853333pt;}
.y1d6{bottom:603.133333pt;}
.y59{bottom:606.653333pt;}
.y8a{bottom:607.293333pt;}
.yf3{bottom:608.733333pt;}
.y114{bottom:609.853333pt;}
.y16{bottom:612.413333pt;}
.y253{bottom:616.093333pt;}
.y1aa{bottom:617.533333pt;}
.y1d5{bottom:618.333333pt;}
.y160{bottom:622.493333pt;}
.y22e{bottom:623.133333pt;}
.y58{bottom:625.053333pt;}
.y11a{bottom:625.213333pt;}
.y89{bottom:625.693333pt;}
.yf2{bottom:627.133333pt;}
.y1d4{bottom:633.693333pt;}
.y252{bottom:634.173333pt;}
.y1a9{bottom:635.933333pt;}
.y15{bottom:636.253333pt;}
.y15f{bottom:637.853333pt;}
.y57{bottom:643.133333pt;}
.y88{bottom:644.093333pt;}
.y22d{bottom:644.253333pt;}
.yf1{bottom:645.533333pt;}
.y1d3{bottom:649.053333pt;}
.y251{bottom:652.893333pt;}
.y158{bottom:653.853333pt;}
.y1a8{bottom:654.333333pt;}
.y119{bottom:655.933333pt;}
.y14{bottom:657.693333pt;}
.y87{bottom:662.493333pt;}
.y22c{bottom:662.813333pt;}
.yf0{bottom:663.933333pt;}
.y1ca{bottom:665.053333pt;}
.y15b{bottom:669.213333pt;}
.y250{bottom:671.293333pt;}
.y1a7{bottom:672.733333pt;}
.y56{bottom:674.013333pt;}
.y13{bottom:675.613333pt;}
.y22b{bottom:677.213333pt;}
.y86{bottom:680.893333pt;}
.yef{bottom:682.333333pt;}
.y15a{bottom:684.573333pt;}
.y118{bottom:686.493333pt;}
.y24f{bottom:689.693333pt;}
.y1a6{bottom:691.133333pt;}
.y229{bottom:692.573333pt;}
.y12{bottom:693.533333pt;}
.y55{bottom:693.693333pt;}
.y1d0{bottom:695.773333pt;}
.y85{bottom:699.293333pt;}
.y159{bottom:699.933333pt;}
.yee{bottom:700.733333pt;}
.y228{bottom:707.773333pt;}
.y24e{bottom:708.093333pt;}
.y10{bottom:708.253333pt;}
.y1a5{bottom:709.533333pt;}
.y1cf{bottom:710.973333pt;}
.y11{bottom:711.613333pt;}
.y54{bottom:713.533333pt;}
.y153{bottom:715.773333pt;}
.y117{bottom:717.213333pt;}
.y84{bottom:717.693333pt;}
.yed{bottom:719.133333pt;}
.y227{bottom:723.133333pt;}
.y1ce{bottom:726.333333pt;}
.y24d{bottom:726.493333pt;}
.yf{bottom:726.973333pt;}
.y1a4{bottom:727.933333pt;}
.y157{bottom:731.133333pt;}
.y53{bottom:733.533333pt;}
.y83{bottom:736.093333pt;}
.yec{bottom:737.533333pt;}
.y226{bottom:738.493333pt;}
.y1cd{bottom:741.693333pt;}
.ye{bottom:743.773333pt;}
.y24c{bottom:744.893333pt;}
.y1a3{bottom:746.333333pt;}
.y156{bottom:746.493333pt;}
.y113{bottom:748.573333pt;}
.y224{bottom:753.853333pt;}
.y52{bottom:754.493333pt;}
.yeb{bottom:755.933333pt;}
.y155{bottom:761.853333pt;}
.y24b{bottom:762.973333pt;}
.yd{bottom:764.093333pt;}
.y112{bottom:764.573333pt;}
.y1a2{bottom:764.733333pt;}
.y1cc{bottom:772.413333pt;}
.yb5{bottom:772.573333pt;}
.y82{bottom:772.893333pt;}
.y222{bottom:773.693333pt;}
.y51{bottom:774.333333pt;}
.y14b{bottom:777.853333pt;}
.y110{bottom:780.573333pt;}
.y24a{bottom:781.693333pt;}
.y1a1{bottom:783.133333pt;}
.yc{bottom:785.213333pt;}
.y1cb{bottom:787.773333pt;}
.y81{bottom:791.293333pt;}
.yea{bottom:792.733333pt;}
.y152{bottom:793.853333pt;}
.y50{bottom:794.173333pt;}
.y1a0{bottom:801.533333pt;}
.y1c9{bottom:803.773333pt;}
.y80{bottom:809.733333pt;}
.y151{bottom:809.893333pt;}
.ye9{bottom:811.173333pt;}
.yb{bottom:814.053333pt;}
.y4f{bottom:815.173333pt;}
.y249{bottom:815.973333pt;}
.y1c8{bottom:819.813333pt;}
.y19f{bottom:819.973333pt;}
.y7f{bottom:828.133333pt;}
.ye8{bottom:829.573333pt;}
.y10f{bottom:830.213333pt;}
.y4e{bottom:835.013333pt;}
.y1c7{bottom:835.813333pt;}
.y248{bottom:837.253333pt;}
.y150{bottom:841.253333pt;}
.ya{bottom:842.853333pt;}
.y221{bottom:843.493333pt;}
.ya6{bottom:846.213333pt;}
.y7e{bottom:846.533333pt;}
.ye7{bottom:847.973333pt;}
.y4d{bottom:855.013333pt;}
.y19e{bottom:856.773333pt;}
.y247{bottom:858.373333pt;}
.y7d{bottom:864.933333pt;}
.y9{bottom:865.893333pt;}
.y19c{bottom:871.813333pt;}
.y144{bottom:872.613333pt;}
.y4c{bottom:875.973333pt;}
.y35{bottom:878.880000pt;}
.y37{bottom:880.160000pt;}
.y8{bottom:883.013333pt;}
.y7c{bottom:883.333333pt;}
.y1c6{bottom:885.413333pt;}
.y19d{bottom:887.173333pt;}
.ye6{bottom:887.333333pt;}
.y14a{bottom:887.813333pt;}
.y246{bottom:892.773333pt;}
.y4b{bottom:895.813333pt;}
.y33{bottom:899.360000pt;}
.y7b{bottom:901.733333pt;}
.ye1{bottom:902.533333pt;}
.y149{bottom:903.173333pt;}
.y21f{bottom:913.253333pt;}
.y7{bottom:913.413333pt;}
.y245{bottom:914.053333pt;}
.y4a{bottom:915.653333pt;}
.ye5{bottom:917.893333pt;}
.y148{bottom:918.533333pt;}
.y7a{bottom:920.133333pt;}
.ye4{bottom:933.253333pt;}
.y13f{bottom:934.533333pt;}
.y244{bottom:935.173333pt;}
.y49{bottom:936.613333pt;}
.y79{bottom:938.533333pt;}
.y6{bottom:944.773333pt;}
.ydd{bottom:949.253333pt;}
.y143{bottom:949.893333pt;}
.y243{bottom:956.293333pt;}
.y48{bottom:956.453333pt;}
.y78{bottom:956.933333pt;}
.y19b{bottom:964.613333pt;}
.y142{bottom:965.253333pt;}
.y77{bottom:975.333333pt;}
.y47{bottom:976.293333pt;}
.y5{bottom:978.693333pt;}
.ye0{bottom:979.813333pt;}
.y141{bottom:980.613333pt;}
.y21c{bottom:983.013333pt;}
.y242{bottom:990.853333pt;}
.y76{bottom:993.733333pt;}
.ydf{bottom:995.173333pt;}
.y140{bottom:995.813333pt;}
.y21e{bottom:1006.693333pt;}
.ydc{bottom:1011.173333pt;}
.y46{bottom:1011.653333pt;}
.y270{bottom:1011.813333pt;}
.y241{bottom:1011.973333pt;}
.y75{bottom:1012.133333pt;}
.y4{bottom:1012.613333pt;}
.y44{bottom:1035.200000pt;}
.y43{bottom:1049.280000pt;}
.y42{bottom:1063.360000pt;}
.y39{bottom:1073.600000pt;}
.y3b{bottom:1097.120000pt;}
.h15{height:10.400000pt;}
.h13{height:12.800000pt;}
.h27{height:15.186667pt;}
.h37{height:15.200000pt;}
.h48{height:15.218667pt;}
.h50{height:15.220000pt;}
.h4c{height:15.232000pt;}
.h2a{height:15.346667pt;}
.h30{height:15.358667pt;}
.h2f{height:15.360000pt;}
.h29{height:15.378667pt;}
.h31{height:15.386667pt;}
.h2e{height:15.392000pt;}
.h21{height:16.000000pt;}
.h23{height:16.160000pt;}
.h2b{height:21.586667pt;}
.h18{height:21.671875pt;}
.h1a{height:23.040000pt;}
.hc{height:29.261250pt;}
.h33{height:30.546667pt;}
.h39{height:30.560000pt;}
.h53{height:30.578667pt;}
.h46{height:30.586667pt;}
.h3f{height:30.706667pt;}
.h4d{height:30.718667pt;}
.h3a{height:30.720000pt;}
.h3d{height:30.746667pt;}
.h56{height:30.752000pt;}
.h4f{height:31.199867pt;}
.hd{height:31.535625pt;}
.h2{height:34.138125pt;}
.h14{height:34.190937pt;}
.h5{height:34.195312pt;}
.h1c{height:36.305625pt;}
.h19{height:38.273438pt;}
.h3b{height:38.413438pt;}
.h59{height:39.066667pt;}
.h1b{height:40.640625pt;}
.h17{height:44.160000pt;}
.ha{height:44.975625pt;}
.h26{height:45.906667pt;}
.h36{height:45.940000pt;}
.h4e{height:45.946667pt;}
.h41{height:45.952000pt;}
.h34{height:46.066667pt;}
.h22{height:46.281250pt;}
.h16{height:46.948750pt;}
.h4{height:47.742188pt;}
.h11{height:52.108438pt;}
.h10{height:52.134375pt;}
.he{height:52.834688pt;}
.h6{height:53.535000pt;}
.h8{height:54.187500pt;}
.h57{height:54.418667pt;}
.h35{height:54.598989pt;}
.h58{height:55.998667pt;}
.h9{height:57.758750pt;}
.h3{height:58.563750pt;}
.h32{height:61.266667pt;}
.h44{height:61.280000pt;}
.h5a{height:61.300000pt;}
.h45{height:61.306667pt;}
.h4b{height:61.312000pt;}
.h49{height:61.426667pt;}
.h43{height:61.440000pt;}
.h40{height:61.458667pt;}
.h55{height:61.472000pt;}
.h1d{height:62.781250pt;}
.h1f{height:62.812500pt;}
.h4a{height:63.346667pt;}
.hf{height:63.399375pt;}
.h24{height:64.500000pt;}
.h1e{height:65.781915pt;}
.h20{height:66.625000pt;}
.h7{height:72.069375pt;}
.h2c{height:76.786667pt;}
.h25{height:83.540625pt;}
.h3e{height:91.986667pt;}
.h47{height:92.018667pt;}
.h3c{height:92.026667pt;}
.h2d{height:92.032000pt;}
.h42{height:93.940000pt;}
.h28{height:98.258667pt;}
.h12{height:103.200000pt;}
.h54{height:107.346667pt;}
.h51{height:107.386667pt;}
.h52{height:125.298667pt;}
.h38{height:137.920000pt;}
.hb{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:28.178667pt;}
.w18{width:28.306667pt;}
.w17{width:28.658667pt;}
.w1e{width:28.946667pt;}
.w1d{width:28.978667pt;}
.wa{width:68.800000pt;}
.w8{width:70.400000pt;}
.w12{width:83.026667pt;}
.w6{width:85.760000pt;}
.we{width:88.946667pt;}
.w4{width:120.000000pt;}
.w14{width:142.390667pt;}
.w16{width:144.493333pt;}
.wf{width:148.630667pt;}
.wb{width:148.790667pt;}
.w9{width:149.920000pt;}
.w1b{width:154.230667pt;}
.w5{width:161.920000pt;}
.w1c{width:333.013333pt;}
.w19{width:344.533333pt;}
.w15{width:344.853333pt;}
.wd{width:378.480000pt;}
.w13{width:384.400000pt;}
.w11{width:384.560000pt;}
.wc{width:467.440000pt;}
.w10{width:467.600000pt;}
.w1f{width:487.257333pt;}
.w20{width:516.240000pt;}
.w21{width:545.200000pt;}
.w7{width:556.800000pt;}
.w22{width:574.160000pt;}
.w23{width:603.120000pt;}
.w3{width:607.520000pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x35{left:6.070667pt;}
.x26{left:7.190667pt;}
.xf{left:9.632000pt;}
.x36{left:14.080000pt;}
.x12{left:15.200000pt;}
.x13{left:16.160000pt;}
.x18{left:18.786667pt;}
.x11{left:37.413333pt;}
.x2d{left:44.150667pt;}
.x30{left:58.266667pt;}
.x14{left:84.000000pt;}
.x25{left:88.841333pt;}
.x1{left:96.032000pt;}
.xe{left:99.712000pt;}
.x19{left:112.192000pt;}
.x2{left:119.712000pt;}
.x3{left:124.512000pt;}
.x1d{left:144.026667pt;}
.x4c{left:146.746667pt;}
.x1a{left:149.946667pt;}
.x4e{left:160.186667pt;}
.x7{left:163.066667pt;}
.x22{left:168.026667pt;}
.x1c{left:171.386667pt;}
.x1b{left:174.906667pt;}
.x4{left:176.186667pt;}
.x46{left:195.066667pt;}
.x39{left:202.265333pt;}
.xb{left:207.386667pt;}
.x49{left:219.066667pt;}
.xc{left:229.306667pt;}
.x2e{left:231.240000pt;}
.xa{left:234.266667pt;}
.x3b{left:235.225333pt;}
.x27{left:237.640000pt;}
.x37{left:243.080000pt;}
.x8{left:267.105000pt;}
.x9{left:270.946667pt;}
.x3a{left:280.825333pt;}
.x41{left:285.026667pt;}
.xd{left:288.066667pt;}
.x3c{left:300.985333pt;}
.x48{left:311.266667pt;}
.x38{left:325.973333pt;}
.x1f{left:328.066667pt;}
.x17{left:333.280000pt;}
.x3d{left:346.292000pt;}
.x43{left:373.346667pt;}
.x40{left:382.626667pt;}
.x6{left:386.306667pt;}
.x5{left:396.866667pt;}
.x15{left:404.413333pt;}
.x47{left:410.786667pt;}
.x45{left:461.053333pt;}
.x3f{left:463.200000pt;}
.x20{left:465.280000pt;}
.x24{left:466.560000pt;}
.x4f{left:470.720000pt;}
.x4a{left:523.773333pt;}
.x44{left:564.413333pt;}
.x2f{left:576.106667pt;}
.x10{left:594.080000pt;}
.x31{left:605.413333pt;}
.x4b{left:608.613333pt;}
.x4d{left:610.693333pt;}
.x2c{left:612.133333pt;}
.x28{left:616.133333pt;}
.x2b{left:622.053333pt;}
.x2a{left:623.360000pt;}
.x29{left:625.760000pt;}
.x1e{left:628.160000pt;}
.x23{left:629.760000pt;}
.x32{left:634.373333pt;}
.x42{left:639.653333pt;}
.x3e{left:642.693333pt;}
.x33{left:663.333333pt;}
.x34{left:692.293333pt;}
.x21{left:720.133333pt;}
.x16{left:723.360000pt;}
}




    .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; }
  