
    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_f82c9549ddf28580d5d0c363.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_98823a0290747f2eedb50926.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.995000;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_3a1f7825c1018f343fcf5a1b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962000;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_a59082be891c3060d1f3dd40.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.943000;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_acd0d6631e070a97ba60de44.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.995000;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_e311c7b6faa7599d0fa06ac9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_005631a392801f283d20819c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692383;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_4de60c60255f4c663e6bf1b8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.780762;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_05590e2b45c77d9796ef7881.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.987305;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_1d36ef0cae3a621d93836037.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.980469;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_f55ca8c4513edd8611ba14da.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.681641;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_c000100c7ebefef464c2913c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.697266;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_ad7d80b1e13dbf7fd16539ca.woff2')format("woff");}.fff{font-family:fff;line-height:0.938000;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_68e783bdb82108b46a531671.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.995000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:16.558353px;}
.ls6{letter-spacing:31.768879px;}
.ls2{letter-spacing:36.682879px;}
.ls4{letter-spacing:37.204879px;}
.ls7{letter-spacing:39.040879px;}
.ls3{letter-spacing:44.410879px;}
.ls5{letter-spacing:47.602879px;}
.ls8{letter-spacing:110.954698px;}
.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;}
}
.ws1{word-spacing:-427.176183px;}
.ws89{word-spacing:-143.681998px;}
.ws13{word-spacing:-74.361300px;}
.ws2{word-spacing:-62.764500px;}
.ws4{word-spacing:-48.011882px;}
.ws5{word-spacing:-47.820600px;}
.ws3a{word-spacing:-38.029123px;}
.ws12{word-spacing:-37.329373px;}
.ws11{word-spacing:-37.180650px;}
.wsc{word-spacing:-32.727300px;}
.ws7f{word-spacing:-31.256870px;}
.ws48{word-spacing:-29.887800px;}
.ws64{word-spacing:-26.574568px;}
.ws79{word-spacing:-25.330930px;}
.ws77{word-spacing:-24.741839px;}
.ws73{word-spacing:-23.563656px;}
.ws75{word-spacing:-23.432747px;}
.ws71{word-spacing:-22.843655px;}
.ws8e{word-spacing:-22.581837px;}
.ws3{word-spacing:-22.416000px;}
.ws80{word-spacing:-22.254564px;}
.ws34{word-spacing:-21.730927px;}
.ws39{word-spacing:-21.665473px;}
.ws17{word-spacing:-21.605377px;}
.ws37{word-spacing:-21.272745px;}
.ws50{word-spacing:-21.141836px;}
.ws38{word-spacing:-20.683654px;}
.ws87{word-spacing:-20.356381px;}
.ws35{word-spacing:-19.374562px;}
.ws8{word-spacing:-19.309107px;}
.ws32{word-spacing:-19.047289px;}
.ws16{word-spacing:-18.981834px;}
.ws86{word-spacing:-18.654561px;}
.ws6a{word-spacing:-18.196379px;}
.ws30{word-spacing:-18.130924px;}
.ws2a{word-spacing:-17.869106px;}
.ws4b{word-spacing:-17.861069px;}
.ws4c{word-spacing:-17.807270px;}
.ws29{word-spacing:-17.803651px;}
.ws2b{word-spacing:-17.541833px;}
.ws7c{word-spacing:-17.476378px;}
.ws2f{word-spacing:-17.345469px;}
.ws10{word-spacing:-17.083651px;}
.wsa{word-spacing:-17.018196px;}
.ws14{word-spacing:-16.952741px;}
.ws36{word-spacing:-16.887287px;}
.ws18{word-spacing:-16.821832px;}
.ws31{word-spacing:-16.690923px;}
.ws6{word-spacing:-16.504103px;}
.wsf{word-spacing:-16.494559px;}
.ws9{word-spacing:-16.429105px;}
.ws15{word-spacing:-16.364300px;}
.wsb{word-spacing:-16.363650px;}
.ws2c{word-spacing:-16.363193px;}
.ws27{word-spacing:-16.232741px;}
.ws28{word-spacing:-16.167286px;}
.ws2d{word-spacing:-15.774559px;}
.ws68{word-spacing:-15.643649px;}
.ws66{word-spacing:-15.578195px;}
.ws7e{word-spacing:-15.381831px;}
.ws95{word-spacing:-15.185467px;}
.ws3e{word-spacing:-15.003676px;}
.ws3c{word-spacing:-14.943900px;}
.ws7{word-spacing:-14.923649px;}
.wse{word-spacing:-14.072739px;}
.ws49{word-spacing:-13.941830px;}
.ws2e{word-spacing:-13.352738px;}
.ws1a{word-spacing:-12.150852px;}
.ws19{word-spacing:-10.808834px;}
.ws55{word-spacing:-10.734554px;}
.wsd{word-spacing:-9.360008px;}
.ws63{word-spacing:-0.964448px;}
.ws23{word-spacing:-0.047827px;}
.ws0{word-spacing:0.000000px;}
.ws78{word-spacing:0.312463px;}
.ws76{word-spacing:0.863369px;}
.ws72{word-spacing:2.075369px;}
.ws70{word-spacing:2.809552px;}
.ws74{word-spacing:3.067557px;}
.ws8d{word-spacing:3.077372px;}
.ws33{word-spacing:3.892777px;}
.ws82{word-spacing:3.955553px;}
.ws85{word-spacing:7.001920px;}
.ws69{word-spacing:7.409369px;}
.ws7b{word-spacing:8.147369px;}
.ws65{word-spacing:10.067369px;}
.ws7d{word-spacing:10.265369px;}
.ws94{word-spacing:10.461736px;}
.ws7a{word-spacing:10.755745px;}
.ws67{word-spacing:10.879557px;}
.ws1f{word-spacing:12.254090px;}
.ws25{word-spacing:12.463562px;}
.ws1d{word-spacing:12.515930px;}
.ws1c{word-spacing:12.568298px;}
.ws22{word-spacing:13.039609px;}
.ws1e{word-spacing:13.091977px;}
.ws24{word-spacing:29.453657px;}
.ws1b{word-spacing:29.549527px;}
.ws6c{word-spacing:41.784084px;}
.ws54{word-spacing:41.784156px;}
.ws62{word-spacing:41.784367px;}
.ws6f{word-spacing:41.784656px;}
.ws45{word-spacing:41.784794px;}
.ws46{word-spacing:41.784838px;}
.ws8a{word-spacing:41.785330px;}
.ws90{word-spacing:41.785463px;}
.ws47{word-spacing:41.785528px;}
.ws3b{word-spacing:41.785981px;}
.ws61{word-spacing:41.786232px;}
.ws92{word-spacing:41.786366px;}
.ws93{word-spacing:41.786424px;}
.ws96{word-spacing:41.787446px;}
.ws83{word-spacing:41.788091px;}
.ws5c{word-spacing:41.788331px;}
.ws3f{word-spacing:41.788369px;}
.ws91{word-spacing:41.788385px;}
.ws4e{word-spacing:41.788748px;}
.ws41{word-spacing:41.845302px;}
.ws81{word-spacing:41.845986px;}
.ws43{word-spacing:41.846846px;}
.ws3d{word-spacing:41.847000px;}
.ws53{word-spacing:41.847722px;}
.ws84{word-spacing:41.848396px;}
.ws5e{word-spacing:41.967658px;}
.ws8c{word-spacing:42.323310px;}
.ws5a{word-spacing:42.565414px;}
.ws5b{word-spacing:42.744740px;}
.ws60{word-spacing:42.804516px;}
.ws4f{word-spacing:44.359099px;}
.ws58{word-spacing:44.478233px;}
.ws59{word-spacing:44.530870px;}
.ws26{word-spacing:46.619713px;}
.ws44{word-spacing:51.570415px;}
.ws42{word-spacing:51.571450px;}
.ws40{word-spacing:51.635333px;}
.ws5f{word-spacing:58.819291px;}
.ws6e{word-spacing:66.053550px;}
.ws6d{word-spacing:68.265247px;}
.ws5d{word-spacing:69.105780px;}
.ws6b{word-spacing:69.878616px;}
.ws8b{word-spacing:70.358066px;}
.ws88{word-spacing:71.551872px;}
.ws8f{word-spacing:126.503398px;}
.ws4a{word-spacing:129.600346px;}
.ws20{word-spacing:244.521529px;}
.ws21{word-spacing:251.015141px;}
.ws4d{word-spacing:282.401398px;}
.ws51{word-spacing:802.941164px;}
.ws52{word-spacing:815.050265px;}
.ws57{word-spacing:1697.375591px;}
.ws56{word-spacing:1934.386697px;}
._66{margin-left:-115.143793px;}
._68{margin-left:-110.692880px;}
._0{margin-left:-29.409720px;}
._67{margin-left:-19.148207px;}
._65{margin-left:-15.730931px;}
._2{margin-left:-13.150668px;}
._f{margin-left:-10.791727px;}
._6{margin-left:-8.607708px;}
._4{margin-left:-7.077449px;}
._e{margin-left:-5.976403px;}
._7{margin-left:-4.712731px;}
._3{margin-left:-3.634366px;}
._1{margin-left:-2.510580px;}
._5{margin-left:-1.123786px;}
._d{width:1.717338px;}
._b{width:3.099671px;}
._44{width:8.127428px;}
._9{width:11.870588px;}
._4c{width:13.932529px;}
._c{width:15.054558px;}
._a{width:16.856195px;}
._32{width:17.934560px;}
._8{width:20.164478px;}
._78{width:23.899281px;}
._10{width:38.147804px;}
._13{width:57.392039px;}
._12{width:71.595090px;}
._2f{width:72.630884px;}
._20{width:74.239760px;}
._6d{width:75.917464px;}
._18{width:77.172953px;}
._58{width:80.735418px;}
._53{width:83.251354px;}
._17{width:88.707091px;}
._16{width:90.213422px;}
._22{width:94.482246px;}
._15{width:98.280246px;}
._6b{width:99.961598px;}
._3e{width:103.130795px;}
._40{width:104.732703px;}
._59{width:112.331059px;}
._64{width:114.482995px;}
._63{width:117.172915px;}
._61{width:119.163456px;}
._62{width:121.261594px;}
._71{width:154.320297px;}
._4a{width:158.158402px;}
._6e{width:161.726698px;}
._4d{width:162.820429px;}
._1e{width:183.676435px;}
._48{width:189.657733px;}
._69{width:191.576909px;}
._51{width:201.248388px;}
._5b{width:219.114120px;}
._76{width:223.405992px;}
._5c{width:230.361254px;}
._1b{width:231.738186px;}
._5d{width:235.935952px;}
._7a{width:239.180695px;}
._4f{width:246.314987px;}
._74{width:247.578774px;}
._31{width:250.765203px;}
._6a{width:263.500457px;}
._55{width:281.893415px;}
._3f{width:288.332856px;}
._5a{width:290.121304px;}
._5f{width:297.335471px;}
._1d{width:302.496246px;}
._7b{width:305.289841px;}
._1f{width:311.342698px;}
._38{width:329.842589px;}
._45{width:336.834715px;}
._43{width:353.132910px;}
._47{width:357.976550px;}
._72{width:362.562472px;}
._41{width:375.256565px;}
._4b{width:380.284052px;}
._1a{width:387.303736px;}
._60{width:392.969370px;}
._1c{width:404.398444px;}
._54{width:408.091662px;}
._52{width:422.820378px;}
._70{width:431.693587px;}
._75{width:437.377079px;}
._50{width:440.669359px;}
._4e{width:442.068121px;}
._6f{width:494.090698px;}
._57{width:517.479848px;}
._42{width:525.867599px;}
._79{width:570.850210px;}
._49{width:578.320615px;}
._23{width:591.096543px;}
._46{width:596.362204px;}
._56{width:601.777658px;}
._2b{width:632.963943px;}
._3a{width:639.127822px;}
._3b{width:654.782528px;}
._3d{width:712.044246px;}
._39{width:936.344912px;}
._36{width:963.235696px;}
._35{width:969.126610px;}
._11{width:1048.167566px;}
._34{width:1084.850342px;}
._37{width:1143.170391px;}
._3c{width:1231.479704px;}
._2c{width:1268.386142px;}
._26{width:1318.458911px;}
._2e{width:1353.762246px;}
._25{width:1492.240874px;}
._27{width:1496.113753px;}
._2d{width:1589.517467px;}
._29{width:1613.866579px;}
._24{width:1669.295567px;}
._5e{width:1765.048747px;}
._2a{width:1766.626558px;}
._7c{width:1768.582747px;}
._73{width:1769.962747px;}
._77{width:1776.310747px;}
._6c{width:1779.190747px;}
._30{width:1789.924747px;}
._21{width:1793.914747px;}
._14{width:1795.288747px;}
._33{width:1797.844747px;}
._19{width:1801.642747px;}
._28{width:1924.383201px;}
.fc9{color:rgb(0,173,239);}
.fc8{color:rgb(10,146,141);}
.fc7{color:rgb(10,146,141);}
.fc4{color:rgb(79,117,144);}
.fc3{color:rgb(161,49,87);}
.fc2{color:rgb(77,198,244);}
.fc5{color:rgb(16,106,175);}
.fc1{color:rgb(16,106,175);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fsd{font-size:47.826699px;}
.fsf{font-size:52.367907px;}
.fse{font-size:53.764830px;}
.fs11{font-size:53.798400px;}
.fs10{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:65.454600px;}
.fs9{font-size:65.753400px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:86.077200px;}
.fs7{font-size:89.664000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:125.529000px;}
.fsb{font-size:148.722600px;}
.fs8{font-size:191.282400px;}
.fs5{font-size:735.243000px;}
.y0{bottom:0.000000px;}
.y68{bottom:21.945977px;}
.y67{bottom:35.387184px;}
.y74{bottom:36.025906px;}
.y66{bottom:48.828392px;}
.y86{bottom:61.507500px;}
.y65{bottom:62.269599px;}
.y73{bottom:63.532343px;}
.y5{bottom:66.525004px;}
.y49{bottom:67.196167px;}
.y5e{bottom:77.905989px;}
.y72{bottom:79.793804px;}
.y64{bottom:81.471501px;}
.y5d{bottom:91.347197px;}
.y63{bottom:94.912708px;}
.y56{bottom:96.092716px;}
.y4{bottom:97.125005px;}
.y5c{bottom:104.788404px;}
.y48{bottom:107.843167px;}
.y62{bottom:108.353916px;}
.y5b{bottom:118.229612px;}
.y61{bottom:125.635644px;}
.y47{bottom:128.166667px;}
.y71{bottom:137.915030px;}
.y77{bottom:138.038008px;}
.y60{bottom:139.076851px;}
.y20{bottom:139.264499px;}
.y51{bottom:147.883522px;}
.y46{bottom:148.490167px;}
.y5f{bottom:152.518059px;}
.y70{bottom:154.044469px;}
.y27{bottom:154.584000px;}
.y14f{bottom:166.234500px;}
.y50{bottom:168.207022px;}
.y45{bottom:168.813667px;}
.y6f{bottom:170.845983px;}
.y5a{bottom:175.560246px;}
.y14e{bottom:184.168500px;}
.y6e{bottom:187.707492px;}
.y59{bottom:189.001454px;}
.y44{bottom:189.138667px;}
.y17{bottom:196.933500px;}
.y14d{bottom:202.101000px;}
.y6d{bottom:204.004958px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.yd1{bottom:213.939000px;}
.y14c{bottom:220.033500px;}
.y6c{bottom:220.266423px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y58{bottom:225.484907px;}
.y43{bottom:229.160167px;}
.yd0{bottom:231.873000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y6b{bottom:236.527888px;}
.y14b{bottom:237.966000px;}
.y57{bottom:238.926114px;}
.ycf{bottom:249.805500px;}
.y6a{bottom:252.777362px;}
.y1e1{bottom:254.833500px;}
.y14a{bottom:255.898500px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y76{bottom:260.048012px;}
.y26{bottom:264.627000px;}
.yce{bottom:267.738000px;}
.y42{bottom:269.826067px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y75{bottom:273.489219px;}
.y149{bottom:273.832500px;}
.y69{bottom:280.371029px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.ycd{bottom:285.670500px;}
.y41{bottom:290.149567px;}
.y148{bottom:291.765000px;}
.y1e0{bottom:293.868000px;}
.y194{bottom:294.886500px;}
.ya5{bottom:299.074500px;}
.ycc{bottom:303.603000px;}
.y147{bottom:309.697500px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y1df{bottom:311.800500px;}
.y25{bottom:312.448500px;}
.y193{bottom:312.820500px;}
.y16e{bottom:318.018000px;}
.ycb{bottom:321.535500px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y1b8{bottom:326.110500px;}
.y146{bottom:327.630000px;}
.y1de{bottom:329.733000px;}
.y192{bottom:330.753000px;}
.y20a{bottom:338.221500px;}
.yca{bottom:339.469500px;}
.ya4{bottom:339.541500px;}
.y16d{bottom:339.775500px;}
.y1b7{bottom:344.043000px;}
.y145{bottom:345.562500px;}
.y128{bottom:347.220000px;}
.y1dd{bottom:347.665500px;}
.ye{bottom:348.133500px;}
.y191{bottom:348.685500px;}
.y209{bottom:356.154000px;}
.yc9{bottom:357.402000px;}
.ya3{bottom:357.474000px;}
.y24{bottom:360.268500px;}
.y1b6{bottom:361.975500px;}
.y16c{bottom:363.027000px;}
.y144{bottom:363.495000px;}
.y1dc{bottom:365.598000px;}
.y190{bottom:366.618000px;}
.y127{bottom:367.543500px;}
.y208{bottom:374.086500px;}
.yc8{bottom:375.334500px;}
.ya2{bottom:377.619000px;}
.y1b5{bottom:379.908000px;}
.y143{bottom:381.429000px;}
.y1db{bottom:383.532000px;}
.y18f{bottom:384.550500px;}
.yd{bottom:386.785499px;}
.y16b{bottom:387.330000px;}
.y126{bottom:387.867000px;}
.y108{bottom:389.575500px;}
.y207{bottom:392.019000px;}
.yc7{bottom:393.267000px;}
.y1b4{bottom:397.840500px;}
.y142{bottom:399.361500px;}
.ya1{bottom:400.869000px;}
.y1da{bottom:401.464500px;}
.y18e{bottom:402.483000px;}
.y107{bottom:407.508000px;}
.y16a{bottom:407.653500px;}
.yc{bottom:408.044999px;}
.y125{bottom:408.190500px;}
.y206{bottom:409.951500px;}
.yc6{bottom:411.199500px;}
.y1b3{bottom:415.773000px;}
.y141{bottom:417.294000px;}
.y1d9{bottom:419.397000px;}
.y18d{bottom:420.417000px;}
.y40{bottom:422.383522px;}
.y106{bottom:425.440500px;}
.y205{bottom:427.885500px;}
.yc5{bottom:429.132000px;}
.y1b2{bottom:433.707000px;}
.y140{bottom:435.226500px;}
.y1d8{bottom:437.329500px;}
.y18c{bottom:438.349500px;}
.ya0{bottom:441.336000px;}
.y3f{bottom:442.707022px;}
.y105{bottom:443.373000px;}
.y169{bottom:444.072000px;}
.y204{bottom:445.818000px;}
.yc4{bottom:447.066000px;}
.y124{bottom:450.004500px;}
.y1b1{bottom:451.639500px;}
.y13f{bottom:453.159000px;}
.y1d7{bottom:455.262000px;}
.y18b{bottom:456.282000px;}
.y9f{bottom:459.268500px;}
.y104{bottom:461.307000px;}
.y3e{bottom:463.030522px;}
.y203{bottom:463.750500px;}
.y168{bottom:465.829500px;}
.yc3{bottom:467.209500px;}
.y1b0{bottom:469.572000px;}
.y13e{bottom:471.091500px;}
.y123{bottom:471.762000px;}
.y18a{bottom:474.214500px;}
.y1d6{bottom:475.407000px;}
.y103{bottom:479.239500px;}
.y9e{bottom:479.413500px;}
.y202{bottom:481.683000px;}
.y3d{bottom:483.355522px;}
.y1af{bottom:487.504500px;}
.yc2{bottom:487.533000px;}
.y13d{bottom:489.025500px;}
.y167{bottom:489.079500px;}
.y189{bottom:492.147000px;}
.y122{bottom:495.013500px;}
.y1d5{bottom:497.163000px;}
.y102{bottom:497.172000px;}
.y201{bottom:499.615500px;}
.y85{bottom:501.048000px;}
.y9d{bottom:502.665000px;}
.y13c{bottom:506.958000px;}
.y1ae{bottom:507.649500px;}
.yc1{bottom:509.290500px;}
.y166{bottom:509.404500px;}
.y188{bottom:510.079500px;}
.y101{bottom:515.104500px;}
.y121{bottom:515.337000px;}
.y1d4{bottom:517.488000px;}
.y200{bottom:519.760500px;}
.yb{bottom:520.864502px;}
.y84{bottom:521.371500px;}
.y13b{bottom:527.101500px;}
.y187{bottom:528.013500px;}
.y1ad{bottom:529.422000px;}
.yc0{bottom:529.614000px;}
.y165{bottom:529.728000px;}
.y100{bottom:533.037000px;}
.y120{bottom:535.660500px;}
.ya{bottom:538.864499px;}
.y1d3{bottom:539.244000px;}
.y1ff{bottom:540.084000px;}
.y83{bottom:541.695000px;}
.y9c{bottom:543.130500px;}
.y186{bottom:545.946000px;}
.y3c{bottom:547.153372px;}
.y13a{bottom:548.875500px;}
.y1ac{bottom:549.745500px;}
.yff{bottom:550.969500px;}
.ybf{bottom:551.371500px;}
.y9{bottom:556.864499px;}
.y1d2{bottom:561.000000px;}
.y1fe{bottom:561.841500px;}
.y82{bottom:562.018500px;}
.y9b{bottom:563.275500px;}
.y185{bottom:563.878500px;}
.y164{bottom:566.146500px;}
.y3b{bottom:567.476872px;}
.yfe{bottom:568.903500px;}
.y139{bottom:570.648000px;}
.y1ab{bottom:571.519500px;}
.ybe{bottom:571.695000px;}
.y11f{bottom:571.885500px;}
.y184{bottom:581.811000px;}
.y1fd{bottom:582.165000px;}
.y81{bottom:582.342000px;}
.y1d1{bottom:582.757500px;}
.y9a{bottom:586.527000px;}
.yfd{bottom:586.836000px;}
.y3a{bottom:587.801872px;}
.y163{bottom:587.902500px;}
.y138{bottom:592.422000px;}
.y1aa{bottom:593.292000px;}
.ybd{bottom:593.451000px;}
.y11e{bottom:593.641500px;}
.y183{bottom:599.743500px;}
.y1fc{bottom:602.488500px;}
.y80{bottom:602.667000px;}
.y1d0{bottom:603.081000px;}
.yfc{bottom:604.768500px;}
.y39{bottom:608.125372px;}
.y162{bottom:611.154000px;}
.y1a9{bottom:613.615500px;}
.ybc{bottom:613.774500px;}
.y137{bottom:614.194500px;}
.y11d{bottom:616.893000px;}
.y182{bottom:619.888500px;}
.yfb{bottom:622.701000px;}
.y7f{bottom:622.990500px;}
.y1fb{bottom:624.246000px;}
.y1cf{bottom:624.838500px;}
.y99{bottom:628.324500px;}
.y38{bottom:628.448872px;}
.y161{bottom:631.477500px;}
.y1a8{bottom:635.389500px;}
.ybb{bottom:635.532000px;}
.y136{bottom:635.967000px;}
.y11c{bottom:637.216500px;}
.y181{bottom:640.212000px;}
.yfa{bottom:640.633500px;}
.y7e{bottom:643.314000px;}
.y1fa{bottom:644.569500px;}
.y8{bottom:645.510000px;}
.y1ce{bottom:646.656000px;}
.y37{bottom:648.772372px;}
.y98{bottom:651.592500px;}
.y160{bottom:651.801000px;}
.yba{bottom:655.855500px;}
.y1a2{bottom:657.162000px;}
.y11b{bottom:657.540000px;}
.y135{bottom:657.741000px;}
.yf9{bottom:658.566000px;}
.y180{bottom:661.969500px;}
.y7d{bottom:663.637500px;}
.y1f9{bottom:666.325500px;}
.y7{bottom:666.771000px;}
.y36{bottom:669.095872px;}
.y4f{bottom:671.563522px;}
.y1a7{bottom:673.600500px;}
.yf8{bottom:676.500000px;}
.yb9{bottom:677.613000px;}
.y134{bottom:679.513500px;}
.y17f{bottom:682.293000px;}
.y7c{bottom:683.961000px;}
.y1cd{bottom:685.690500px;}
.y1f8{bottom:686.649000px;}
.y15f{bottom:688.219500px;}
.y35{bottom:689.420872px;}
.y1a6{bottom:690.039000px;}
.y97{bottom:692.059500px;}
.y11a{bottom:693.765000px;}
.yf7{bottom:694.432500px;}
.yb8{bottom:697.936500px;}
.y133{bottom:701.286000px;}
.y1cc{bottom:703.623000px;}
.y17e{bottom:704.049000px;}
.y7b{bottom:704.284500px;}
.y1a5{bottom:706.477500px;}
.y1f7{bottom:708.406500px;}
.y15e{bottom:709.977000px;}
.y4e{bottom:712.210522px;}
.yf6{bottom:712.365000px;}
.y119{bottom:715.521000px;}
.yb7{bottom:719.692500px;}
.y1cb{bottom:721.555500px;}
.y1a4{bottom:722.916000px;}
.y17d{bottom:724.372500px;}
.y7a{bottom:724.609500px;}
.y6{bottom:726.298500px;}
.y1f6{bottom:730.162500px;}
.yf5{bottom:730.297500px;}
.y96{bottom:730.912500px;}
.y15d{bottom:733.228500px;}
.y118{bottom:738.772500px;}
.y1a3{bottom:739.354500px;}
.y1ca{bottom:739.488000px;}
.yb6{bottom:740.016000px;}
.y132{bottom:741.769500px;}
.y79{bottom:744.933000px;}
.y17c{bottom:746.130000px;}
.yf4{bottom:748.230000px;}
.y95{bottom:751.237500px;}
.y1f5{bottom:751.981500px;}
.y3{bottom:752.599495px;}
.y15c{bottom:753.552000px;}
.y1c9{bottom:757.420500px;}
.y117{bottom:759.096000px;}
.y131{bottom:759.702000px;}
.y1a1{bottom:761.172000px;}
.yb4{bottom:761.773500px;}
.ye0{bottom:764.979000px;}
.y78{bottom:765.256500px;}
.yf3{bottom:766.162500px;}
.y17b{bottom:767.886000px;}
.y94{bottom:771.561000px;}
.y4d{bottom:773.182522px;}
.y15b{bottom:773.875500px;}
.y1c8{bottom:775.353000px;}
.y130{bottom:777.634500px;}
.yb3{bottom:778.212000px;}
.y116{bottom:779.419500px;}
.y1a0{bottom:781.495500px;}
.yf2{bottom:784.096500px;}
.ydf{bottom:785.304000px;}
.y55{bottom:785.580090px;}
.y17a{bottom:789.643500px;}
.y1f4{bottom:791.014500px;}
.y1c7{bottom:793.287000px;}
.yb5{bottom:794.650500px;}
.y12f{bottom:795.568500px;}
.y19f{bottom:801.819000px;}
.yf1{bottom:802.029000px;}
.yde{bottom:805.627500px;}
.y1f3{bottom:808.947000px;}
.y15a{bottom:810.294000px;}
.y1c6{bottom:811.219500px;}
.y179{bottom:811.399500px;}
.y12e{bottom:813.501000px;}
.y34{bottom:814.896646px;}
.y115{bottom:815.644500px;}
.yb2{bottom:816.468000px;}
.y4c{bottom:818.014522px;}
.yf0{bottom:819.961500px;}
.y19e{bottom:822.144000px;}
.y1f2{bottom:826.881000px;}
.y1c5{bottom:829.152000px;}
.y93{bottom:830.557500px;}
.y12d{bottom:831.433500px;}
.y178{bottom:831.724500px;}
.y159{bottom:832.051500px;}
.yb1{bottom:836.791500px;}
.y114{bottom:837.400500px;}
.yef{bottom:837.894000px;}
.y1f1{bottom:844.813500px;}
.y1c4{bottom:847.084500px;}
.y92{bottom:848.490000px;}
.y12c{bottom:849.366000px;}
.y177{bottom:853.480500px;}
.y158{bottom:855.301500px;}
.y33{bottom:855.545146px;}
.yee{bottom:858.039000px;}
.y113{bottom:860.652000px;}
.y1f0{bottom:862.746000px;}
.y4b{bottom:862.845022px;}
.ydd{bottom:864.640500px;}
.y1c3{bottom:867.229500px;}
.y12b{bottom:867.298500px;}
.y23{bottom:867.889500px;}
.y91{bottom:868.635000px;}
.y176{bottom:875.238000px;}
.y157{bottom:875.626500px;}
.y32{bottom:875.870146px;}
.y2{bottom:879.369000px;}
.yed{bottom:879.795000px;}
.y1ef{bottom:880.678500px;}
.y112{bottom:880.975500px;}
.y19d{bottom:881.140500px;}
.ydc{bottom:882.573000px;}
.y12a{bottom:885.231000px;}
.y1c2{bottom:887.553000px;}
.y90{bottom:891.903000px;}
.yb0{bottom:895.527000px;}
.y175{bottom:895.561500px;}
.y156{bottom:895.950000px;}
.y31{bottom:896.193646px;}
.y1ee{bottom:898.611000px;}
.y19c{bottom:899.073000px;}
.ydb{bottom:900.505500px;}
.y111{bottom:901.299000px;}
.yec{bottom:901.552500px;}
.y129{bottom:903.165000px;}
.y1c1{bottom:909.309000px;}
.yaf{bottom:913.459500px;}
.y174{bottom:915.885000px;}
.y30{bottom:916.517146px;}
.y1ed{bottom:916.543500px;}
.y19b{bottom:917.005500px;}
.yda{bottom:918.439500px;}
.yeb{bottom:923.308500px;}
.y1c0{bottom:929.634000px;}
.y8f{bottom:932.368500px;}
.yae{bottom:933.604500px;}
.y1ec{bottom:934.477500px;}
.y19a{bottom:934.938000px;}
.yd9{bottom:936.372000px;}
.y110{bottom:936.475500px;}
.y2f{bottom:936.840646px;}
.y171{bottom:937.641000px;}
.yea{bottom:945.066000px;}
.y1bf{bottom:951.390000px;}
.y1eb{bottom:952.410000px;}
.y8e{bottom:952.513500px;}
.y199{bottom:952.872000px;}
.y172{bottom:954.079500px;}
.y155{bottom:954.124500px;}
.yd8{bottom:956.515500px;}
.y2e{bottom:957.164146px;}
.y1{bottom:966.726000px;}
.ye9{bottom:966.822000px;}
.y173{bottom:970.518000px;}
.y1be{bottom:971.713500px;}
.y1ea{bottom:972.553500px;}
.y198{bottom:973.015500px;}
.y8d{bottom:973.396500px;}
.yad{bottom:974.071500px;}
.y10f{bottom:976.941000px;}
.y154{bottom:977.376000px;}
.y2d{bottom:977.489146px;}
.ye8{bottom:988.579500px;}
.yac{bottom:992.004000px;}
.y170{bottom:992.337000px;}
.y1e9{bottom:992.878500px;}
.y20d{bottom:993.175500px;}
.y1bd{bottom:993.471000px;}
.y10e{bottom:994.873500px;}
.y8c{bottom:996.664500px;}
.yd7{bottom:996.999000px;}
.y153{bottom:997.699500px;}
.y21{bottom:999.439500px;}
.y22{bottom:1007.944500px;}
.yab{bottom:1009.936500px;}
.ye7{bottom:1010.335500px;}
.y20c{bottom:1011.108000px;}
.y16f{bottom:1012.660500px;}
.y197{bottom:1013.499000px;}
.y1bc{bottom:1013.794500px;}
.y1e8{bottom:1014.634500px;}
.yd6{bottom:1014.931500px;}
.y10d{bottom:1015.018500px;}
.y152{bottom:1018.023000px;}
.y2c{bottom:1018.155046px;}
.yaa{bottom:1030.081500px;}
.y20b{bottom:1031.253000px;}
.y196{bottom:1031.431500px;}
.ye6{bottom:1032.093000px;}
.yd5{bottom:1032.864000px;}
.y1e7{bottom:1034.958000px;}
.y1bb{bottom:1035.550500px;}
.y10c{bottom:1038.286500px;}
.y8b{bottom:1038.478500px;}
.y2b{bottom:1038.478546px;}
.y195{bottom:1051.576500px;}
.ya9{bottom:1051.837500px;}
.yd4{bottom:1053.009000px;}
.ye5{bottom:1053.849000px;}
.y151{bottom:1054.441500px;}
.y1ba{bottom:1055.875500px;}
.y1e6{bottom:1056.715500px;}
.y8a{bottom:1058.802000px;}
.ya8{bottom:1073.332500px;}
.yd3{bottom:1074.766500px;}
.ye4{bottom:1075.606500px;}
.y150{bottom:1076.199000px;}
.y1b9{bottom:1077.631500px;}
.y1e5{bottom:1078.471500px;}
.y10b{bottom:1078.752000px;}
.y89{bottom:1079.125500px;}
.ya7{bottom:1095.090000px;}
.yd2{bottom:1096.522500px;}
.y10a{bottom:1096.686000px;}
.ye3{bottom:1097.362500px;}
.y1e4{bottom:1098.795000px;}
.y2a{bottom:1099.431604px;}
.y88{bottom:1099.450500px;}
.y54{bottom:1101.406500px;}
.y109{bottom:1116.829500px;}
.ya6{bottom:1116.846000px;}
.ye2{bottom:1119.120000px;}
.y87{bottom:1119.774000px;}
.y29{bottom:1119.774004px;}
.y4a{bottom:1120.276519px;}
.y1e3{bottom:1120.552500px;}
.y53{bottom:1140.097500px;}
.y28{bottom:1140.097504px;}
.ye1{bottom:1140.876000px;}
.y1e2{bottom:1142.308500px;}
.y52{bottom:1193.145000px;}
.h7{height:32.130000px;}
.h13{height:32.694033px;}
.h18{height:35.798374px;}
.h14{height:36.753302px;}
.h15{height:36.779554px;}
.h17{height:38.508822px;}
.h16{height:38.534393px;}
.h1a{height:39.757018px;}
.h19{height:43.576412px;}
.h1b{height:43.582412px;}
.h6{height:45.900000px;}
.he{height:47.716403px;}
.hd{height:47.934229px;}
.h3{height:48.195000px;}
.h10{height:48.370949px;}
.h2{height:55.080000px;}
.h11{height:63.438896px;}
.hb{height:66.082368px;}
.h5{height:78.030000px;}
.ha{height:92.514873px;}
.hf{height:109.608556px;}
.h4{height:119.055004px;}
.hc{height:140.975129px;}
.h12{height:310.831674px;}
.h9{height:543.344577px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:625.057754px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:5.104377px;}
.x7{left:85.039500px;}
.x8{left:87.165000px;}
.xb{left:99.514571px;}
.x1{left:102.045000px;}
.xe{left:103.626313px;}
.x2{left:106.297500px;}
.x9{left:133.938000px;}
.x10{left:139.020000px;}
.x17{left:155.197500px;}
.xf{left:160.199384px;}
.x4{left:203.484001px;}
.x21{left:329.316000px;}
.x12{left:334.579500px;}
.x23{left:335.626500px;}
.x11{left:348.540000px;}
.x1c{left:350.482500px;}
.x1a{left:359.517000px;}
.x18{left:360.843000px;}
.xd{left:384.750153px;}
.x28{left:403.245000px;}
.x19{left:409.251000px;}
.x29{left:410.371500px;}
.x1e{left:416.133000px;}
.xa{left:417.351013px;}
.x1d{left:432.507000px;}
.x3{left:454.959000px;}
.x5{left:477.649500px;}
.x20{left:506.118000px;}
.x1f{left:519.588000px;}
.x14{left:597.093000px;}
.x13{left:602.796000px;}
.x16{left:686.749500px;}
.x15{left:688.531500px;}
.x22{left:693.385500px;}
.x1b{left:698.595000px;}
.x26{left:723.267000px;}
.x27{left:724.342500px;}
.x25{left:726.999000px;}
.x24{left:729.481500px;}
.x6{left:832.947000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:14.718536pt;}
.ls6{letter-spacing:28.239004pt;}
.ls2{letter-spacing:32.607004pt;}
.ls4{letter-spacing:33.071004pt;}
.ls7{letter-spacing:34.703004pt;}
.ls3{letter-spacing:39.476337pt;}
.ls5{letter-spacing:42.313670pt;}
.ls8{letter-spacing:98.626398pt;}
.ws1{word-spacing:-379.712163pt;}
.ws89{word-spacing:-127.717332pt;}
.ws13{word-spacing:-66.098933pt;}
.ws2{word-spacing:-55.790667pt;}
.ws4{word-spacing:-42.677229pt;}
.ws5{word-spacing:-42.507200pt;}
.ws3a{word-spacing:-33.803665pt;}
.ws12{word-spacing:-33.181665pt;}
.ws11{word-spacing:-33.049467pt;}
.wsc{word-spacing:-29.090933pt;}
.ws7f{word-spacing:-27.783885pt;}
.ws48{word-spacing:-26.566933pt;}
.ws64{word-spacing:-23.621838pt;}
.ws79{word-spacing:-22.516382pt;}
.ws77{word-spacing:-21.992746pt;}
.ws73{word-spacing:-20.945472pt;}
.ws75{word-spacing:-20.829108pt;}
.ws71{word-spacing:-20.305471pt;}
.ws8e{word-spacing:-20.072744pt;}
.ws3{word-spacing:-19.925333pt;}
.ws80{word-spacing:-19.781835pt;}
.ws34{word-spacing:-19.316380pt;}
.ws39{word-spacing:-19.258198pt;}
.ws17{word-spacing:-19.204780pt;}
.ws37{word-spacing:-18.909107pt;}
.ws50{word-spacing:-18.792743pt;}
.ws38{word-spacing:-18.385470pt;}
.ws87{word-spacing:-18.094561pt;}
.ws35{word-spacing:-17.221833pt;}
.ws8{word-spacing:-17.163651pt;}
.ws32{word-spacing:-16.930923pt;}
.ws16{word-spacing:-16.872741pt;}
.ws86{word-spacing:-16.581832pt;}
.ws6a{word-spacing:-16.174559pt;}
.ws30{word-spacing:-16.116377pt;}
.ws2a{word-spacing:-15.883650pt;}
.ws4b{word-spacing:-15.876506pt;}
.ws4c{word-spacing:-15.828685pt;}
.ws29{word-spacing:-15.825468pt;}
.ws2b{word-spacing:-15.592740pt;}
.ws7c{word-spacing:-15.534558pt;}
.ws2f{word-spacing:-15.418195pt;}
.ws10{word-spacing:-15.185467pt;}
.wsa{word-spacing:-15.127285pt;}
.ws14{word-spacing:-15.069103pt;}
.ws36{word-spacing:-15.010922pt;}
.ws18{word-spacing:-14.952740pt;}
.ws31{word-spacing:-14.836376pt;}
.ws6{word-spacing:-14.670314pt;}
.wsf{word-spacing:-14.661830pt;}
.ws9{word-spacing:-14.603649pt;}
.ws15{word-spacing:-14.546044pt;}
.wsb{word-spacing:-14.545467pt;}
.ws2c{word-spacing:-14.545061pt;}
.ws27{word-spacing:-14.429103pt;}
.ws28{word-spacing:-14.370921pt;}
.ws2d{word-spacing:-14.021830pt;}
.ws68{word-spacing:-13.905466pt;}
.ws66{word-spacing:-13.847284pt;}
.ws7e{word-spacing:-13.672739pt;}
.ws95{word-spacing:-13.498193pt;}
.ws3e{word-spacing:-13.336601pt;}
.ws3c{word-spacing:-13.283467pt;}
.ws7{word-spacing:-13.265466pt;}
.wse{word-spacing:-12.509101pt;}
.ws49{word-spacing:-12.392738pt;}
.ws2e{word-spacing:-11.869101pt;}
.ws1a{word-spacing:-10.800757pt;}
.ws19{word-spacing:-9.607852pt;}
.ws55{word-spacing:-9.541826pt;}
.wsd{word-spacing:-8.320007pt;}
.ws63{word-spacing:-0.857287pt;}
.ws23{word-spacing:-0.042513pt;}
.ws0{word-spacing:0.000000pt;}
.ws78{word-spacing:0.277745pt;}
.ws76{word-spacing:0.767439pt;}
.ws72{word-spacing:1.844773pt;}
.ws70{word-spacing:2.497380pt;}
.ws74{word-spacing:2.726717pt;}
.ws8d{word-spacing:2.735442pt;}
.ws33{word-spacing:3.460246pt;}
.ws82{word-spacing:3.516047pt;}
.ws85{word-spacing:6.223929pt;}
.ws69{word-spacing:6.586106pt;}
.ws7b{word-spacing:7.242106pt;}
.ws65{word-spacing:8.948773pt;}
.ws7d{word-spacing:9.124773pt;}
.ws94{word-spacing:9.299321pt;}
.ws7a{word-spacing:9.560662pt;}
.ws67{word-spacing:9.670717pt;}
.ws1f{word-spacing:10.892525pt;}
.ws25{word-spacing:11.078722pt;}
.ws1d{word-spacing:11.125271pt;}
.ws1c{word-spacing:11.171820pt;}
.ws22{word-spacing:11.590763pt;}
.ws1e{word-spacing:11.637313pt;}
.ws24{word-spacing:26.181028pt;}
.ws1b{word-spacing:26.266247pt;}
.ws6c{word-spacing:37.141408pt;}
.ws54{word-spacing:37.141472pt;}
.ws62{word-spacing:37.141660pt;}
.ws6f{word-spacing:37.141917pt;}
.ws45{word-spacing:37.142039pt;}
.ws46{word-spacing:37.142078pt;}
.ws8a{word-spacing:37.142515pt;}
.ws90{word-spacing:37.142634pt;}
.ws47{word-spacing:37.142691pt;}
.ws3b{word-spacing:37.143094pt;}
.ws61{word-spacing:37.143317pt;}
.ws92{word-spacing:37.143437pt;}
.ws93{word-spacing:37.143488pt;}
.ws96{word-spacing:37.144397pt;}
.ws83{word-spacing:37.144970pt;}
.ws5c{word-spacing:37.145183pt;}
.ws3f{word-spacing:37.145217pt;}
.ws91{word-spacing:37.145231pt;}
.ws4e{word-spacing:37.145554pt;}
.ws41{word-spacing:37.195824pt;}
.ws81{word-spacing:37.196432pt;}
.ws43{word-spacing:37.197197pt;}
.ws3d{word-spacing:37.197333pt;}
.ws53{word-spacing:37.197975pt;}
.ws84{word-spacing:37.198574pt;}
.ws5e{word-spacing:37.304585pt;}
.ws8c{word-spacing:37.620720pt;}
.ws5a{word-spacing:37.835923pt;}
.ws5b{word-spacing:37.995325pt;}
.ws60{word-spacing:38.048459pt;}
.ws4f{word-spacing:39.430310pt;}
.ws58{word-spacing:39.536207pt;}
.ws59{word-spacing:39.582995pt;}
.ws26{word-spacing:41.439745pt;}
.ws44{word-spacing:45.840369pt;}
.ws42{word-spacing:45.841289pt;}
.ws40{word-spacing:45.898074pt;}
.ws5f{word-spacing:52.283814pt;}
.ws6e{word-spacing:58.714267pt;}
.ws6d{word-spacing:60.680220pt;}
.ws5d{word-spacing:61.427360pt;}
.ws6b{word-spacing:62.114325pt;}
.ws8b{word-spacing:62.540503pt;}
.ws88{word-spacing:63.601664pt;}
.ws8f{word-spacing:112.447465pt;}
.ws4a{word-spacing:115.200307pt;}
.ws20{word-spacing:217.352470pt;}
.ws21{word-spacing:223.124570pt;}
.ws4d{word-spacing:251.023465pt;}
.ws51{word-spacing:713.725479pt;}
.ws52{word-spacing:724.489125pt;}
.ws57{word-spacing:1508.778303pt;}
.ws56{word-spacing:1719.454842pt;}
._66{margin-left:-102.350038pt;}
._68{margin-left:-98.393671pt;}
._0{margin-left:-26.141973pt;}
._67{margin-left:-17.020629pt;}
._65{margin-left:-13.983050pt;}
._2{margin-left:-11.689483pt;}
._f{margin-left:-9.592646pt;}
._6{margin-left:-7.651296pt;}
._4{margin-left:-6.291066pt;}
._e{margin-left:-5.312358pt;}
._7{margin-left:-4.189094pt;}
._3{margin-left:-3.230547pt;}
._1{margin-left:-2.231627pt;}
._5{margin-left:-0.998921pt;}
._d{width:1.526523pt;}
._b{width:2.755263pt;}
._44{width:7.224380pt;}
._9{width:10.551634pt;}
._4c{width:12.384470pt;}
._c{width:13.381829pt;}
._a{width:14.983284pt;}
._32{width:15.941831pt;}
._8{width:17.923980pt;}
._78{width:21.243805pt;}
._10{width:33.909159pt;}
._13{width:51.015146pt;}
._12{width:63.640080pt;}
._2f{width:64.560785pt;}
._20{width:65.990898pt;}
._6d{width:67.482190pt;}
._18{width:68.598180pt;}
._58{width:71.764816pt;}
._53{width:74.001203pt;}
._17{width:78.850748pt;}
._16{width:80.189709pt;}
._22{width:83.984219pt;}
._15{width:87.360219pt;}
._6b{width:88.854754pt;}
._3e{width:91.671818pt;}
._40{width:93.095736pt;}
._59{width:99.849830pt;}
._64{width:101.762662pt;}
._63{width:104.153702pt;}
._61{width:105.923072pt;}
._62{width:107.788083pt;}
._71{width:137.173597pt;}
._4a{width:140.585246pt;}
._6e{width:143.757065pt;}
._4d{width:144.729270pt;}
._1e{width:163.267942pt;}
._48{width:168.584652pt;}
._69{width:170.290586pt;}
._51{width:178.887456pt;}
._5b{width:194.768107pt;}
._76{width:198.583104pt;}
._5c{width:204.765559pt;}
._1b{width:205.989499pt;}
._5d{width:209.720846pt;}
._7a{width:212.605062pt;}
._4f{width:218.946655pt;}
._74{width:220.070021pt;}
._31{width:222.902403pt;}
._6a{width:234.222629pt;}
._55{width:250.571924pt;}
._3f{width:256.295872pt;}
._5a{width:257.885603pt;}
._5f{width:264.298197pt;}
._1d{width:268.885552pt;}
._7b{width:271.368747pt;}
._1f{width:276.749065pt;}
._38{width:293.193412pt;}
._45{width:299.408635pt;}
._43{width:313.895920pt;}
._47{width:318.201378pt;}
._72{width:322.277753pt;}
._41{width:333.561391pt;}
._4b{width:338.030269pt;}
._1a{width:344.269987pt;}
._60{width:349.306107pt;}
._1c{width:359.465283pt;}
._54{width:362.748144pt;}
._52{width:375.840336pt;}
._70{width:383.727633pt;}
._75{width:388.779626pt;}
._50{width:391.706097pt;}
._4e{width:392.949441pt;}
._6f{width:439.191732pt;}
._57{width:459.982087pt;}
._42{width:467.437866pt;}
._79{width:507.422409pt;}
._49{width:514.062769pt;}
._23{width:525.419150pt;}
._46{width:530.099737pt;}
._56{width:534.913474pt;}
._2b{width:562.634616pt;}
._3a{width:568.113619pt;}
._3b{width:582.028914pt;}
._3d{width:632.928219pt;}
._39{width:832.306589pt;}
._36{width:856.209507pt;}
._35{width:861.445875pt;}
._11{width:931.704503pt;}
._34{width:964.311415pt;}
._37{width:1016.151459pt;}
._3c{width:1094.648626pt;}
._2c{width:1127.454349pt;}
._26{width:1171.963477pt;}
._2e{width:1203.344219pt;}
._25{width:1326.436333pt;}
._27{width:1329.878892pt;}
._2d{width:1412.904415pt;}
._29{width:1434.548070pt;}
._24{width:1483.818282pt;}
._5e{width:1568.932219pt;}
._2a{width:1570.334718pt;}
._7c{width:1572.073553pt;}
._73{width:1573.300219pt;}
._77{width:1578.942886pt;}
._6c{width:1581.502886pt;}
._30{width:1591.044219pt;}
._21{width:1594.590886pt;}
._14{width:1595.812219pt;}
._33{width:1598.084219pt;}
._19{width:1601.460219pt;}
._28{width:1710.562845pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:42.512621pt;}
.fsf{font-size:46.549251pt;}
.fse{font-size:47.790960pt;}
.fs11{font-size:47.820800pt;}
.fs10{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.181867pt;}
.fs9{font-size:58.447467pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:76.513067pt;}
.fs7{font-size:79.701333pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:111.581333pt;}
.fsb{font-size:132.197867pt;}
.fs8{font-size:170.028800pt;}
.fs5{font-size:653.549333pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:19.507535pt;}
.y67{bottom:31.455275pt;}
.y74{bottom:32.023028pt;}
.y66{bottom:43.403015pt;}
.y86{bottom:54.673333pt;}
.y65{bottom:55.350755pt;}
.y73{bottom:56.473194pt;}
.y5{bottom:59.133337pt;}
.y49{bottom:59.729926pt;}
.y5e{bottom:69.249768pt;}
.y72{bottom:70.927826pt;}
.y64{bottom:72.419112pt;}
.y5d{bottom:81.197508pt;}
.y63{bottom:84.366852pt;}
.y56{bottom:85.415747pt;}
.y4{bottom:86.333337pt;}
.y5c{bottom:93.145248pt;}
.y48{bottom:95.860593pt;}
.y62{bottom:96.314592pt;}
.y5b{bottom:105.092988pt;}
.y61{bottom:111.676128pt;}
.y47{bottom:113.925926pt;}
.y71{bottom:122.591138pt;}
.y77{bottom:122.700452pt;}
.y60{bottom:123.623868pt;}
.y20{bottom:123.790666pt;}
.y51{bottom:131.452019pt;}
.y46{bottom:131.991259pt;}
.y5f{bottom:135.571608pt;}
.y70{bottom:136.928417pt;}
.y27{bottom:137.408000pt;}
.y14f{bottom:147.764000pt;}
.y50{bottom:149.517353pt;}
.y45{bottom:150.056593pt;}
.y6f{bottom:151.863096pt;}
.y5a{bottom:156.053552pt;}
.y14e{bottom:163.705333pt;}
.y6e{bottom:166.851104pt;}
.y59{bottom:168.001292pt;}
.y44{bottom:168.123259pt;}
.y17{bottom:175.052000pt;}
.y14d{bottom:179.645333pt;}
.y6d{bottom:181.337740pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.yd1{bottom:190.168000pt;}
.y14c{bottom:195.585333pt;}
.y6c{bottom:195.792376pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y58{bottom:200.431028pt;}
.y43{bottom:203.697926pt;}
.yd0{bottom:206.109333pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y6b{bottom:210.247012pt;}
.y14b{bottom:211.525333pt;}
.y57{bottom:212.378768pt;}
.ycf{bottom:222.049333pt;}
.y6a{bottom:224.690988pt;}
.y1e1{bottom:226.518667pt;}
.y14a{bottom:227.465333pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y76{bottom:231.153788pt;}
.y26{bottom:235.224000pt;}
.yce{bottom:237.989333pt;}
.y42{bottom:239.845393pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y75{bottom:243.101528pt;}
.y149{bottom:243.406667pt;}
.y69{bottom:249.218693pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.ycd{bottom:253.929333pt;}
.y41{bottom:257.910726pt;}
.y148{bottom:259.346667pt;}
.y1e0{bottom:261.216000pt;}
.y194{bottom:262.121333pt;}
.ya5{bottom:265.844000pt;}
.ycc{bottom:269.869333pt;}
.y147{bottom:275.286667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y1df{bottom:277.156000pt;}
.y25{bottom:277.732000pt;}
.y193{bottom:278.062667pt;}
.y16e{bottom:282.682667pt;}
.ycb{bottom:285.809333pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y1b8{bottom:289.876000pt;}
.y146{bottom:291.226667pt;}
.y1de{bottom:293.096000pt;}
.y192{bottom:294.002667pt;}
.y20a{bottom:300.641333pt;}
.yca{bottom:301.750667pt;}
.ya4{bottom:301.814667pt;}
.y16d{bottom:302.022667pt;}
.y1b7{bottom:305.816000pt;}
.y145{bottom:307.166667pt;}
.y128{bottom:308.640000pt;}
.y1dd{bottom:309.036000pt;}
.ye{bottom:309.452000pt;}
.y191{bottom:309.942667pt;}
.y209{bottom:316.581333pt;}
.yc9{bottom:317.690667pt;}
.ya3{bottom:317.754667pt;}
.y24{bottom:320.238667pt;}
.y1b6{bottom:321.756000pt;}
.y16c{bottom:322.690667pt;}
.y144{bottom:323.106667pt;}
.y1dc{bottom:324.976000pt;}
.y190{bottom:325.882667pt;}
.y127{bottom:326.705333pt;}
.y208{bottom:332.521333pt;}
.yc8{bottom:333.630667pt;}
.ya2{bottom:335.661333pt;}
.y1b5{bottom:337.696000pt;}
.y143{bottom:339.048000pt;}
.y1db{bottom:340.917333pt;}
.y18f{bottom:341.822667pt;}
.yd{bottom:343.809333pt;}
.y16b{bottom:344.293333pt;}
.y126{bottom:344.770667pt;}
.y108{bottom:346.289333pt;}
.y207{bottom:348.461333pt;}
.yc7{bottom:349.570667pt;}
.y1b4{bottom:353.636000pt;}
.y142{bottom:354.988000pt;}
.ya1{bottom:356.328000pt;}
.y1da{bottom:356.857333pt;}
.y18e{bottom:357.762667pt;}
.y107{bottom:362.229333pt;}
.y16a{bottom:362.358667pt;}
.yc{bottom:362.706666pt;}
.y125{bottom:362.836000pt;}
.y206{bottom:364.401333pt;}
.yc6{bottom:365.510667pt;}
.y1b3{bottom:369.576000pt;}
.y141{bottom:370.928000pt;}
.y1d9{bottom:372.797333pt;}
.y18d{bottom:373.704000pt;}
.y40{bottom:375.452019pt;}
.y106{bottom:378.169333pt;}
.y205{bottom:380.342667pt;}
.yc5{bottom:381.450667pt;}
.y1b2{bottom:385.517333pt;}
.y140{bottom:386.868000pt;}
.y1d8{bottom:388.737333pt;}
.y18c{bottom:389.644000pt;}
.ya0{bottom:392.298667pt;}
.y3f{bottom:393.517353pt;}
.y105{bottom:394.109333pt;}
.y169{bottom:394.730667pt;}
.y204{bottom:396.282667pt;}
.yc4{bottom:397.392000pt;}
.y124{bottom:400.004000pt;}
.y1b1{bottom:401.457333pt;}
.y13f{bottom:402.808000pt;}
.y1d7{bottom:404.677333pt;}
.y18b{bottom:405.584000pt;}
.y9f{bottom:408.238667pt;}
.y104{bottom:410.050667pt;}
.y3e{bottom:411.582686pt;}
.y203{bottom:412.222667pt;}
.y168{bottom:414.070667pt;}
.yc3{bottom:415.297333pt;}
.y1b0{bottom:417.397333pt;}
.y13e{bottom:418.748000pt;}
.y123{bottom:419.344000pt;}
.y18a{bottom:421.524000pt;}
.y1d6{bottom:422.584000pt;}
.y103{bottom:425.990667pt;}
.y9e{bottom:426.145333pt;}
.y202{bottom:428.162667pt;}
.y3d{bottom:429.649353pt;}
.y1af{bottom:433.337333pt;}
.yc2{bottom:433.362667pt;}
.y13d{bottom:434.689333pt;}
.y167{bottom:434.737333pt;}
.y189{bottom:437.464000pt;}
.y122{bottom:440.012000pt;}
.y1d5{bottom:441.922667pt;}
.y102{bottom:441.930667pt;}
.y201{bottom:444.102667pt;}
.y85{bottom:445.376000pt;}
.y9d{bottom:446.813333pt;}
.y13c{bottom:450.629333pt;}
.y1ae{bottom:451.244000pt;}
.yc1{bottom:452.702667pt;}
.y166{bottom:452.804000pt;}
.y188{bottom:453.404000pt;}
.y101{bottom:457.870667pt;}
.y121{bottom:458.077333pt;}
.y1d4{bottom:459.989333pt;}
.y200{bottom:462.009333pt;}
.yb{bottom:462.990669pt;}
.y84{bottom:463.441333pt;}
.y13b{bottom:468.534667pt;}
.y187{bottom:469.345333pt;}
.y1ad{bottom:470.597333pt;}
.yc0{bottom:470.768000pt;}
.y165{bottom:470.869333pt;}
.y100{bottom:473.810667pt;}
.y120{bottom:476.142667pt;}
.ya{bottom:478.990666pt;}
.y1d3{bottom:479.328000pt;}
.y1ff{bottom:480.074667pt;}
.y83{bottom:481.506667pt;}
.y9c{bottom:482.782667pt;}
.y186{bottom:485.285333pt;}
.y3c{bottom:486.358553pt;}
.y13a{bottom:487.889333pt;}
.y1ac{bottom:488.662667pt;}
.yff{bottom:489.750667pt;}
.ybf{bottom:490.108000pt;}
.y9{bottom:494.990666pt;}
.y1d2{bottom:498.666667pt;}
.y1fe{bottom:499.414667pt;}
.y82{bottom:499.572000pt;}
.y9b{bottom:500.689333pt;}
.y185{bottom:501.225333pt;}
.y164{bottom:503.241333pt;}
.y3b{bottom:504.423886pt;}
.yfe{bottom:505.692000pt;}
.y139{bottom:507.242667pt;}
.y1ab{bottom:508.017333pt;}
.ybe{bottom:508.173333pt;}
.y11f{bottom:508.342667pt;}
.y184{bottom:517.165333pt;}
.y1fd{bottom:517.480000pt;}
.y81{bottom:517.637333pt;}
.y1d1{bottom:518.006667pt;}
.y9a{bottom:521.357333pt;}
.yfd{bottom:521.632000pt;}
.y3a{bottom:522.490553pt;}
.y163{bottom:522.580000pt;}
.y138{bottom:526.597333pt;}
.y1aa{bottom:527.370667pt;}
.ybd{bottom:527.512000pt;}
.y11e{bottom:527.681333pt;}
.y183{bottom:533.105333pt;}
.y1fc{bottom:535.545333pt;}
.y80{bottom:535.704000pt;}
.y1d0{bottom:536.072000pt;}
.yfc{bottom:537.572000pt;}
.y39{bottom:540.555886pt;}
.y162{bottom:543.248000pt;}
.y1a9{bottom:545.436000pt;}
.ybc{bottom:545.577333pt;}
.y137{bottom:545.950667pt;}
.y11d{bottom:548.349333pt;}
.y182{bottom:551.012000pt;}
.yfb{bottom:553.512000pt;}
.y7f{bottom:553.769333pt;}
.y1fb{bottom:554.885333pt;}
.y1cf{bottom:555.412000pt;}
.y99{bottom:558.510667pt;}
.y38{bottom:558.621219pt;}
.y161{bottom:561.313333pt;}
.y1a8{bottom:564.790667pt;}
.ybb{bottom:564.917333pt;}
.y136{bottom:565.304000pt;}
.y11c{bottom:566.414667pt;}
.y181{bottom:569.077333pt;}
.yfa{bottom:569.452000pt;}
.y7e{bottom:571.834667pt;}
.y1fa{bottom:572.950667pt;}
.y8{bottom:573.786667pt;}
.y1ce{bottom:574.805333pt;}
.y37{bottom:576.686553pt;}
.y98{bottom:579.193333pt;}
.y160{bottom:579.378667pt;}
.yba{bottom:582.982667pt;}
.y1a2{bottom:584.144000pt;}
.y11b{bottom:584.480000pt;}
.y135{bottom:584.658667pt;}
.yf9{bottom:585.392000pt;}
.y180{bottom:588.417333pt;}
.y7d{bottom:589.900000pt;}
.y1f9{bottom:592.289333pt;}
.y7{bottom:592.685334pt;}
.y36{bottom:594.751886pt;}
.y4f{bottom:596.945353pt;}
.y1a7{bottom:598.756000pt;}
.yf8{bottom:601.333333pt;}
.yb9{bottom:602.322667pt;}
.y134{bottom:604.012000pt;}
.y17f{bottom:606.482667pt;}
.y7c{bottom:607.965333pt;}
.y1cd{bottom:609.502667pt;}
.y1f8{bottom:610.354667pt;}
.y15f{bottom:611.750667pt;}
.y35{bottom:612.818553pt;}
.y1a6{bottom:613.368000pt;}
.y97{bottom:615.164000pt;}
.y11a{bottom:616.680000pt;}
.yf7{bottom:617.273333pt;}
.yb8{bottom:620.388000pt;}
.y133{bottom:623.365333pt;}
.y1cc{bottom:625.442667pt;}
.y17e{bottom:625.821333pt;}
.y7b{bottom:626.030667pt;}
.y1a5{bottom:627.980000pt;}
.y1f7{bottom:629.694667pt;}
.y15e{bottom:631.090667pt;}
.y4e{bottom:633.076019pt;}
.yf6{bottom:633.213333pt;}
.y119{bottom:636.018667pt;}
.yb7{bottom:639.726667pt;}
.y1cb{bottom:641.382667pt;}
.y1a4{bottom:642.592000pt;}
.y17d{bottom:643.886667pt;}
.y7a{bottom:644.097333pt;}
.y6{bottom:645.598667pt;}
.y1f6{bottom:649.033333pt;}
.yf5{bottom:649.153333pt;}
.y96{bottom:649.700000pt;}
.y15d{bottom:651.758667pt;}
.y118{bottom:656.686667pt;}
.y1a3{bottom:657.204000pt;}
.y1ca{bottom:657.322667pt;}
.yb6{bottom:657.792000pt;}
.y132{bottom:659.350667pt;}
.y79{bottom:662.162667pt;}
.y17c{bottom:663.226667pt;}
.yf4{bottom:665.093333pt;}
.y95{bottom:667.766667pt;}
.y1f5{bottom:668.428000pt;}
.y3{bottom:668.977329pt;}
.y15c{bottom:669.824000pt;}
.y1c9{bottom:673.262667pt;}
.y117{bottom:674.752000pt;}
.y131{bottom:675.290667pt;}
.y1a1{bottom:676.597333pt;}
.yb4{bottom:677.132000pt;}
.ye0{bottom:679.981333pt;}
.y78{bottom:680.228000pt;}
.yf3{bottom:681.033333pt;}
.y17b{bottom:682.565333pt;}
.y94{bottom:685.832000pt;}
.y4d{bottom:687.273353pt;}
.y15b{bottom:687.889333pt;}
.y1c8{bottom:689.202667pt;}
.y130{bottom:691.230667pt;}
.yb3{bottom:691.744000pt;}
.y116{bottom:692.817333pt;}
.y1a0{bottom:694.662667pt;}
.yf2{bottom:696.974667pt;}
.ydf{bottom:698.048000pt;}
.y55{bottom:698.293414pt;}
.y17a{bottom:701.905333pt;}
.y1f4{bottom:703.124000pt;}
.y1c7{bottom:705.144000pt;}
.yb5{bottom:706.356000pt;}
.y12f{bottom:707.172000pt;}
.y19f{bottom:712.728000pt;}
.yf1{bottom:712.914667pt;}
.yde{bottom:716.113333pt;}
.y1f3{bottom:719.064000pt;}
.y15a{bottom:720.261333pt;}
.y1c6{bottom:721.084000pt;}
.y179{bottom:721.244000pt;}
.y12e{bottom:723.112000pt;}
.y34{bottom:724.352574pt;}
.y115{bottom:725.017333pt;}
.yb2{bottom:725.749333pt;}
.y4c{bottom:727.124019pt;}
.yf0{bottom:728.854667pt;}
.y19e{bottom:730.794667pt;}
.y1f2{bottom:735.005333pt;}
.y1c5{bottom:737.024000pt;}
.y93{bottom:738.273333pt;}
.y12d{bottom:739.052000pt;}
.y178{bottom:739.310667pt;}
.y159{bottom:739.601333pt;}
.yb1{bottom:743.814667pt;}
.y114{bottom:744.356000pt;}
.yef{bottom:744.794667pt;}
.y1f1{bottom:750.945333pt;}
.y1c4{bottom:752.964000pt;}
.y92{bottom:754.213333pt;}
.y12c{bottom:754.992000pt;}
.y177{bottom:758.649333pt;}
.y158{bottom:760.268000pt;}
.y33{bottom:760.484574pt;}
.yee{bottom:762.701333pt;}
.y113{bottom:765.024000pt;}
.y1f0{bottom:766.885333pt;}
.y4b{bottom:766.973353pt;}
.ydd{bottom:768.569333pt;}
.y1c3{bottom:770.870667pt;}
.y12b{bottom:770.932000pt;}
.y23{bottom:771.457333pt;}
.y91{bottom:772.120000pt;}
.y176{bottom:777.989333pt;}
.y157{bottom:778.334667pt;}
.y32{bottom:778.551241pt;}
.y2{bottom:781.661334pt;}
.yed{bottom:782.040000pt;}
.y1ef{bottom:782.825333pt;}
.y112{bottom:783.089333pt;}
.y19d{bottom:783.236000pt;}
.ydc{bottom:784.509333pt;}
.y12a{bottom:786.872000pt;}
.y1c2{bottom:788.936000pt;}
.y90{bottom:792.802667pt;}
.yb0{bottom:796.024000pt;}
.y175{bottom:796.054667pt;}
.y156{bottom:796.400000pt;}
.y31{bottom:796.616574pt;}
.y1ee{bottom:798.765333pt;}
.y19c{bottom:799.176000pt;}
.ydb{bottom:800.449333pt;}
.y111{bottom:801.154667pt;}
.yec{bottom:801.380000pt;}
.y129{bottom:802.813333pt;}
.y1c1{bottom:808.274667pt;}
.yaf{bottom:811.964000pt;}
.y174{bottom:814.120000pt;}
.y30{bottom:814.681907pt;}
.y1ed{bottom:814.705333pt;}
.y19b{bottom:815.116000pt;}
.yda{bottom:816.390667pt;}
.yeb{bottom:820.718667pt;}
.y1c0{bottom:826.341333pt;}
.y8f{bottom:828.772000pt;}
.yae{bottom:829.870667pt;}
.y1ec{bottom:830.646667pt;}
.y19a{bottom:831.056000pt;}
.yd9{bottom:832.330667pt;}
.y110{bottom:832.422667pt;}
.y2f{bottom:832.747241pt;}
.y171{bottom:833.458667pt;}
.yea{bottom:840.058667pt;}
.y1bf{bottom:845.680000pt;}
.y1eb{bottom:846.586667pt;}
.y8e{bottom:846.678667pt;}
.y199{bottom:846.997333pt;}
.y172{bottom:848.070667pt;}
.y155{bottom:848.110667pt;}
.yd8{bottom:850.236000pt;}
.y2e{bottom:850.812574pt;}
.y1{bottom:859.312000pt;}
.ye9{bottom:859.397333pt;}
.y173{bottom:862.682667pt;}
.y1be{bottom:863.745333pt;}
.y1ea{bottom:864.492000pt;}
.y198{bottom:864.902667pt;}
.y8d{bottom:865.241333pt;}
.yad{bottom:865.841333pt;}
.y10f{bottom:868.392000pt;}
.y154{bottom:868.778667pt;}
.y2d{bottom:868.879241pt;}
.ye8{bottom:878.737333pt;}
.yac{bottom:881.781333pt;}
.y170{bottom:882.077333pt;}
.y1e9{bottom:882.558667pt;}
.y20d{bottom:882.822667pt;}
.y1bd{bottom:883.085333pt;}
.y10e{bottom:884.332000pt;}
.y8c{bottom:885.924000pt;}
.yd7{bottom:886.221333pt;}
.y153{bottom:886.844000pt;}
.y21{bottom:888.390667pt;}
.y22{bottom:895.950667pt;}
.yab{bottom:897.721333pt;}
.ye7{bottom:898.076000pt;}
.y20c{bottom:898.762667pt;}
.y16f{bottom:900.142667pt;}
.y197{bottom:900.888000pt;}
.y1bc{bottom:901.150667pt;}
.y1e8{bottom:901.897333pt;}
.yd6{bottom:902.161333pt;}
.y10d{bottom:902.238667pt;}
.y152{bottom:904.909333pt;}
.y2c{bottom:905.026707pt;}
.yaa{bottom:915.628000pt;}
.y20b{bottom:916.669333pt;}
.y196{bottom:916.828000pt;}
.ye6{bottom:917.416000pt;}
.yd5{bottom:918.101333pt;}
.y1e7{bottom:919.962667pt;}
.y1bb{bottom:920.489333pt;}
.y10c{bottom:922.921333pt;}
.y8b{bottom:923.092000pt;}
.y2b{bottom:923.092041pt;}
.y195{bottom:934.734667pt;}
.ya9{bottom:934.966667pt;}
.yd4{bottom:936.008000pt;}
.ye5{bottom:936.754667pt;}
.y151{bottom:937.281333pt;}
.y1ba{bottom:938.556000pt;}
.y1e6{bottom:939.302667pt;}
.y8a{bottom:941.157333pt;}
.ya8{bottom:954.073333pt;}
.yd3{bottom:955.348000pt;}
.ye4{bottom:956.094667pt;}
.y150{bottom:956.621333pt;}
.y1b9{bottom:957.894667pt;}
.y1e5{bottom:958.641333pt;}
.y10b{bottom:958.890667pt;}
.y89{bottom:959.222667pt;}
.ya7{bottom:973.413333pt;}
.yd2{bottom:974.686667pt;}
.y10a{bottom:974.832000pt;}
.ye3{bottom:975.433333pt;}
.y1e4{bottom:976.706667pt;}
.y2a{bottom:977.272537pt;}
.y88{bottom:977.289333pt;}
.y54{bottom:979.028000pt;}
.y109{bottom:992.737333pt;}
.ya6{bottom:992.752000pt;}
.ye2{bottom:994.773333pt;}
.y87{bottom:995.354667pt;}
.y29{bottom:995.354670pt;}
.y4a{bottom:995.801351pt;}
.y1e3{bottom:996.046667pt;}
.y53{bottom:1013.420000pt;}
.y28{bottom:1013.420003pt;}
.ye1{bottom:1014.112000pt;}
.y1e2{bottom:1015.385333pt;}
.y52{bottom:1060.573333pt;}
.h7{height:28.560000pt;}
.h13{height:29.061362pt;}
.h18{height:31.820777pt;}
.h14{height:32.669602pt;}
.h15{height:32.692937pt;}
.h17{height:34.230064pt;}
.h16{height:34.252793pt;}
.h1a{height:35.339571pt;}
.h19{height:38.734589pt;}
.h1b{height:38.739922pt;}
.h6{height:40.800000pt;}
.he{height:42.414581pt;}
.hd{height:42.608203pt;}
.h3{height:42.840000pt;}
.h10{height:42.996399pt;}
.h2{height:48.960000pt;}
.h11{height:56.390130pt;}
.hb{height:58.739883pt;}
.h5{height:69.360000pt;}
.ha{height:82.235443pt;}
.hf{height:97.429828pt;}
.h4{height:105.826671pt;}
.hc{height:125.311226pt;}
.h12{height:276.294821pt;}
.h9{height:482.972957pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:555.606892pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:4.537224pt;}
.x7{left:75.590667pt;}
.x8{left:77.480000pt;}
.xb{left:88.457396pt;}
.x1{left:90.706667pt;}
.xe{left:92.112278pt;}
.x2{left:94.486667pt;}
.x9{left:119.056000pt;}
.x10{left:123.573333pt;}
.x17{left:137.953333pt;}
.xf{left:142.399452pt;}
.x4{left:180.874667pt;}
.x21{left:292.725333pt;}
.x12{left:297.404000pt;}
.x23{left:298.334667pt;}
.x11{left:309.813333pt;}
.x1c{left:311.540000pt;}
.x1a{left:319.570667pt;}
.x18{left:320.749333pt;}
.xd{left:342.000136pt;}
.x28{left:358.440000pt;}
.x19{left:363.778667pt;}
.x29{left:364.774667pt;}
.x1e{left:369.896000pt;}
.xa{left:370.978679pt;}
.x1d{left:384.450667pt;}
.x3{left:404.408000pt;}
.x5{left:424.577333pt;}
.x20{left:449.882667pt;}
.x1f{left:461.856000pt;}
.x14{left:530.749333pt;}
.x13{left:535.818667pt;}
.x16{left:610.444000pt;}
.x15{left:612.028000pt;}
.x22{left:616.342667pt;}
.x1b{left:620.973333pt;}
.x26{left:642.904000pt;}
.x27{left:643.860000pt;}
.x25{left:646.221333pt;}
.x24{left:648.428000pt;}
.x6{left:740.397333pt;}
}




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