
    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_9af9aec45876f3355f997384.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.219000;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_ce2a35d1fe9703156e4ae2d7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932000;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_e4d6debdca9a8abbc56f3172.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.688000;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_d753be7e7036a31ab33b9b07.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.199000;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_c0ddbdf5b58fc756a5e60f49.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.183000;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_0204fa07240e95ce97b094fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.907000;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_fd2e0d39ceb63ff85c93c7b4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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);}
.m5{transform:matrix(0.300010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300010,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.305568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305568,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.318194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318194,0.000000,0.000000,0.250000,0,0);}
.m3{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;}
.v2{vertical-align:23.930610px;}
.v1{vertical-align:47.903130px;}
.ls9{letter-spacing:-0.754799px;}
.ls8{letter-spacing:-0.712470px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000276px;}
.ls6{letter-spacing:0.000419px;}
.ls0{letter-spacing:0.003276px;}
.lsd{letter-spacing:11.973000px;}
.ls16{letter-spacing:12.656820px;}
.ls5{letter-spacing:13.470000px;}
.ls7{letter-spacing:13.955611px;}
.lse{letter-spacing:13.956030px;}
.lsb{letter-spacing:14.170440px;}
.ls3{letter-spacing:15.590520px;}
.ls13{letter-spacing:15.786840px;}
.ls11{letter-spacing:15.947557px;}
.ls2{letter-spacing:15.948036px;}
.lsa{letter-spacing:16.164000px;}
.ls14{letter-spacing:17.780400px;}
.ls15{letter-spacing:18.211440px;}
.lsc{letter-spacing:21.120960px;}
.ls12{letter-spacing:23.168400px;}
.ls10{letter-spacing:316.329480px;}
.lsf{letter-spacing:562.347864px;}
.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;}
}
.wse0{word-spacing:-63.093480px;}
.ws99{word-spacing:-59.052480px;}
.wsb5{word-spacing:-55.841593px;}
.ws58{word-spacing:-48.866641px;}
.ws5{word-spacing:-47.895000px;}
.ws103{word-spacing:-47.567850px;}
.ws0{word-spacing:-39.894036px;}
.ws53{word-spacing:-34.911030px;}
.wse1{word-spacing:-33.297840px;}
.wsc1{word-spacing:-33.028440px;}
.ws33{word-spacing:-32.597400px;}
.ws36{word-spacing:-32.543520px;}
.ws35{word-spacing:-32.489640px;}
.wsb8{word-spacing:-32.435760px;}
.ws1a{word-spacing:-32.381880px;}
.wsa{word-spacing:-32.328000px;}
.wsb{word-spacing:-32.274120px;}
.ws8c{word-spacing:-32.166360px;}
.ws97{word-spacing:-32.112480px;}
.ws12{word-spacing:-32.004720px;}
.ws13{word-spacing:-31.896960px;}
.wsc3{word-spacing:-31.843080px;}
.ws2a{word-spacing:-31.789200px;}
.wsc{word-spacing:-31.681440px;}
.wscc{word-spacing:-31.627560px;}
.wsbf{word-spacing:-31.519800px;}
.ws11{word-spacing:-31.412040px;}
.wsdf{word-spacing:-31.358160px;}
.ws66{word-spacing:-31.250400px;}
.wsdc{word-spacing:-31.196520px;}
.ws3a{word-spacing:-30.981000px;}
.wsc5{word-spacing:-30.927120px;}
.ws8e{word-spacing:-30.711600px;}
.wse{word-spacing:-30.603840px;}
.ws15{word-spacing:-30.442200px;}
.ws17{word-spacing:-30.388320px;}
.wscf{word-spacing:-30.280560px;}
.wsc8{word-spacing:-30.226680px;}
.ws8a{word-spacing:-30.172800px;}
.wscb{word-spacing:-30.065040px;}
.ws3{word-spacing:-29.923026px;}
.ws2b{word-spacing:-29.849520px;}
.ws64{word-spacing:-29.795640px;}
.ws9f{word-spacing:-29.741760px;}
.ws2d{word-spacing:-29.634000px;}
.ws22{word-spacing:-29.472360px;}
.ws67{word-spacing:-29.256840px;}
.wsf{word-spacing:-29.202960px;}
.ws10{word-spacing:-29.149080px;}
.wsd3{word-spacing:-29.095200px;}
.wsc0{word-spacing:-29.041320px;}
.ws20{word-spacing:-28.987440px;}
.wsd2{word-spacing:-28.825800px;}
.ws62{word-spacing:-28.771920px;}
.ws1d{word-spacing:-28.718040px;}
.ws1f{word-spacing:-28.610280px;}
.wsa9{word-spacing:-28.448640px;}
.ws65{word-spacing:-28.394760px;}
.wscd{word-spacing:-28.340880px;}
.wsd0{word-spacing:-28.287000px;}
.ws29{word-spacing:-28.233120px;}
.ws1e{word-spacing:-28.125360px;}
.ws21{word-spacing:-28.071480px;}
.wsb2{word-spacing:-27.921036px;}
.wsc9{word-spacing:-27.909840px;}
.wsce{word-spacing:-27.694320px;}
.wsa2{word-spacing:-27.640440px;}
.ws80{word-spacing:-27.532680px;}
.wsd4{word-spacing:-27.424920px;}
.ws8{word-spacing:-27.371040px;}
.ws1b{word-spacing:-27.317160px;}
.wsdd{word-spacing:-27.263280px;}
.ws34{word-spacing:-27.155520px;}
.wsd9{word-spacing:-27.101640px;}
.ws9c{word-spacing:-26.993880px;}
.ws6{word-spacing:-26.940000px;}
.wsd{word-spacing:-26.886120px;}
.ws78{word-spacing:-26.832240px;}
.ws31{word-spacing:-26.670600px;}
.ws14{word-spacing:-26.562840px;}
.ws24{word-spacing:-26.508960px;}
.wsd1{word-spacing:-26.455080px;}
.wsed{word-spacing:-26.436384px;}
.ws30{word-spacing:-26.401200px;}
.wsc6{word-spacing:-26.239560px;}
.ws93{word-spacing:-26.185680px;}
.wse3{word-spacing:-26.131800px;}
.ws7e{word-spacing:-26.077920px;}
.ws19{word-spacing:-26.024040px;}
.wse4{word-spacing:-25.916280px;}
.ws63{word-spacing:-25.754640px;}
.ws2c{word-spacing:-25.700760px;}
.ws59{word-spacing:-25.690411px;}
.ws8f{word-spacing:-25.539120px;}
.wsef{word-spacing:-25.439370px;}
.wsda{word-spacing:-25.323600px;}
.wsd5{word-spacing:-25.269720px;}
.ws83{word-spacing:-25.215840px;}
.wsaa{word-spacing:-25.108080px;}
.ws6a{word-spacing:-25.102414px;}
.ws69{word-spacing:-25.062180px;}
.ws96{word-spacing:-25.000320px;}
.ws54{word-spacing:-24.935022px;}
.ws82{word-spacing:-24.892560px;}
.wse6{word-spacing:-24.855948px;}
.wsc2{word-spacing:-24.623160px;}
.ws87{word-spacing:-24.569280px;}
.ws23{word-spacing:-24.515400px;}
.ws92{word-spacing:-24.407640px;}
.ws94{word-spacing:-24.353760px;}
.wse8{word-spacing:-24.329136px;}
.wsb7{word-spacing:-24.299880px;}
.ws8b{word-spacing:-24.246000px;}
.ws48{word-spacing:-24.140160px;}
.wsb9{word-spacing:-24.138240px;}
.ws47{word-spacing:-24.056340px;}
.wsdb{word-spacing:-24.030480px;}
.wsf0{word-spacing:-24.014430px;}
.wsb1{word-spacing:-23.993892px;}
.wsf1{word-spacing:-23.972520px;}
.ws4{word-spacing:-23.946000px;}
.ws37{word-spacing:-23.868840px;}
.wsa6{word-spacing:-23.814960px;}
.wse7{word-spacing:-23.802324px;}
.ws9b{word-spacing:-23.761080px;}
.ws84{word-spacing:-23.545560px;}
.wsa7{word-spacing:-23.437800px;}
.wse5{word-spacing:-23.383920px;}
.ws46{word-spacing:-23.343870px;}
.wsa5{word-spacing:-23.276160px;}
.ws9e{word-spacing:-23.222280px;}
.wsb6{word-spacing:-23.060640px;}
.ws3e{word-spacing:-23.006760px;}
.ws85{word-spacing:-22.845120px;}
.ws4a{word-spacing:-22.796592px;}
.wsc7{word-spacing:-22.791240px;}
.wsf3{word-spacing:-22.715220px;}
.ws79{word-spacing:-22.683480px;}
.ws86{word-spacing:-22.629600px;}
.ws95{word-spacing:-22.521840px;}
.wsf5{word-spacing:-22.463760px;}
.ws38{word-spacing:-22.414080px;}
.ws9{word-spacing:-22.360200px;}
.ws102{word-spacing:-22.254210px;}
.wsf4{word-spacing:-22.170390px;}
.ws6c{word-spacing:-22.165361px;}
.ws7b{word-spacing:-22.144680px;}
.ws49{word-spacing:-22.128480px;}
.ws51{word-spacing:-22.086570px;}
.wsab{word-spacing:-22.036920px;}
.ws100{word-spacing:-22.002750px;}
.ws16{word-spacing:-21.983040px;}
.ws81{word-spacing:-21.929160px;}
.wsff{word-spacing:-21.918930px;}
.ws57{word-spacing:-21.877020px;}
.ws88{word-spacing:-21.875280px;}
.ws106{word-spacing:-21.793200px;}
.ws9a{word-spacing:-21.713640px;}
.ws75{word-spacing:-21.709380px;}
.ws6d{word-spacing:-21.667470px;}
.wsee{word-spacing:-21.625560px;}
.ws6b{word-spacing:-21.624303px;}
.ws60{word-spacing:-21.500249px;}
.ws61{word-spacing:-21.499830px;}
.ws2e{word-spacing:-21.498120px;}
.ws10a{word-spacing:-21.457920px;}
.ws104{word-spacing:-21.374100px;}
.wsde{word-spacing:-21.282600px;}
.wse2{word-spacing:-21.228720px;}
.ws72{word-spacing:-21.164550px;}
.ws71{word-spacing:-21.122640px;}
.ws27{word-spacing:-21.067080px;}
.ws3c{word-spacing:-21.013200px;}
.ws42{word-spacing:-20.955000px;}
.wsb0{word-spacing:-20.913090px;}
.ws3f{word-spacing:-20.745450px;}
.ws3d{word-spacing:-20.743800px;}
.ws101{word-spacing:-20.577810px;}
.wsfb{word-spacing:-20.535900px;}
.wsa1{word-spacing:-20.474400px;}
.ws4c{word-spacing:-20.449884px;}
.ws56{word-spacing:-20.410170px;}
.ws6f{word-spacing:-20.284440px;}
.wsa0{word-spacing:-20.258880px;}
.ws1c{word-spacing:-20.205000px;}
.wsd8{word-spacing:-20.151120px;}
.wsa8{word-spacing:-20.097240px;}
.ws70{word-spacing:-20.074890px;}
.ws25{word-spacing:-20.043360px;}
.ws7f{word-spacing:-19.827840px;}
.wsf7{word-spacing:-19.781520px;}
.ws98{word-spacing:-19.666200px;}
.wsad{word-spacing:-19.655790px;}
.ws2f{word-spacing:-19.504560px;}
.ws5e{word-spacing:-19.404330px;}
.wsbd{word-spacing:-19.342920px;}
.ws44{word-spacing:-19.320510px;}
.wsca{word-spacing:-19.181280px;}
.ws28{word-spacing:-19.073520px;}
.ws108{word-spacing:-19.027140px;}
.ws55{word-spacing:-18.985230px;}
.ws7c{word-spacing:-18.965760px;}
.ws52{word-spacing:-18.943320px;}
.ws73{word-spacing:-18.901410px;}
.ws89{word-spacing:-18.858000px;}
.ws45{word-spacing:-18.649950px;}
.ws91{word-spacing:-18.588600px;}
.ws18{word-spacing:-18.373080px;}
.ws105{word-spacing:-18.230850px;}
.wsa4{word-spacing:-18.211440px;}
.wsf2{word-spacing:-18.147030px;}
.ws7d{word-spacing:-18.049800px;}
.ws26{word-spacing:-17.995920px;}
.wsf8{word-spacing:-17.811750px;}
.wsf9{word-spacing:-17.769840px;}
.wsfe{word-spacing:-17.727930px;}
.ws50{word-spacing:-17.644110px;}
.ws5c{word-spacing:-17.602200px;}
.ws8d{word-spacing:-17.457120px;}
.ws90{word-spacing:-17.403240px;}
.ws10b{word-spacing:-17.392650px;}
.ws76{word-spacing:-17.350740px;}
.wsac{word-spacing:-17.295480px;}
.wsd7{word-spacing:-17.187720px;}
.wsbe{word-spacing:-17.079960px;}
.ws3b{word-spacing:-16.972200px;}
.wsba{word-spacing:-16.810560px;}
.ws10c{word-spacing:-16.764000px;}
.wsa3{word-spacing:-16.648920px;}
.wsc4{word-spacing:-16.271760px;}
.ws41{word-spacing:-16.219170px;}
.wsd6{word-spacing:-16.217880px;}
.ws77{word-spacing:-15.995928px;}
.ws5f{word-spacing:-15.967710px;}
.wsfc{word-spacing:-15.716250px;}
.ws40{word-spacing:-15.590520px;}
.ws32{word-spacing:-15.463560px;}
.wsbb{word-spacing:-15.301920px;}
.wsf6{word-spacing:-15.297150px;}
.ws7{word-spacing:-14.499048px;}
.ws74{word-spacing:-14.458950px;}
.ws1{word-spacing:-14.006154px;}
.ws2{word-spacing:-14.000838px;}
.ws68{word-spacing:-13.956030px;}
.ws4b{word-spacing:-13.888680px;}
.wsbc{word-spacing:-13.577760px;}
.wsfd{word-spacing:-13.453110px;}
.ws9d{word-spacing:-13.362240px;}
.ws5a{word-spacing:-13.327380px;}
.ws5b{word-spacing:-13.285470px;}
.wsae{word-spacing:-13.201650px;}
.wsaf{word-spacing:-13.159740px;}
.ws10d{word-spacing:-13.117830px;}
.ws4e{word-spacing:-12.824460px;}
.ws4f{word-spacing:-12.782550px;}
.ws107{word-spacing:-12.614910px;}
.ws5d{word-spacing:-12.111990px;}
.ws39{word-spacing:-11.422560px;}
.ws43{word-spacing:-11.022330px;}
.ws6e{word-spacing:-9.806940px;}
.wsfa{word-spacing:-7.124700px;}
.ws7a{word-spacing:-6.950520px;}
.ws4d{word-spacing:0.000000px;}
.ws109{word-spacing:0.628650px;}
.wse9{word-spacing:319.521840px;}
.wsec{word-spacing:392.618616px;}
.wseb{word-spacing:428.537616px;}
.wsb3{word-spacing:432.427380px;}
.wsea{word-spacing:464.456616px;}
.wsb4{word-spacing:498.507828px;}
._8{margin-left:-2395.138020px;}
._9{margin-left:-1104.112680px;}
._1{margin-left:-28.125360px;}
._7{margin-left:-25.143300px;}
._3{margin-left:-20.582160px;}
._14{margin-left:-18.103680px;}
._13{margin-left:-15.844562px;}
._b{margin-left:-13.956030px;}
._15{margin-left:-12.614910px;}
._4{margin-left:-6.303960px;}
._5{margin-left:-4.795320px;}
._a{margin-left:-3.729990px;}
._2{width:1.131480px;}
._c{width:5.113020px;}
._6{width:11.973000px;}
._e{width:15.946020px;}
._d{width:20.955000px;}
._11{width:23.946000px;}
._10{width:107.709108px;}
._f{width:1058.798352px;}
._0{width:1200.866016px;}
._12{width:1794.656916px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:26.940000px;}
.fs8{font-size:29.934000px;}
.fs4{font-size:32.928000px;}
.fs1{font-size:35.922000px;}
.fs5{font-size:38.916000px;}
.fs6{font-size:41.910000px;}
.fs0{font-size:47.892000px;}
.fs3{font-size:53.880000px;}
.fs7{font-size:66.000000px;}
.fs2{font-size:95.790000px;}
.y0{bottom:0.000000px;}
.y61{bottom:69.411750px;}
.y5c{bottom:97.821892px;}
.y8a{bottom:97.836870px;}
.y199{bottom:97.843701px;}
.y60{bottom:97.847625px;}
.y158{bottom:97.867800px;}
.yab{bottom:97.902060px;}
.ydd{bottom:98.047590px;}
.y5b{bottom:109.797675px;}
.y89{bottom:109.812652px;}
.y198{bottom:111.313326px;}
.y5f{bottom:111.317250px;}
.y157{bottom:112.832970px;}
.yaa{bottom:112.867230px;}
.ydc{bottom:113.012760px;}
.y5a{bottom:121.773458px;}
.y88{bottom:121.788435px;}
.y197{bottom:124.782951px;}
.y5e{bottom:124.786875px;}
.y156{bottom:127.798140px;}
.ya9{bottom:127.832400px;}
.ydb{bottom:127.977930px;}
.y59{bottom:133.749240px;}
.y87{bottom:133.764217px;}
.y196{bottom:138.252576px;}
.y5d{bottom:138.256500px;}
.y155{bottom:142.763310px;}
.ya8{bottom:142.797570px;}
.yda{bottom:142.943100px;}
.y58{bottom:145.725023px;}
.y86{bottom:145.740000px;}
.y57{bottom:157.700805px;}
.y154{bottom:157.728480px;}
.ya7{bottom:157.762740px;}
.yd9{bottom:157.908270px;}
.y195{bottom:158.463000px;}
.y56{bottom:169.676588px;}
.y153{bottom:172.693650px;}
.ya6{bottom:172.727910px;}
.yd8{bottom:172.873440px;}
.y55{bottom:181.652370px;}
.y39{bottom:185.452740px;}
.y152{bottom:187.658820px;}
.ya5{bottom:187.693080px;}
.y194{bottom:187.753110px;}
.yd7{bottom:187.838610px;}
.y54{bottom:193.628153px;}
.y38{bottom:200.417910px;}
.y151{bottom:202.623990px;}
.ya4{bottom:202.658250px;}
.y193{bottom:202.718280px;}
.yd6{bottom:202.803780px;}
.y53{bottom:205.603935px;}
.y37{bottom:215.383080px;}
.y52{bottom:217.579718px;}
.y150{bottom:217.589160px;}
.ya3{bottom:217.623420px;}
.y192{bottom:217.683450px;}
.yd5{bottom:217.768950px;}
.y51{bottom:229.555500px;}
.y36{bottom:230.348250px;}
.y14f{bottom:232.554330px;}
.ya2{bottom:232.588590px;}
.y191{bottom:232.648620px;}
.yd4{bottom:232.734120px;}
.y35{bottom:245.313420px;}
.y14e{bottom:247.519500px;}
.ya1{bottom:247.553760px;}
.y190{bottom:247.613790px;}
.yd3{bottom:247.699290px;}
.y50{bottom:254.324850px;}
.y34{bottom:260.278590px;}
.y14d{bottom:262.484670px;}
.ya0{bottom:262.518930px;}
.y18f{bottom:262.578960px;}
.yd2{bottom:262.664460px;}
.y33{bottom:275.243760px;}
.y9f{bottom:277.484100px;}
.y18e{bottom:277.544130px;}
.yd1{bottom:277.629630px;}
.y14c{bottom:290.178990px;}
.y32{bottom:290.208930px;}
.y4f{bottom:290.249340px;}
.y9e{bottom:292.449270px;}
.y18d{bottom:292.509300px;}
.yd0{bottom:292.594800px;}
.y31{bottom:305.174100px;}
.y4e{bottom:305.214510px;}
.y9d{bottom:307.414440px;}
.y18c{bottom:307.474470px;}
.ycf{bottom:307.559970px;}
.y30{bottom:320.139270px;}
.y4d{bottom:320.179680px;}
.y9c{bottom:322.379610px;}
.y18b{bottom:322.439640px;}
.yce{bottom:322.525140px;}
.y14b{bottom:327.975810px;}
.y2f{bottom:335.104440px;}
.y4c{bottom:335.144850px;}
.y9b{bottom:337.344780px;}
.y18a{bottom:337.404810px;}
.ycd{bottom:337.490310px;}
.y14a{bottom:342.940980px;}
.y2e{bottom:350.069610px;}
.y4b{bottom:350.110020px;}
.y9a{bottom:352.309950px;}
.y189{bottom:352.369980px;}
.ycc{bottom:352.455480px;}
.y149{bottom:357.906150px;}
.y2d{bottom:365.034780px;}
.y4a{bottom:365.075190px;}
.y99{bottom:367.275120px;}
.y188{bottom:367.335150px;}
.ycb{bottom:367.420650px;}
.y148{bottom:372.871320px;}
.y2c{bottom:379.999950px;}
.y49{bottom:380.040360px;}
.y98{bottom:382.240290px;}
.y187{bottom:382.300320px;}
.yca{bottom:382.385820px;}
.y147{bottom:387.836490px;}
.y2b{bottom:394.965120px;}
.y48{bottom:395.005530px;}
.y97{bottom:397.205460px;}
.y186{bottom:397.265490px;}
.yc9{bottom:397.350990px;}
.y146{bottom:402.801660px;}
.y2a{bottom:409.930290px;}
.y47{bottom:409.970700px;}
.y96{bottom:412.170630px;}
.y185{bottom:412.230660px;}
.yc8{bottom:412.316160px;}
.y145{bottom:417.766830px;}
.y29{bottom:424.895460px;}
.y46{bottom:424.935870px;}
.y95{bottom:427.135800px;}
.y184{bottom:427.195830px;}
.yc7{bottom:427.281330px;}
.y143{bottom:429.738000px;}
.y144{bottom:432.732000px;}
.y142{bottom:432.734160px;}
.yc5{bottom:439.254000px;}
.y28{bottom:439.860630px;}
.y45{bottom:439.901040px;}
.y94{bottom:442.100970px;}
.y183{bottom:442.161000px;}
.yc6{bottom:442.246500px;}
.yc4{bottom:442.248330px;}
.y141{bottom:447.699330px;}
.yc2{bottom:454.221000px;}
.y27{bottom:454.825800px;}
.y44{bottom:454.866210px;}
.y93{bottom:457.066140px;}
.y182{bottom:457.126170px;}
.yc3{bottom:457.213500px;}
.yc1{bottom:457.224480px;}
.y13f{bottom:459.672000px;}
.y140{bottom:462.664500px;}
.y13e{bottom:462.682800px;}
.y26{bottom:469.790970px;}
.y43{bottom:469.831380px;}
.y92{bottom:472.031310px;}
.y181{bottom:472.091340px;}
.yc0{bottom:472.189650px;}
.y13d{bottom:477.647970px;}
.y25{bottom:484.756140px;}
.y42{bottom:484.796550px;}
.y91{bottom:486.996480px;}
.y180{bottom:487.056510px;}
.ybf{bottom:487.154820px;}
.y13c{bottom:492.613140px;}
.y24{bottom:499.721310px;}
.y41{bottom:499.761720px;}
.y90{bottom:501.961650px;}
.y17f{bottom:502.021680px;}
.ybe{bottom:502.119990px;}
.y13b{bottom:507.578310px;}
.y23{bottom:514.686480px;}
.y40{bottom:514.726890px;}
.y8f{bottom:516.926820px;}
.y17e{bottom:516.986850px;}
.ybd{bottom:517.085160px;}
.y13a{bottom:522.543480px;}
.y22{bottom:529.651650px;}
.y3f{bottom:529.692060px;}
.y8e{bottom:531.891990px;}
.y17d{bottom:531.952020px;}
.ybc{bottom:532.050330px;}
.y139{bottom:537.508650px;}
.yba{bottom:544.023000px;}
.y21{bottom:544.616820px;}
.y3e{bottom:544.657230px;}
.y8d{bottom:546.857160px;}
.y17c{bottom:546.917190px;}
.ybb{bottom:547.015500px;}
.yb9{bottom:547.086150px;}
.y138{bottom:552.473820px;}
.y20{bottom:559.581990px;}
.y3d{bottom:559.622400px;}
.y8c{bottom:561.822330px;}
.y17b{bottom:561.882360px;}
.yb8{bottom:562.051320px;}
.y137{bottom:567.438990px;}
.y1f{bottom:574.547160px;}
.y3c{bottom:574.587570px;}
.y8b{bottom:576.787500px;}
.y17a{bottom:576.847530px;}
.yb7{bottom:577.016490px;}
.y136{bottom:582.404160px;}
.y1e{bottom:589.512330px;}
.y3b{bottom:589.552740px;}
.y179{bottom:591.812700px;}
.yb6{bottom:591.981660px;}
.y135{bottom:597.369330px;}
.y1d{bottom:604.477500px;}
.y3a{bottom:604.517910px;}
.y178{bottom:606.777870px;}
.yb5{bottom:606.946830px;}
.y134{bottom:612.334500px;}
.y177{bottom:621.743040px;}
.yb4{bottom:621.912000px;}
.y133{bottom:626.926500px;}
.y132{bottom:631.042500px;}
.y176{bottom:636.708210px;}
.yb3{bottom:636.877170px;}
.y131{bottom:638.901000px;}
.y130{bottom:643.017000px;}
.y1c{bottom:645.654630px;}
.y12f{bottom:650.874000px;}
.y175{bottom:651.673380px;}
.yb2{bottom:651.842340px;}
.y1e4{bottom:654.541395px;}
.y1c1{bottom:654.551872px;}
.y12e{bottom:654.990000px;}
.y1b{bottom:660.619800px;}
.y12d{bottom:662.848500px;}
.y1e3{bottom:666.517177px;}
.y1c0{bottom:666.527655px;}
.y174{bottom:666.638550px;}
.yb1{bottom:666.807510px;}
.y12c{bottom:666.963000px;}
.y12b{bottom:674.821500px;}
.y1a{bottom:675.584970px;}
.y1e2{bottom:678.492960px;}
.y1bf{bottom:678.503437px;}
.y12a{bottom:678.937500px;}
.y173{bottom:681.603720px;}
.yb0{bottom:681.772680px;}
.y62{bottom:684.304800px;}
.y129{bottom:686.794500px;}
.y1be{bottom:690.479220px;}
.y19{bottom:690.550140px;}
.y128{bottom:690.910500px;}
.y1e1{bottom:691.212645px;}
.y172{bottom:696.568890px;}
.yaf{bottom:696.737850px;}
.y1bd{bottom:702.455002px;}
.y1e0{bottom:703.188427px;}
.y18{bottom:705.515310px;}
.y127{bottom:709.245000px;}
.y125{bottom:709.245375px;}
.y171{bottom:711.534060px;}
.yae{bottom:711.703020px;}
.y126{bottom:714.109500px;}
.y1bc{bottom:714.430785px;}
.y1df{bottom:715.908112px;}
.y17{bottom:720.480480px;}
.y124{bottom:722.715000px;}
.y122{bottom:722.716875px;}
.y1bb{bottom:726.406567px;}
.y170{bottom:726.499230px;}
.yad{bottom:726.668190px;}
.y123{bottom:727.579500px;}
.y1de{bottom:728.627797px;}
.y16{bottom:735.445650px;}
.y121{bottom:736.186500px;}
.y11f{bottom:736.186875px;}
.y1ba{bottom:738.382350px;}
.y120{bottom:741.049500px;}
.y1dd{bottom:741.347482px;}
.y16f{bottom:741.464400px;}
.yac{bottom:741.633360px;}
.y11e{bottom:749.656500px;}
.y11c{bottom:749.656875px;}
.y1b9{bottom:750.358132px;}
.y15{bottom:750.410820px;}
.y1dc{bottom:753.323265px;}
.y11d{bottom:754.521000px;}
.y16e{bottom:756.429570px;}
.y68{bottom:757.992217px;}
.y7e{bottom:758.270820px;}
.y1b8{bottom:762.333915px;}
.y11b{bottom:763.126500px;}
.y119{bottom:763.126875px;}
.y1db{bottom:765.299047px;}
.y14{bottom:765.375990px;}
.y11a{bottom:767.991000px;}
.y67{bottom:769.958370px;}
.y16d{bottom:771.394740px;}
.y7d{bottom:773.235990px;}
.y1b7{bottom:774.309697px;}
.y118{bottom:776.596500px;}
.y116{bottom:776.596875px;}
.y1da{bottom:778.018732px;}
.y13{bottom:780.341160px;}
.y117{bottom:781.461000px;}
.y66{bottom:781.934152px;}
.y1b6{bottom:786.285480px;}
.y16c{bottom:786.359910px;}
.ye1{bottom:787.419653px;}
.y7c{bottom:788.201160px;}
.y1d9{bottom:789.994515px;}
.y115{bottom:790.066500px;}
.y113{bottom:790.066875px;}
.y65{bottom:793.909935px;}
.y114{bottom:794.931000px;}
.y12{bottom:795.306330px;}
.y1b5{bottom:798.261262px;}
.ye0{bottom:799.395435px;}
.y16b{bottom:801.325080px;}
.y1d8{bottom:801.970297px;}
.y7b{bottom:803.166330px;}
.y112{bottom:803.536500px;}
.y110{bottom:803.538375px;}
.y64{bottom:805.885718px;}
.y111{bottom:808.401000px;}
.y1b4{bottom:810.237045px;}
.y11{bottom:810.271500px;}
.ydf{bottom:811.371218px;}
.y1d7{bottom:814.689982px;}
.y16a{bottom:816.290250px;}
.y10f{bottom:817.008000px;}
.y10d{bottom:817.008375px;}
.y63{bottom:817.861500px;}
.y7a{bottom:818.131500px;}
.y10e{bottom:821.871000px;}
.y1b3{bottom:822.212827px;}
.yde{bottom:823.347000px;}
.y1d6{bottom:826.665765px;}
.y10c{bottom:830.478000px;}
.y10a{bottom:830.478375px;}
.y169{bottom:831.255420px;}
.y79{bottom:833.096670px;}
.y1b2{bottom:834.188610px;}
.y10b{bottom:835.341000px;}
.y1d5{bottom:838.641547px;}
.y10{bottom:843.199500px;}
.y109{bottom:843.948000px;}
.y107{bottom:843.948375px;}
.y1b1{bottom:846.164392px;}
.y168{bottom:846.220590px;}
.y78{bottom:848.061840px;}
.y108{bottom:848.812500px;}
.y1d4{bottom:850.617330px;}
.y106{bottom:857.418000px;}
.y104{bottom:857.418375px;}
.y1b0{bottom:858.140175px;}
.y167{bottom:861.185760px;}
.y105{bottom:862.282500px;}
.y1d3{bottom:862.593112px;}
.y77{bottom:863.027010px;}
.y85{bottom:867.239805px;}
.ye{bottom:868.644330px;}
.y1af{bottom:870.115957px;}
.y103{bottom:870.888000px;}
.y101{bottom:870.888375px;}
.yf{bottom:874.255500px;}
.y1d2{bottom:874.568895px;}
.y102{bottom:875.752500px;}
.y166{bottom:876.150930px;}
.y76{bottom:877.992180px;}
.y84{bottom:879.215588px;}
.y1ae{bottom:882.091740px;}
.yb{bottom:883.605510px;}
.yd{bottom:883.609500px;}
.y100{bottom:884.358000px;}
.yff{bottom:884.358375px;}
.y1d1{bottom:887.288580px;}
.yc{bottom:889.222500px;}
.y165{bottom:891.116100px;}
.y83{bottom:891.191370px;}
.y1ad{bottom:894.067522px;}
.yfe{bottom:897.828000px;}
.yfc{bottom:897.829875px;}
.ya{bottom:898.570680px;}
.y1d0{bottom:899.264362px;}
.yfd{bottom:902.692500px;}
.y82{bottom:903.167153px;}
.y75{bottom:905.686500px;}
.y1ac{bottom:906.043305px;}
.y164{bottom:906.081270px;}
.y1cf{bottom:911.240145px;}
.yfb{bottom:911.299500px;}
.yf9{bottom:911.299875px;}
.y81{bottom:915.142935px;}
.yfa{bottom:916.162500px;}
.y1ab{bottom:918.019087px;}
.y8{bottom:919.530000px;}
.y163{bottom:921.046440px;}
.y1ce{bottom:923.959830px;}
.yf8{bottom:924.769500px;}
.yf6{bottom:924.769875px;}
.y9{bottom:925.143000px;}
.y80{bottom:927.118718px;}
.yf7{bottom:929.634000px;}
.y1aa{bottom:929.994870px;}
.y1cd{bottom:935.935612px;}
.y162{bottom:936.011610px;}
.yf5{bottom:938.239500px;}
.yf3{bottom:938.239875px;}
.y7f{bottom:939.094500px;}
.y74{bottom:940.478835px;}
.y1a9{bottom:941.970652px;}
.yf4{bottom:943.104000px;}
.y7{bottom:946.470187px;}
.y1cc{bottom:947.911395px;}
.y161{bottom:950.976780px;}
.yf2{bottom:951.709500px;}
.yf0{bottom:951.709875px;}
.y73{bottom:952.454617px;}
.y1a8{bottom:953.946435px;}
.yf1{bottom:956.574000px;}
.y1cb{bottom:960.631080px;}
.y72{bottom:964.430400px;}
.yef{bottom:965.179500px;}
.yed{bottom:965.179875px;}
.y1a7{bottom:965.922217px;}
.y160{bottom:965.941950px;}
.yee{bottom:970.044000px;}
.y1ca{bottom:972.606862px;}
.y6{bottom:973.411125px;}
.y71{bottom:976.406182px;}
.y1a6{bottom:977.898000px;}
.yeb{bottom:978.649500px;}
.y15f{bottom:980.907120px;}
.yec{bottom:983.514000px;}
.y1c9{bottom:984.582645px;}
.y70{bottom:988.381965px;}
.y1a5{bottom:989.873782px;}
.y15e{bottom:995.872290px;}
.y1c8{bottom:997.302330px;}
.ye9{bottom:999.603000px;}
.y5{bottom:1000.352062px;}
.y6f{bottom:1000.357747px;}
.y19e{bottom:1001.844622px;}
.ye8{bottom:1001.848500px;}
.y1a4{bottom:1001.849565px;}
.yea{bottom:1005.964500px;}
.y1c7{bottom:1009.278112px;}
.y15d{bottom:1010.837460px;}
.y19f{bottom:1011.951000px;}
.y6e{bottom:1012.333530px;}
.y19b{bottom:1012.510718px;}
.ye6{bottom:1013.816558px;}
.y19d{bottom:1013.820405px;}
.y1a3{bottom:1013.825347px;}
.ye7{bottom:1017.937500px;}
.ye4{bottom:1018.500000px;}
.y1c6{bottom:1021.997797px;}
.y6d{bottom:1024.309312px;}
.y19a{bottom:1024.486500px;}
.y15c{bottom:1025.802630px;}
.y4{bottom:1027.293000px;}
.y1a2{bottom:1030.285500px;}
.y1c5{bottom:1034.350770px;}
.ye5{bottom:1035.148747px;}
.y19c{bottom:1035.152595px;}
.y6c{bottom:1036.285095px;}
.y15b{bottom:1040.767800px;}
.y1c4{bottom:1046.703742px;}
.y6b{bottom:1048.260877px;}
.y15a{bottom:1055.732970px;}
.ye3{bottom:1057.975875px;}
.y1a1{bottom:1058.724375px;}
.y1c3{bottom:1059.800617px;}
.y6a{bottom:1060.236660px;}
.y159{bottom:1070.698140px;}
.ye2{bottom:1071.445500px;}
.y1c2{bottom:1072.153590px;}
.y1a0{bottom:1072.194000px;}
.y69{bottom:1072.212442px;}
.y3{bottom:1081.175250px;}
.y2{bottom:1094.644875px;}
.y1{bottom:1108.114500px;}
.h9{height:25.943220px;}
.hb{height:28.826442px;}
.h4{height:31.709664px;}
.he{height:39.688770px;}
.h6{height:40.359330px;}
.h8{height:40.397850px;}
.hc{height:45.353724px;}
.h1{height:46.119996px;}
.h5{height:51.024360px;}
.h3{height:51.886440px;}
.hd{height:64.289940px;}
.h7{height:68.835938px;}
.ha{height:88.262460px;}
.h2{height:92.245770px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:87.072000px;}
.x4b{left:92.303610px;}
.x1e{left:97.549500px;}
.x1b{left:99.045000px;}
.x16{left:100.542000px;}
.x39{left:102.604500px;}
.x38{left:104.358000px;}
.x32{left:105.990000px;}
.x34{left:109.977000px;}
.x43{left:111.643500px;}
.x37{left:114.970500px;}
.x44{left:117.630000px;}
.x28{left:118.714500px;}
.x3b{left:121.653000px;}
.x46{left:126.610500px;}
.x3f{left:128.584500px;}
.x48{left:130.597500px;}
.x49{left:135.591000px;}
.x2{left:139.719000px;}
.x15{left:140.953500px;}
.x3c{left:144.243000px;}
.x14{left:154.423500px;}
.x40{left:180.774807px;}
.x3{left:183.111870px;}
.x29{left:185.296353px;}
.xd{left:195.832650px;}
.x4{left:206.532525px;}
.x3a{left:218.674500px;}
.xe{left:223.850250px;}
.x3d{left:224.874420px;}
.x5{left:228.612120px;}
.x4a{left:231.822000px;}
.x2b{left:233.104185px;}
.x6{left:234.666000px;}
.x31{left:237.634500px;}
.x2d{left:243.939000px;}
.x11{left:249.763650px;}
.x33{left:251.146500px;}
.x42{left:257.503613px;}
.x2e{left:261.880500px;}
.x45{left:269.868000px;}
.x35{left:277.542000px;}
.x2c{left:283.905000px;}
.x2a{left:319.375920px;}
.x13{left:333.907500px;}
.x41{left:337.069748px;}
.x7{left:366.172500px;}
.x8{left:383.749500px;}
.x2f{left:396.736403px;}
.x47{left:410.476500px;}
.x36{left:418.129500px;}
.x30{left:441.384000px;}
.x1c{left:447.758625px;}
.x18{left:473.216490px;}
.x1a{left:483.696000px;}
.x27{left:485.191500px;}
.x17{left:486.686490px;}
.x4c{left:491.664000px;}
.x24{left:526.458000px;}
.x9{left:531.174000px;}
.x26{left:536.721000px;}
.xa{left:540.894000px;}
.x25{left:544.855500px;}
.x19{left:560.300040px;}
.xf{left:563.391000px;}
.x10{left:573.111000px;}
.x3e{left:587.763000px;}
.x1f{left:622.374000px;}
.x20{left:650.038500px;}
.x12{left:664.635000px;}
.x21{left:668.436000px;}
.xb{left:672.888000px;}
.xc{left:678.126000px;}
.x22{left:783.481500px;}
.x23{left:801.879000px;}
.x1d{left:889.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.271653pt;}
.v1{vertical-align:42.580560pt;}
.ls9{letter-spacing:-0.670933pt;}
.ls8{letter-spacing:-0.633307pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000245pt;}
.ls6{letter-spacing:0.000373pt;}
.ls0{letter-spacing:0.002912pt;}
.lsd{letter-spacing:10.642667pt;}
.ls16{letter-spacing:11.250507pt;}
.ls5{letter-spacing:11.973333pt;}
.ls7{letter-spacing:12.404987pt;}
.lse{letter-spacing:12.405360pt;}
.lsb{letter-spacing:12.595947pt;}
.ls3{letter-spacing:13.858240pt;}
.ls13{letter-spacing:14.032747pt;}
.ls11{letter-spacing:14.175606pt;}
.ls2{letter-spacing:14.176032pt;}
.lsa{letter-spacing:14.368000pt;}
.ls14{letter-spacing:15.804800pt;}
.ls15{letter-spacing:16.187947pt;}
.lsc{letter-spacing:18.774187pt;}
.ls12{letter-spacing:20.594133pt;}
.ls10{letter-spacing:281.181760pt;}
.lsf{letter-spacing:499.864768pt;}
.wse0{word-spacing:-56.083093pt;}
.ws99{word-spacing:-52.491093pt;}
.wsb5{word-spacing:-49.636972pt;}
.ws58{word-spacing:-43.437014pt;}
.ws5{word-spacing:-42.573333pt;}
.ws103{word-spacing:-42.282533pt;}
.ws0{word-spacing:-35.461365pt;}
.ws53{word-spacing:-31.032027pt;}
.wse1{word-spacing:-29.598080pt;}
.wsc1{word-spacing:-29.358613pt;}
.ws33{word-spacing:-28.975467pt;}
.ws36{word-spacing:-28.927573pt;}
.ws35{word-spacing:-28.879680pt;}
.wsb8{word-spacing:-28.831787pt;}
.ws1a{word-spacing:-28.783893pt;}
.wsa{word-spacing:-28.736000pt;}
.wsb{word-spacing:-28.688107pt;}
.ws8c{word-spacing:-28.592320pt;}
.ws97{word-spacing:-28.544427pt;}
.ws12{word-spacing:-28.448640pt;}
.ws13{word-spacing:-28.352853pt;}
.wsc3{word-spacing:-28.304960pt;}
.ws2a{word-spacing:-28.257067pt;}
.wsc{word-spacing:-28.161280pt;}
.wscc{word-spacing:-28.113387pt;}
.wsbf{word-spacing:-28.017600pt;}
.ws11{word-spacing:-27.921813pt;}
.wsdf{word-spacing:-27.873920pt;}
.ws66{word-spacing:-27.778133pt;}
.wsdc{word-spacing:-27.730240pt;}
.ws3a{word-spacing:-27.538667pt;}
.wsc5{word-spacing:-27.490773pt;}
.ws8e{word-spacing:-27.299200pt;}
.wse{word-spacing:-27.203413pt;}
.ws15{word-spacing:-27.059733pt;}
.ws17{word-spacing:-27.011840pt;}
.wscf{word-spacing:-26.916053pt;}
.wsc8{word-spacing:-26.868160pt;}
.ws8a{word-spacing:-26.820267pt;}
.wscb{word-spacing:-26.724480pt;}
.ws3{word-spacing:-26.598245pt;}
.ws2b{word-spacing:-26.532907pt;}
.ws64{word-spacing:-26.485013pt;}
.ws9f{word-spacing:-26.437120pt;}
.ws2d{word-spacing:-26.341333pt;}
.ws22{word-spacing:-26.197653pt;}
.ws67{word-spacing:-26.006080pt;}
.wsf{word-spacing:-25.958187pt;}
.ws10{word-spacing:-25.910293pt;}
.wsd3{word-spacing:-25.862400pt;}
.wsc0{word-spacing:-25.814507pt;}
.ws20{word-spacing:-25.766613pt;}
.wsd2{word-spacing:-25.622933pt;}
.ws62{word-spacing:-25.575040pt;}
.ws1d{word-spacing:-25.527147pt;}
.ws1f{word-spacing:-25.431360pt;}
.wsa9{word-spacing:-25.287680pt;}
.ws65{word-spacing:-25.239787pt;}
.wscd{word-spacing:-25.191893pt;}
.wsd0{word-spacing:-25.144000pt;}
.ws29{word-spacing:-25.096107pt;}
.ws1e{word-spacing:-25.000320pt;}
.ws21{word-spacing:-24.952427pt;}
.wsb2{word-spacing:-24.818699pt;}
.wsc9{word-spacing:-24.808747pt;}
.wsce{word-spacing:-24.617173pt;}
.wsa2{word-spacing:-24.569280pt;}
.ws80{word-spacing:-24.473493pt;}
.wsd4{word-spacing:-24.377707pt;}
.ws8{word-spacing:-24.329813pt;}
.ws1b{word-spacing:-24.281920pt;}
.wsdd{word-spacing:-24.234027pt;}
.ws34{word-spacing:-24.138240pt;}
.wsd9{word-spacing:-24.090347pt;}
.ws9c{word-spacing:-23.994560pt;}
.ws6{word-spacing:-23.946667pt;}
.wsd{word-spacing:-23.898773pt;}
.ws78{word-spacing:-23.850880pt;}
.ws31{word-spacing:-23.707200pt;}
.ws14{word-spacing:-23.611413pt;}
.ws24{word-spacing:-23.563520pt;}
.wsd1{word-spacing:-23.515627pt;}
.wsed{word-spacing:-23.499008pt;}
.ws30{word-spacing:-23.467733pt;}
.wsc6{word-spacing:-23.324053pt;}
.ws93{word-spacing:-23.276160pt;}
.wse3{word-spacing:-23.228267pt;}
.ws7e{word-spacing:-23.180373pt;}
.ws19{word-spacing:-23.132480pt;}
.wse4{word-spacing:-23.036693pt;}
.ws63{word-spacing:-22.893013pt;}
.ws2c{word-spacing:-22.845120pt;}
.ws59{word-spacing:-22.835921pt;}
.ws8f{word-spacing:-22.701440pt;}
.wsef{word-spacing:-22.612773pt;}
.wsda{word-spacing:-22.509867pt;}
.wsd5{word-spacing:-22.461973pt;}
.ws83{word-spacing:-22.414080pt;}
.wsaa{word-spacing:-22.318293pt;}
.ws6a{word-spacing:-22.313257pt;}
.ws69{word-spacing:-22.277493pt;}
.ws96{word-spacing:-22.222507pt;}
.ws54{word-spacing:-22.164464pt;}
.ws82{word-spacing:-22.126720pt;}
.wse6{word-spacing:-22.094176pt;}
.wsc2{word-spacing:-21.887253pt;}
.ws87{word-spacing:-21.839360pt;}
.ws23{word-spacing:-21.791467pt;}
.ws92{word-spacing:-21.695680pt;}
.ws94{word-spacing:-21.647787pt;}
.wse8{word-spacing:-21.625899pt;}
.wsb7{word-spacing:-21.599893pt;}
.ws8b{word-spacing:-21.552000pt;}
.ws48{word-spacing:-21.457920pt;}
.wsb9{word-spacing:-21.456213pt;}
.ws47{word-spacing:-21.383413pt;}
.wsdb{word-spacing:-21.360427pt;}
.wsf0{word-spacing:-21.346160pt;}
.wsb1{word-spacing:-21.327904pt;}
.wsf1{word-spacing:-21.308907pt;}
.ws4{word-spacing:-21.285333pt;}
.ws37{word-spacing:-21.216747pt;}
.wsa6{word-spacing:-21.168853pt;}
.wse7{word-spacing:-21.157621pt;}
.ws9b{word-spacing:-21.120960pt;}
.ws84{word-spacing:-20.929387pt;}
.wsa7{word-spacing:-20.833600pt;}
.wse5{word-spacing:-20.785707pt;}
.ws46{word-spacing:-20.750107pt;}
.wsa5{word-spacing:-20.689920pt;}
.ws9e{word-spacing:-20.642027pt;}
.wsb6{word-spacing:-20.498347pt;}
.ws3e{word-spacing:-20.450453pt;}
.ws85{word-spacing:-20.306773pt;}
.ws4a{word-spacing:-20.263637pt;}
.wsc7{word-spacing:-20.258880pt;}
.wsf3{word-spacing:-20.191307pt;}
.ws79{word-spacing:-20.163093pt;}
.ws86{word-spacing:-20.115200pt;}
.ws95{word-spacing:-20.019413pt;}
.wsf5{word-spacing:-19.967787pt;}
.ws38{word-spacing:-19.923627pt;}
.ws9{word-spacing:-19.875733pt;}
.ws102{word-spacing:-19.781520pt;}
.wsf4{word-spacing:-19.707013pt;}
.ws6c{word-spacing:-19.702543pt;}
.ws7b{word-spacing:-19.684160pt;}
.ws49{word-spacing:-19.669760pt;}
.ws51{word-spacing:-19.632507pt;}
.wsab{word-spacing:-19.588373pt;}
.ws100{word-spacing:-19.558000pt;}
.ws16{word-spacing:-19.540480pt;}
.ws81{word-spacing:-19.492587pt;}
.wsff{word-spacing:-19.483493pt;}
.ws57{word-spacing:-19.446240pt;}
.ws88{word-spacing:-19.444693pt;}
.ws106{word-spacing:-19.371733pt;}
.ws9a{word-spacing:-19.301013pt;}
.ws75{word-spacing:-19.297227pt;}
.ws6d{word-spacing:-19.259973pt;}
.wsee{word-spacing:-19.222720pt;}
.ws6b{word-spacing:-19.221602pt;}
.ws60{word-spacing:-19.111333pt;}
.ws61{word-spacing:-19.110960pt;}
.ws2e{word-spacing:-19.109440pt;}
.ws10a{word-spacing:-19.073707pt;}
.ws104{word-spacing:-18.999200pt;}
.wsde{word-spacing:-18.917867pt;}
.wse2{word-spacing:-18.869973pt;}
.ws72{word-spacing:-18.812933pt;}
.ws71{word-spacing:-18.775680pt;}
.ws27{word-spacing:-18.726293pt;}
.ws3c{word-spacing:-18.678400pt;}
.ws42{word-spacing:-18.626667pt;}
.wsb0{word-spacing:-18.589413pt;}
.ws3f{word-spacing:-18.440400pt;}
.ws3d{word-spacing:-18.438933pt;}
.ws101{word-spacing:-18.291387pt;}
.wsfb{word-spacing:-18.254133pt;}
.wsa1{word-spacing:-18.199467pt;}
.ws4c{word-spacing:-18.177675pt;}
.ws56{word-spacing:-18.142373pt;}
.ws6f{word-spacing:-18.030613pt;}
.wsa0{word-spacing:-18.007893pt;}
.ws1c{word-spacing:-17.960000pt;}
.wsd8{word-spacing:-17.912107pt;}
.wsa8{word-spacing:-17.864213pt;}
.ws70{word-spacing:-17.844347pt;}
.ws25{word-spacing:-17.816320pt;}
.ws7f{word-spacing:-17.624747pt;}
.wsf7{word-spacing:-17.583573pt;}
.ws98{word-spacing:-17.481067pt;}
.wsad{word-spacing:-17.471813pt;}
.ws2f{word-spacing:-17.337387pt;}
.ws5e{word-spacing:-17.248293pt;}
.wsbd{word-spacing:-17.193707pt;}
.ws44{word-spacing:-17.173787pt;}
.wsca{word-spacing:-17.050027pt;}
.ws28{word-spacing:-16.954240pt;}
.ws108{word-spacing:-16.913013pt;}
.ws55{word-spacing:-16.875760pt;}
.ws7c{word-spacing:-16.858453pt;}
.ws52{word-spacing:-16.838507pt;}
.ws73{word-spacing:-16.801253pt;}
.ws89{word-spacing:-16.762667pt;}
.ws45{word-spacing:-16.577733pt;}
.ws91{word-spacing:-16.523200pt;}
.ws18{word-spacing:-16.331627pt;}
.ws105{word-spacing:-16.205200pt;}
.wsa4{word-spacing:-16.187947pt;}
.wsf2{word-spacing:-16.130693pt;}
.ws7d{word-spacing:-16.044267pt;}
.ws26{word-spacing:-15.996373pt;}
.wsf8{word-spacing:-15.832667pt;}
.wsf9{word-spacing:-15.795413pt;}
.wsfe{word-spacing:-15.758160pt;}
.ws50{word-spacing:-15.683653pt;}
.ws5c{word-spacing:-15.646400pt;}
.ws8d{word-spacing:-15.517440pt;}
.ws90{word-spacing:-15.469547pt;}
.ws10b{word-spacing:-15.460133pt;}
.ws76{word-spacing:-15.422880pt;}
.wsac{word-spacing:-15.373760pt;}
.wsd7{word-spacing:-15.277973pt;}
.wsbe{word-spacing:-15.182187pt;}
.ws3b{word-spacing:-15.086400pt;}
.wsba{word-spacing:-14.942720pt;}
.ws10c{word-spacing:-14.901333pt;}
.wsa3{word-spacing:-14.799040pt;}
.wsc4{word-spacing:-14.463787pt;}
.ws41{word-spacing:-14.417040pt;}
.wsd6{word-spacing:-14.415893pt;}
.ws77{word-spacing:-14.218603pt;}
.ws5f{word-spacing:-14.193520pt;}
.wsfc{word-spacing:-13.970000pt;}
.ws40{word-spacing:-13.858240pt;}
.ws32{word-spacing:-13.745387pt;}
.wsbb{word-spacing:-13.601707pt;}
.wsf6{word-spacing:-13.597467pt;}
.ws7{word-spacing:-12.888043pt;}
.ws74{word-spacing:-12.852400pt;}
.ws1{word-spacing:-12.449915pt;}
.ws2{word-spacing:-12.445189pt;}
.ws68{word-spacing:-12.405360pt;}
.ws4b{word-spacing:-12.345493pt;}
.wsbc{word-spacing:-12.069120pt;}
.wsfd{word-spacing:-11.958320pt;}
.ws9d{word-spacing:-11.877547pt;}
.ws5a{word-spacing:-11.846560pt;}
.ws5b{word-spacing:-11.809307pt;}
.wsae{word-spacing:-11.734800pt;}
.wsaf{word-spacing:-11.697547pt;}
.ws10d{word-spacing:-11.660293pt;}
.ws4e{word-spacing:-11.399520pt;}
.ws4f{word-spacing:-11.362267pt;}
.ws107{word-spacing:-11.213253pt;}
.ws5d{word-spacing:-10.766213pt;}
.ws39{word-spacing:-10.153387pt;}
.ws43{word-spacing:-9.797627pt;}
.ws6e{word-spacing:-8.717280pt;}
.wsfa{word-spacing:-6.333067pt;}
.ws7a{word-spacing:-6.178240pt;}
.ws4d{word-spacing:0.000000pt;}
.ws109{word-spacing:0.558800pt;}
.wse9{word-spacing:284.019413pt;}
.wsec{word-spacing:348.994325pt;}
.wseb{word-spacing:380.922325pt;}
.wsb3{word-spacing:384.379893pt;}
.wsea{word-spacing:412.850325pt;}
.wsb4{word-spacing:443.118069pt;}
._8{margin-left:-2129.011573pt;}
._9{margin-left:-981.433493pt;}
._1{margin-left:-25.000320pt;}
._7{margin-left:-22.349600pt;}
._3{margin-left:-18.295253pt;}
._14{margin-left:-16.092160pt;}
._13{margin-left:-14.084055pt;}
._b{margin-left:-12.405360pt;}
._15{margin-left:-11.213253pt;}
._4{margin-left:-5.603520pt;}
._5{margin-left:-4.262507pt;}
._a{margin-left:-3.315547pt;}
._2{width:1.005760pt;}
._c{width:4.544907pt;}
._6{width:10.642667pt;}
._e{width:14.174240pt;}
._d{width:18.626667pt;}
._11{width:21.285333pt;}
._10{width:95.741429pt;}
._f{width:941.154091pt;}
._0{width:1067.436459pt;}
._12{width:1595.250592pt;}
.fs9{font-size:23.946667pt;}
.fs8{font-size:26.608000pt;}
.fs4{font-size:29.269333pt;}
.fs1{font-size:31.930667pt;}
.fs5{font-size:34.592000pt;}
.fs6{font-size:37.253333pt;}
.fs0{font-size:42.570667pt;}
.fs3{font-size:47.893333pt;}
.fs7{font-size:58.666667pt;}
.fs2{font-size:85.146667pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:61.699333pt;}
.y5c{bottom:86.952793pt;}
.y8a{bottom:86.966107pt;}
.y199{bottom:86.972179pt;}
.y60{bottom:86.975667pt;}
.y158{bottom:86.993600pt;}
.yab{bottom:87.024053pt;}
.ydd{bottom:87.153413pt;}
.y5b{bottom:97.597933pt;}
.y89{bottom:97.611247pt;}
.y198{bottom:98.945179pt;}
.y5f{bottom:98.948667pt;}
.y157{bottom:100.295973pt;}
.yaa{bottom:100.326427pt;}
.ydc{bottom:100.455787pt;}
.y5a{bottom:108.243073pt;}
.y88{bottom:108.256387pt;}
.y197{bottom:110.918179pt;}
.y5e{bottom:110.921667pt;}
.y156{bottom:113.598347pt;}
.ya9{bottom:113.628800pt;}
.ydb{bottom:113.758160pt;}
.y59{bottom:118.888213pt;}
.y87{bottom:118.901527pt;}
.y196{bottom:122.891179pt;}
.y5d{bottom:122.894667pt;}
.y155{bottom:126.900720pt;}
.ya8{bottom:126.931173pt;}
.yda{bottom:127.060533pt;}
.y58{bottom:129.533353pt;}
.y86{bottom:129.546667pt;}
.y57{bottom:140.178493pt;}
.y154{bottom:140.203093pt;}
.ya7{bottom:140.233547pt;}
.yd9{bottom:140.362907pt;}
.y195{bottom:140.856000pt;}
.y56{bottom:150.823633pt;}
.y153{bottom:153.505467pt;}
.ya6{bottom:153.535920pt;}
.yd8{bottom:153.665280pt;}
.y55{bottom:161.468773pt;}
.y39{bottom:164.846880pt;}
.y152{bottom:166.807840pt;}
.ya5{bottom:166.838293pt;}
.y194{bottom:166.891653pt;}
.yd7{bottom:166.967653pt;}
.y54{bottom:172.113913pt;}
.y38{bottom:178.149253pt;}
.y151{bottom:180.110213pt;}
.ya4{bottom:180.140667pt;}
.y193{bottom:180.194027pt;}
.yd6{bottom:180.270027pt;}
.y53{bottom:182.759053pt;}
.y37{bottom:191.451627pt;}
.y52{bottom:193.404193pt;}
.y150{bottom:193.412587pt;}
.ya3{bottom:193.443040pt;}
.y192{bottom:193.496400pt;}
.yd5{bottom:193.572400pt;}
.y51{bottom:204.049333pt;}
.y36{bottom:204.754000pt;}
.y14f{bottom:206.714960pt;}
.ya2{bottom:206.745413pt;}
.y191{bottom:206.798773pt;}
.yd4{bottom:206.874773pt;}
.y35{bottom:218.056373pt;}
.y14e{bottom:220.017333pt;}
.ya1{bottom:220.047787pt;}
.y190{bottom:220.101147pt;}
.yd3{bottom:220.177147pt;}
.y50{bottom:226.066533pt;}
.y34{bottom:231.358747pt;}
.y14d{bottom:233.319707pt;}
.ya0{bottom:233.350160pt;}
.y18f{bottom:233.403520pt;}
.yd2{bottom:233.479520pt;}
.y33{bottom:244.661120pt;}
.y9f{bottom:246.652533pt;}
.y18e{bottom:246.705893pt;}
.yd1{bottom:246.781893pt;}
.y14c{bottom:257.936880pt;}
.y32{bottom:257.963493pt;}
.y4f{bottom:257.999413pt;}
.y9e{bottom:259.954907pt;}
.y18d{bottom:260.008267pt;}
.yd0{bottom:260.084267pt;}
.y31{bottom:271.265867pt;}
.y4e{bottom:271.301787pt;}
.y9d{bottom:273.257280pt;}
.y18c{bottom:273.310640pt;}
.ycf{bottom:273.386640pt;}
.y30{bottom:284.568240pt;}
.y4d{bottom:284.604160pt;}
.y9c{bottom:286.559653pt;}
.y18b{bottom:286.613013pt;}
.yce{bottom:286.689013pt;}
.y14b{bottom:291.534053pt;}
.y2f{bottom:297.870613pt;}
.y4c{bottom:297.906533pt;}
.y9b{bottom:299.862027pt;}
.y18a{bottom:299.915387pt;}
.ycd{bottom:299.991387pt;}
.y14a{bottom:304.836427pt;}
.y2e{bottom:311.172987pt;}
.y4b{bottom:311.208907pt;}
.y9a{bottom:313.164400pt;}
.y189{bottom:313.217760pt;}
.ycc{bottom:313.293760pt;}
.y149{bottom:318.138800pt;}
.y2d{bottom:324.475360pt;}
.y4a{bottom:324.511280pt;}
.y99{bottom:326.466773pt;}
.y188{bottom:326.520133pt;}
.ycb{bottom:326.596133pt;}
.y148{bottom:331.441173pt;}
.y2c{bottom:337.777733pt;}
.y49{bottom:337.813653pt;}
.y98{bottom:339.769147pt;}
.y187{bottom:339.822507pt;}
.yca{bottom:339.898507pt;}
.y147{bottom:344.743547pt;}
.y2b{bottom:351.080107pt;}
.y48{bottom:351.116027pt;}
.y97{bottom:353.071520pt;}
.y186{bottom:353.124880pt;}
.yc9{bottom:353.200880pt;}
.y146{bottom:358.045920pt;}
.y2a{bottom:364.382480pt;}
.y47{bottom:364.418400pt;}
.y96{bottom:366.373893pt;}
.y185{bottom:366.427253pt;}
.yc8{bottom:366.503253pt;}
.y145{bottom:371.348293pt;}
.y29{bottom:377.684853pt;}
.y46{bottom:377.720773pt;}
.y95{bottom:379.676267pt;}
.y184{bottom:379.729627pt;}
.yc7{bottom:379.805627pt;}
.y143{bottom:381.989333pt;}
.y144{bottom:384.650667pt;}
.y142{bottom:384.652587pt;}
.yc5{bottom:390.448000pt;}
.y28{bottom:390.987227pt;}
.y45{bottom:391.023147pt;}
.y94{bottom:392.978640pt;}
.y183{bottom:393.032000pt;}
.yc6{bottom:393.108000pt;}
.yc4{bottom:393.109627pt;}
.y141{bottom:397.954960pt;}
.yc2{bottom:403.752000pt;}
.y27{bottom:404.289600pt;}
.y44{bottom:404.325520pt;}
.y93{bottom:406.281013pt;}
.y182{bottom:406.334373pt;}
.yc3{bottom:406.412000pt;}
.yc1{bottom:406.421760pt;}
.y13f{bottom:408.597333pt;}
.y140{bottom:411.257333pt;}
.y13e{bottom:411.273600pt;}
.y26{bottom:417.591973pt;}
.y43{bottom:417.627893pt;}
.y92{bottom:419.583387pt;}
.y181{bottom:419.636747pt;}
.yc0{bottom:419.724133pt;}
.y13d{bottom:424.575973pt;}
.y25{bottom:430.894347pt;}
.y42{bottom:430.930267pt;}
.y91{bottom:432.885760pt;}
.y180{bottom:432.939120pt;}
.ybf{bottom:433.026507pt;}
.y13c{bottom:437.878347pt;}
.y24{bottom:444.196720pt;}
.y41{bottom:444.232640pt;}
.y90{bottom:446.188133pt;}
.y17f{bottom:446.241493pt;}
.ybe{bottom:446.328880pt;}
.y13b{bottom:451.180720pt;}
.y23{bottom:457.499093pt;}
.y40{bottom:457.535013pt;}
.y8f{bottom:459.490507pt;}
.y17e{bottom:459.543867pt;}
.ybd{bottom:459.631253pt;}
.y13a{bottom:464.483093pt;}
.y22{bottom:470.801467pt;}
.y3f{bottom:470.837387pt;}
.y8e{bottom:472.792880pt;}
.y17d{bottom:472.846240pt;}
.ybc{bottom:472.933627pt;}
.y139{bottom:477.785467pt;}
.yba{bottom:483.576000pt;}
.y21{bottom:484.103840pt;}
.y3e{bottom:484.139760pt;}
.y8d{bottom:486.095253pt;}
.y17c{bottom:486.148613pt;}
.ybb{bottom:486.236000pt;}
.yb9{bottom:486.298800pt;}
.y138{bottom:491.087840pt;}
.y20{bottom:497.406213pt;}
.y3d{bottom:497.442133pt;}
.y8c{bottom:499.397627pt;}
.y17b{bottom:499.450987pt;}
.yb8{bottom:499.601173pt;}
.y137{bottom:504.390213pt;}
.y1f{bottom:510.708587pt;}
.y3c{bottom:510.744507pt;}
.y8b{bottom:512.700000pt;}
.y17a{bottom:512.753360pt;}
.yb7{bottom:512.903547pt;}
.y136{bottom:517.692587pt;}
.y1e{bottom:524.010960pt;}
.y3b{bottom:524.046880pt;}
.y179{bottom:526.055733pt;}
.yb6{bottom:526.205920pt;}
.y135{bottom:530.994960pt;}
.y1d{bottom:537.313333pt;}
.y3a{bottom:537.349253pt;}
.y178{bottom:539.358107pt;}
.yb5{bottom:539.508293pt;}
.y134{bottom:544.297333pt;}
.y177{bottom:552.660480pt;}
.yb4{bottom:552.810667pt;}
.y133{bottom:557.268000pt;}
.y132{bottom:560.926667pt;}
.y176{bottom:565.962853pt;}
.yb3{bottom:566.113040pt;}
.y131{bottom:567.912000pt;}
.y130{bottom:571.570667pt;}
.y1c{bottom:573.915227pt;}
.y12f{bottom:578.554667pt;}
.y175{bottom:579.265227pt;}
.yb2{bottom:579.415413pt;}
.y1e4{bottom:581.814573pt;}
.y1c1{bottom:581.823887pt;}
.y12e{bottom:582.213333pt;}
.y1b{bottom:587.217600pt;}
.y12d{bottom:589.198667pt;}
.y1e3{bottom:592.459713pt;}
.y1c0{bottom:592.469027pt;}
.y174{bottom:592.567600pt;}
.yb1{bottom:592.717787pt;}
.y12c{bottom:592.856000pt;}
.y12b{bottom:599.841333pt;}
.y1a{bottom:600.519973pt;}
.y1e2{bottom:603.104853pt;}
.y1bf{bottom:603.114167pt;}
.y12a{bottom:603.500000pt;}
.y173{bottom:605.869973pt;}
.yb0{bottom:606.020160pt;}
.y62{bottom:608.270933pt;}
.y129{bottom:610.484000pt;}
.y1be{bottom:613.759307pt;}
.y19{bottom:613.822347pt;}
.y128{bottom:614.142667pt;}
.y1e1{bottom:614.411240pt;}
.y172{bottom:619.172347pt;}
.yaf{bottom:619.322533pt;}
.y1bd{bottom:624.404447pt;}
.y1e0{bottom:625.056380pt;}
.y18{bottom:627.124720pt;}
.y127{bottom:630.440000pt;}
.y125{bottom:630.440333pt;}
.y171{bottom:632.474720pt;}
.yae{bottom:632.624907pt;}
.y126{bottom:634.764000pt;}
.y1bc{bottom:635.049587pt;}
.y1df{bottom:636.362767pt;}
.y17{bottom:640.427093pt;}
.y124{bottom:642.413333pt;}
.y122{bottom:642.415000pt;}
.y1bb{bottom:645.694727pt;}
.y170{bottom:645.777093pt;}
.yad{bottom:645.927280pt;}
.y123{bottom:646.737333pt;}
.y1de{bottom:647.669153pt;}
.y16{bottom:653.729467pt;}
.y121{bottom:654.388000pt;}
.y11f{bottom:654.388333pt;}
.y1ba{bottom:656.339867pt;}
.y120{bottom:658.710667pt;}
.y1dd{bottom:658.975540pt;}
.y16f{bottom:659.079467pt;}
.yac{bottom:659.229653pt;}
.y11e{bottom:666.361333pt;}
.y11c{bottom:666.361667pt;}
.y1b9{bottom:666.985007pt;}
.y15{bottom:667.031840pt;}
.y1dc{bottom:669.620680pt;}
.y11d{bottom:670.685333pt;}
.y16e{bottom:672.381840pt;}
.y68{bottom:673.770860pt;}
.y7e{bottom:674.018507pt;}
.y1b8{bottom:677.630147pt;}
.y11b{bottom:678.334667pt;}
.y119{bottom:678.335000pt;}
.y1db{bottom:680.265820pt;}
.y14{bottom:680.334213pt;}
.y11a{bottom:682.658667pt;}
.y67{bottom:684.407440pt;}
.y16d{bottom:685.684213pt;}
.y7d{bottom:687.320880pt;}
.y1b7{bottom:688.275287pt;}
.y118{bottom:690.308000pt;}
.y116{bottom:690.308333pt;}
.y1da{bottom:691.572207pt;}
.y13{bottom:693.636587pt;}
.y117{bottom:694.632000pt;}
.y66{bottom:695.052580pt;}
.y1b6{bottom:698.920427pt;}
.y16c{bottom:698.986587pt;}
.ye1{bottom:699.928580pt;}
.y7c{bottom:700.623253pt;}
.y1d9{bottom:702.217347pt;}
.y115{bottom:702.281333pt;}
.y113{bottom:702.281667pt;}
.y65{bottom:705.697720pt;}
.y114{bottom:706.605333pt;}
.y12{bottom:706.938960pt;}
.y1b5{bottom:709.565567pt;}
.ye0{bottom:710.573720pt;}
.y16b{bottom:712.288960pt;}
.y1d8{bottom:712.862487pt;}
.y7b{bottom:713.925627pt;}
.y112{bottom:714.254667pt;}
.y110{bottom:714.256333pt;}
.y64{bottom:716.342860pt;}
.y111{bottom:718.578667pt;}
.y1b4{bottom:720.210707pt;}
.y11{bottom:720.241333pt;}
.ydf{bottom:721.218860pt;}
.y1d7{bottom:724.168873pt;}
.y16a{bottom:725.591333pt;}
.y10f{bottom:726.229333pt;}
.y10d{bottom:726.229667pt;}
.y63{bottom:726.988000pt;}
.y7a{bottom:727.228000pt;}
.y10e{bottom:730.552000pt;}
.y1b3{bottom:730.855847pt;}
.yde{bottom:731.864000pt;}
.y1d6{bottom:734.814013pt;}
.y10c{bottom:738.202667pt;}
.y10a{bottom:738.203000pt;}
.y169{bottom:738.893707pt;}
.y79{bottom:740.530373pt;}
.y1b2{bottom:741.500987pt;}
.y10b{bottom:742.525333pt;}
.y1d5{bottom:745.459153pt;}
.y10{bottom:749.510667pt;}
.y109{bottom:750.176000pt;}
.y107{bottom:750.176333pt;}
.y1b1{bottom:752.146127pt;}
.y168{bottom:752.196080pt;}
.y78{bottom:753.832747pt;}
.y108{bottom:754.500000pt;}
.y1d4{bottom:756.104293pt;}
.y106{bottom:762.149333pt;}
.y104{bottom:762.149667pt;}
.y1b0{bottom:762.791267pt;}
.y167{bottom:765.498453pt;}
.y105{bottom:766.473333pt;}
.y1d3{bottom:766.749433pt;}
.y77{bottom:767.135120pt;}
.y85{bottom:770.879827pt;}
.ye{bottom:772.128293pt;}
.y1af{bottom:773.436407pt;}
.y103{bottom:774.122667pt;}
.y101{bottom:774.123000pt;}
.yf{bottom:777.116000pt;}
.y1d2{bottom:777.394573pt;}
.y102{bottom:778.446667pt;}
.y166{bottom:778.800827pt;}
.y76{bottom:780.437493pt;}
.y84{bottom:781.524967pt;}
.y1ae{bottom:784.081547pt;}
.yb{bottom:785.427120pt;}
.yd{bottom:785.430667pt;}
.y100{bottom:786.096000pt;}
.yff{bottom:786.096333pt;}
.y1d1{bottom:788.700960pt;}
.yc{bottom:790.420000pt;}
.y165{bottom:792.103200pt;}
.y83{bottom:792.170107pt;}
.y1ad{bottom:794.726687pt;}
.yfe{bottom:798.069333pt;}
.yfc{bottom:798.071000pt;}
.ya{bottom:798.729493pt;}
.y1d0{bottom:799.346100pt;}
.yfd{bottom:802.393333pt;}
.y82{bottom:802.815247pt;}
.y75{bottom:805.054667pt;}
.y1ac{bottom:805.371827pt;}
.y164{bottom:805.405573pt;}
.y1cf{bottom:809.991240pt;}
.yfb{bottom:810.044000pt;}
.yf9{bottom:810.044333pt;}
.y81{bottom:813.460387pt;}
.yfa{bottom:814.366667pt;}
.y1ab{bottom:816.016967pt;}
.y8{bottom:817.360000pt;}
.y163{bottom:818.707947pt;}
.y1ce{bottom:821.297627pt;}
.yf8{bottom:822.017333pt;}
.yf6{bottom:822.017667pt;}
.y9{bottom:822.349333pt;}
.y80{bottom:824.105527pt;}
.yf7{bottom:826.341333pt;}
.y1aa{bottom:826.662107pt;}
.y1cd{bottom:831.942767pt;}
.y162{bottom:832.010320pt;}
.yf5{bottom:833.990667pt;}
.yf3{bottom:833.991000pt;}
.y7f{bottom:834.750667pt;}
.y74{bottom:835.981187pt;}
.y1a9{bottom:837.307247pt;}
.yf4{bottom:838.314667pt;}
.y7{bottom:841.306833pt;}
.y1cc{bottom:842.587907pt;}
.y161{bottom:845.312693pt;}
.yf2{bottom:845.964000pt;}
.yf0{bottom:845.964333pt;}
.y73{bottom:846.626327pt;}
.y1a8{bottom:847.952387pt;}
.yf1{bottom:850.288000pt;}
.y1cb{bottom:853.894293pt;}
.y72{bottom:857.271467pt;}
.yef{bottom:857.937333pt;}
.yed{bottom:857.937667pt;}
.y1a7{bottom:858.597527pt;}
.y160{bottom:858.615067pt;}
.yee{bottom:862.261333pt;}
.y1ca{bottom:864.539433pt;}
.y6{bottom:865.254333pt;}
.y71{bottom:867.916607pt;}
.y1a6{bottom:869.242667pt;}
.yeb{bottom:869.910667pt;}
.y15f{bottom:871.917440pt;}
.yec{bottom:874.234667pt;}
.y1c9{bottom:875.184573pt;}
.y70{bottom:878.561747pt;}
.y1a5{bottom:879.887807pt;}
.y15e{bottom:885.219813pt;}
.y1c8{bottom:886.490960pt;}
.ye9{bottom:888.536000pt;}
.y5{bottom:889.201833pt;}
.y6f{bottom:889.206887pt;}
.y19e{bottom:890.528553pt;}
.ye8{bottom:890.532000pt;}
.y1a4{bottom:890.532947pt;}
.yea{bottom:894.190667pt;}
.y1c7{bottom:897.136100pt;}
.y15d{bottom:898.522187pt;}
.y19f{bottom:899.512000pt;}
.y6e{bottom:899.852027pt;}
.y19b{bottom:900.009527pt;}
.ye6{bottom:901.170273pt;}
.y19d{bottom:901.173693pt;}
.y1a3{bottom:901.178087pt;}
.ye7{bottom:904.833333pt;}
.ye4{bottom:905.333333pt;}
.y1c6{bottom:908.442487pt;}
.y6d{bottom:910.497167pt;}
.y19a{bottom:910.654667pt;}
.y15c{bottom:911.824560pt;}
.y4{bottom:913.149333pt;}
.y1a2{bottom:915.809333pt;}
.y1c5{bottom:919.422907pt;}
.ye5{bottom:920.132220pt;}
.y19c{bottom:920.135640pt;}
.y6c{bottom:921.142307pt;}
.y15b{bottom:925.126933pt;}
.y1c4{bottom:930.403327pt;}
.y6b{bottom:931.787447pt;}
.y15a{bottom:938.429307pt;}
.ye3{bottom:940.423000pt;}
.y1a1{bottom:941.088333pt;}
.y1c3{bottom:942.044993pt;}
.y6a{bottom:942.432587pt;}
.y159{bottom:951.731680pt;}
.ye2{bottom:952.396000pt;}
.y1c2{bottom:953.025413pt;}
.y1a0{bottom:953.061333pt;}
.y69{bottom:953.077727pt;}
.y3{bottom:961.044667pt;}
.y2{bottom:973.017667pt;}
.y1{bottom:984.990667pt;}
.h9{height:23.060640pt;}
.hb{height:25.623504pt;}
.h4{height:28.186368pt;}
.he{height:35.278907pt;}
.h6{height:35.874960pt;}
.h8{height:35.909200pt;}
.hc{height:40.314421pt;}
.h1{height:40.995552pt;}
.h5{height:45.354987pt;}
.h3{height:46.121280pt;}
.hd{height:57.146613pt;}
.h7{height:61.187500pt;}
.ha{height:78.455520pt;}
.h2{height:81.996240pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:77.397333pt;}
.x4b{left:82.047653pt;}
.x1e{left:86.710667pt;}
.x1b{left:88.040000pt;}
.x16{left:89.370667pt;}
.x39{left:91.204000pt;}
.x38{left:92.762667pt;}
.x32{left:94.213333pt;}
.x34{left:97.757333pt;}
.x43{left:99.238667pt;}
.x37{left:102.196000pt;}
.x44{left:104.560000pt;}
.x28{left:105.524000pt;}
.x3b{left:108.136000pt;}
.x46{left:112.542667pt;}
.x3f{left:114.297333pt;}
.x48{left:116.086667pt;}
.x49{left:120.525333pt;}
.x2{left:124.194667pt;}
.x15{left:125.292000pt;}
.x3c{left:128.216000pt;}
.x14{left:137.265333pt;}
.x40{left:160.688717pt;}
.x3{left:162.766107pt;}
.x29{left:164.707869pt;}
.xd{left:174.073467pt;}
.x4{left:183.584467pt;}
.x3a{left:194.377333pt;}
.xe{left:198.978000pt;}
.x3d{left:199.888373pt;}
.x5{left:203.210773pt;}
.x4a{left:206.064000pt;}
.x2b{left:207.203720pt;}
.x6{left:208.592000pt;}
.x31{left:211.230667pt;}
.x2d{left:216.834667pt;}
.x11{left:222.012133pt;}
.x33{left:223.241333pt;}
.x42{left:228.892100pt;}
.x2e{left:232.782667pt;}
.x45{left:239.882667pt;}
.x35{left:246.704000pt;}
.x2c{left:252.360000pt;}
.x2a{left:283.889707pt;}
.x13{left:296.806667pt;}
.x41{left:299.617553pt;}
.x7{left:325.486667pt;}
.x8{left:341.110667pt;}
.x2f{left:352.654580pt;}
.x47{left:364.868000pt;}
.x36{left:371.670667pt;}
.x30{left:392.341333pt;}
.x1c{left:398.007667pt;}
.x18{left:420.636880pt;}
.x1a{left:429.952000pt;}
.x27{left:431.281333pt;}
.x17{left:432.610213pt;}
.x4c{left:437.034667pt;}
.x24{left:467.962667pt;}
.x9{left:472.154667pt;}
.x26{left:477.085333pt;}
.xa{left:480.794667pt;}
.x25{left:484.316000pt;}
.x19{left:498.044480pt;}
.xf{left:500.792000pt;}
.x10{left:509.432000pt;}
.x3e{left:522.456000pt;}
.x1f{left:553.221333pt;}
.x20{left:577.812000pt;}
.x12{left:590.786667pt;}
.x21{left:594.165333pt;}
.xb{left:598.122667pt;}
.xc{left:602.778667pt;}
.x22{left:696.428000pt;}
.x23{left:712.781333pt;}
.x1d{left:790.666667pt;}
}




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