
    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_656544fa241d07e049611c21.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_86555b0d3b0cd41f16dd3329.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_13bacb4e6c96aff342f9b6f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_99634406ed769f4009fd5e2a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b0ce9dc395d516c4001338ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_48b7b99a17e176f0303c6b9f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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_7e18be9e5f5edbd751833f18.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.430000;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_a3996e87c964e75345252960.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.899000;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_e1c987567da26ad3f99ad99d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.430000;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_4d000fd573def09c97d68a4d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0ce70d82d15bb04ad89c30fd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.665000;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_b0e89efbe2c24d8332c7631f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.665000;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_b870a3772266272749516dc9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.754000px;}
.v1{vertical-align:31.236000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.984915px;}
.ls4{letter-spacing:2.988532px;}
.ls3{letter-spacing:2.990915px;}
.ls1{letter-spacing:34.072178px;}
.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;}
}
.ws1d{word-spacing:-18.183288px;}
.ws52{word-spacing:-16.730196px;}
.ws9{word-spacing:-3.652367px;}
.ws49{word-spacing:-3.521457px;}
.wsaa{word-spacing:-3.456003px;}
.wsab{word-spacing:-2.997821px;}
.wsfd{word-spacing:-2.801457px;}
.wsad{word-spacing:-2.670548px;}
.ws8b{word-spacing:-2.539638px;}
.ws10e{word-spacing:-2.474184px;}
.ws127{word-spacing:-2.408729px;}
.ws62{word-spacing:-2.343275px;}
.ws3b{word-spacing:-2.232634px;}
.ws31{word-spacing:-2.212365px;}
.ws142{word-spacing:-1.950547px;}
.ws101{word-spacing:-1.885092px;}
.ws8c{word-spacing:-1.819638px;}
.ws8a{word-spacing:-1.492365px;}
.ws64{word-spacing:-1.426910px;}
.wsf4{word-spacing:-1.230546px;}
.wsa7{word-spacing:-1.099637px;}
.ws18{word-spacing:-1.034183px;}
.wsc5{word-spacing:-0.968728px;}
.ws88{word-spacing:-0.837819px;}
.ws28{word-spacing:-0.706910px;}
.ws12a{word-spacing:-0.641455px;}
.wscd{word-spacing:-0.576000px;}
.ws95{word-spacing:-0.379637px;}
.ws113{word-spacing:-0.314182px;}
.ws8f{word-spacing:-0.248727px;}
.ws46{word-spacing:-0.183273px;}
.ws4{word-spacing:-0.123975px;}
.wsb6{word-spacing:-0.117818px;}
.wsa1{word-spacing:-0.053798px;}
.ws65{word-spacing:-0.052364px;}
.ws0{word-spacing:0.000000px;}
.ws96{word-spacing:0.013091px;}
.ws51{word-spacing:0.078546px;}
.ws146{word-spacing:0.091636px;}
.ws83{word-spacing:0.144000px;}
.ws38{word-spacing:0.209455px;}
.ws30{word-spacing:0.274909px;}
.wsb5{word-spacing:0.340364px;}
.ws84{word-spacing:0.405819px;}
.wsae{word-spacing:0.536728px;}
.ws2f{word-spacing:0.602182px;}
.wse4{word-spacing:0.667637px;}
.ws109{word-spacing:0.680728px;}
.ws5c{word-spacing:0.733092px;}
.ws59{word-spacing:0.798546px;}
.ws58{word-spacing:0.864001px;}
.ws1b{word-spacing:0.929455px;}
.ws5a{word-spacing:0.994910px;}
.ws63{word-spacing:1.060365px;}
.wsa6{word-spacing:1.125819px;}
.ws128{word-spacing:1.138910px;}
.wsa8{word-spacing:1.191274px;}
.ws10a{word-spacing:1.204365px;}
.ws19{word-spacing:1.256728px;}
.ws92{word-spacing:1.322183px;}
.ws26{word-spacing:1.453092px;}
.wsbc{word-spacing:1.518547px;}
.ws143{word-spacing:1.531638px;}
.ws121{word-spacing:1.584001px;}
.ws20{word-spacing:1.649456px;}
.ws42{word-spacing:1.714911px;}
.ws73{word-spacing:1.780365px;}
.wsa3{word-spacing:1.845820px;}
.ws82{word-spacing:1.911274px;}
.ws50{word-spacing:1.976729px;}
.ws97{word-spacing:2.042184px;}
.wsff{word-spacing:2.107638px;}
.ws5b{word-spacing:2.173093px;}
.ws91{word-spacing:2.238547px;}
.ws4f{word-spacing:2.304002px;}
.wscb{word-spacing:2.369457px;}
.ws6d{word-spacing:2.434911px;}
.ws7f{word-spacing:2.500366px;}
.ws105{word-spacing:2.513457px;}
.ws44{word-spacing:2.565820px;}
.wsa9{word-spacing:2.631275px;}
.wsf1{word-spacing:2.696730px;}
.ws12b{word-spacing:2.709820px;}
.ws12{word-spacing:2.762184px;}
.ws70{word-spacing:2.827639px;}
.wsce{word-spacing:2.840730px;}
.wsf5{word-spacing:2.893093px;}
.ws41{word-spacing:2.958548px;}
.ws8d{word-spacing:3.024003px;}
.ws9d{word-spacing:3.039610px;}
.ws1c{word-spacing:3.093408px;}
.ws11{word-spacing:3.154912px;}
.ws87{word-spacing:3.220366px;}
.ws2e{word-spacing:3.285821px;}
.ws7{word-spacing:3.299613px;}
.ws29{word-spacing:3.351276px;}
.wsa4{word-spacing:3.416730px;}
.ws6f{word-spacing:3.482185px;}
.ws10{word-spacing:3.547639px;}
.ws2{word-spacing:3.613094px;}
.ws5f{word-spacing:3.678549px;}
.wscc{word-spacing:3.809458px;}
.ws13{word-spacing:3.874912px;}
.ws6e{word-spacing:3.940367px;}
.wse9{word-spacing:3.953458px;}
.ws90{word-spacing:4.005822px;}
.wsa{word-spacing:4.071276px;}
.ws2c{word-spacing:4.136731px;}
.ws3a{word-spacing:4.223174px;}
.ws40{word-spacing:4.267640px;}
.ws144{word-spacing:4.280731px;}
.wsb3{word-spacing:4.333095px;}
.ws86{word-spacing:4.398549px;}
.ws102{word-spacing:4.411640px;}
.wsd{word-spacing:4.464004px;}
.ws114{word-spacing:4.529458px;}
.wsc9{word-spacing:4.542549px;}
.wsfc{word-spacing:4.594913px;}
.ws5{word-spacing:4.648169px;}
.ws118{word-spacing:4.660368px;}
.wsea{word-spacing:4.673458px;}
.wsbb{word-spacing:4.738913px;}
.wsb1{word-spacing:4.791277px;}
.ws89{word-spacing:4.856731px;}
.wsf9{word-spacing:4.869822px;}
.ws8e{word-spacing:4.922186px;}
.ws60{word-spacing:4.987641px;}
.ws2d{word-spacing:5.053095px;}
.ws123{word-spacing:5.066186px;}
.wsec{word-spacing:5.118550px;}
.ws112{word-spacing:5.184004px;}
.wsf7{word-spacing:5.197095px;}
.ws6b{word-spacing:5.249459px;}
.ws53{word-spacing:5.314914px;}
.ws145{word-spacing:5.362372px;}
.ws129{word-spacing:5.367656px;}
.ws119{word-spacing:5.373966px;}
.ws141{word-spacing:5.378838px;}
.ws6c{word-spacing:5.380368px;}
.wsba{word-spacing:5.393459px;}
.ws140{word-spacing:5.402454px;}
.ws35{word-spacing:5.445823px;}
.wsb2{word-spacing:5.511277px;}
.ws80{word-spacing:5.576732px;}
.ws14{word-spacing:5.642187px;}
.ws7e{word-spacing:5.707641px;}
.ws76{word-spacing:5.773096px;}
.ws106{word-spacing:5.786187px;}
.wse8{word-spacing:5.838550px;}
.wsf2{word-spacing:5.851641px;}
.wsa5{word-spacing:5.904005px;}
.ws2b{word-spacing:5.969460px;}
.wse1{word-spacing:5.982550px;}
.wsa2{word-spacing:6.034914px;}
.ws66{word-spacing:6.100369px;}
.ws6{word-spacing:6.121021px;}
.ws22{word-spacing:6.165823px;}
.ws17{word-spacing:6.231278px;}
.ws16{word-spacing:6.296733px;}
.ws85{word-spacing:6.362187px;}
.wsc2{word-spacing:6.427642px;}
.ws10b{word-spacing:6.440733px;}
.ws5e{word-spacing:6.493096px;}
.wsf0{word-spacing:6.558551px;}
.wsd5{word-spacing:6.571642px;}
.wsca{word-spacing:6.637096px;}
.ws1{word-spacing:6.702551px;}
.ws75{word-spacing:6.754915px;}
.ws98{word-spacing:6.820369px;}
.wsc4{word-spacing:6.885824px;}
.ws67{word-spacing:6.951279px;}
.ws100{word-spacing:6.964369px;}
.ws24{word-spacing:7.016733px;}
.wsb9{word-spacing:7.029824px;}
.ws138{word-spacing:7.147642px;}
.wsc7{word-spacing:7.160733px;}
.wsde{word-spacing:7.213097px;}
.ws54{word-spacing:7.278552px;}
.wsf8{word-spacing:7.291642px;}
.ws71{word-spacing:7.344006px;}
.wsb7{word-spacing:7.357097px;}
.wsb{word-spacing:7.409461px;}
.ws116{word-spacing:7.422552px;}
.ws115{word-spacing:7.474915px;}
.wse6{word-spacing:7.540370px;}
.ws33{word-spacing:7.605825px;}
.ws12c{word-spacing:7.618915px;}
.ws61{word-spacing:7.671279px;}
.ws134{word-spacing:7.736734px;}
.wsf3{word-spacing:7.749825px;}
.ws57{word-spacing:7.802188px;}
.ws55{word-spacing:7.867643px;}
.ws13f{word-spacing:7.933098px;}
.wsaf{word-spacing:7.998552px;}
.ws124{word-spacing:8.011643px;}
.wsdc{word-spacing:8.064007px;}
.ws103{word-spacing:8.077098px;}
.wse5{word-spacing:8.129461px;}
.ws11b{word-spacing:8.194916px;}
.ws78{word-spacing:8.260371px;}
.ws131{word-spacing:8.273461px;}
.ws27{word-spacing:8.325825px;}
.ws37{word-spacing:8.391280px;}
.wse7{word-spacing:8.404371px;}
.wsfe{word-spacing:8.456734px;}
.wsd1{word-spacing:8.522189px;}
.wsda{word-spacing:8.587644px;}
.wsef{word-spacing:8.653098px;}
.ws4d{word-spacing:8.718553px;}
.ws45{word-spacing:8.784007px;}
.ws15{word-spacing:8.849462px;}
.wsb8{word-spacing:8.862553px;}
.wsc6{word-spacing:8.914917px;}
.wsfb{word-spacing:8.928007px;}
.ws36{word-spacing:8.980371px;}
.wsd2{word-spacing:8.988451px;}
.ws147{word-spacing:8.993462px;}
.ws25{word-spacing:9.045826px;}
.ws2a{word-spacing:9.111280px;}
.ws1f{word-spacing:9.176735px;}
.wsc1{word-spacing:9.189826px;}
.ws93{word-spacing:9.242190px;}
.wsc3{word-spacing:9.255280px;}
.wsbf{word-spacing:9.307644px;}
.ws13d{word-spacing:9.320735px;}
.wsd9{word-spacing:9.373099px;}
.ws48{word-spacing:9.438553px;}
.ws108{word-spacing:9.451644px;}
.ws104{word-spacing:9.504008px;}
.ws56{word-spacing:9.569463px;}
.wse3{word-spacing:9.628627px;}
.ws11a{word-spacing:9.634917px;}
.wsfa{word-spacing:9.778917px;}
.wsf{word-spacing:9.831281px;}
.ws10d{word-spacing:9.896736px;}
.wsed{word-spacing:9.962190px;}
.wse2{word-spacing:9.975281px;}
.wsbd{word-spacing:10.158554px;}
.ws148{word-spacing:10.224009px;}
.ws7a{word-spacing:10.289463px;}
.ws149{word-spacing:10.302554px;}
.ws34{word-spacing:10.354918px;}
.ws43{word-spacing:10.485827px;}
.ws81{word-spacing:10.551282px;}
.ws4c{word-spacing:10.616736px;}
.ws107{word-spacing:10.629827px;}
.ws23{word-spacing:10.682191px;}
.ws39{word-spacing:10.747645px;}
.wscf{word-spacing:10.760736px;}
.ws5d{word-spacing:10.813100px;}
.ws13e{word-spacing:10.826191px;}
.ws12d{word-spacing:10.869112px;}
.ws125{word-spacing:10.878555px;}
.wsd4{word-spacing:10.891645px;}
.ws122{word-spacing:10.894600px;}
.ws12e{word-spacing:10.944009px;}
.ws68{word-spacing:11.009464px;}
.wsd6{word-spacing:11.022555px;}
.ws72{word-spacing:11.074918px;}
.ws135{word-spacing:11.153464px;}
.ws4a{word-spacing:11.205828px;}
.wsd0{word-spacing:11.218918px;}
.wsc{word-spacing:11.336737px;}
.wsc8{word-spacing:11.349828px;}
.ws3e{word-spacing:11.402191px;}
.wsbe{word-spacing:11.467646px;}
.ws3c{word-spacing:11.485958px;}
.ws11f{word-spacing:11.533101px;}
.ws3f{word-spacing:11.598555px;}
.wsac{word-spacing:11.729464px;}
.ws74{word-spacing:11.794919px;}
.ws4e{word-spacing:11.860374px;}
.wsc0{word-spacing:11.938919px;}
.wsdd{word-spacing:11.991283px;}
.ws133{word-spacing:12.004374px;}
.ws13b{word-spacing:12.069828px;}
.ws111{word-spacing:12.122192px;}
.ws69{word-spacing:12.187647px;}
.ws6a{word-spacing:12.253101px;}
.ws79{word-spacing:12.318556px;}
.wsee{word-spacing:12.384010px;}
.ws139{word-spacing:12.397101px;}
.wse{word-spacing:12.449465px;}
.wsd8{word-spacing:12.514920px;}
.wsf6{word-spacing:12.528010px;}
.ws21{word-spacing:12.580374px;}
.ws4b{word-spacing:12.842193px;}
.ws110{word-spacing:13.038556px;}
.wsd3{word-spacing:13.051647px;}
.ws11e{word-spacing:13.117102px;}
.ws7d{word-spacing:13.169466px;}
.wsdf{word-spacing:13.234920px;}
.ws77{word-spacing:13.300375px;}
.ws7b{word-spacing:13.431284px;}
.ws136{word-spacing:13.444375px;}
.ws12f{word-spacing:13.509829px;}
.ws10f{word-spacing:13.627648px;}
.wsdb{word-spacing:13.693102px;}
.wsb4{word-spacing:13.758557px;}
.ws47{word-spacing:13.824012px;}
.ws120{word-spacing:13.968012px;}
.ws10c{word-spacing:14.282194px;}
.ws126{word-spacing:14.347648px;}
.ws117{word-spacing:14.557103px;}
.ws7c{word-spacing:14.871285px;}
.ws11c{word-spacing:15.133104px;}
.wse0{word-spacing:15.538922px;}
.ws132{word-spacing:15.931650px;}
.ws11d{word-spacing:17.306196px;}
.ws99{word-spacing:21.142771px;}
.ws9a{word-spacing:21.196570px;}
.wsb0{word-spacing:25.003657px;}
.wsd7{word-spacing:25.069112px;}
.ws137{word-spacing:25.605840px;}
.wseb{word-spacing:26.827469px;}
.ws13c{word-spacing:28.551297px;}
.ws13a{word-spacing:29.598570px;}
.ws32{word-spacing:32.192873px;}
.ws130{word-spacing:33.067664px;}
.ws94{word-spacing:40.312934px;}
.ws3{word-spacing:46.366650px;}
.ws1e{word-spacing:48.375386px;}
.ws1a{word-spacing:65.393166px;}
.ws8{word-spacing:65.398106px;}
.ws9e{word-spacing:297.883102px;}
.ws9c{word-spacing:414.379559px;}
.ws9f{word-spacing:414.380561px;}
.wsa0{word-spacing:442.021559px;}
.ws9b{word-spacing:442.022561px;}
.ws3d{word-spacing:920.788812px;}
._2b{margin-left:-2315.482998px;}
._3e{margin-left:-43.920037px;}
._1e{margin-left:-40.999693px;}
._14{margin-left:-34.298210px;}
._6{margin-left:-11.653650px;}
._3d{margin-left:-10.217902px;}
._1b{margin-left:-8.091257px;}
._2{margin-left:-6.676369px;}
._1{margin-left:-4.909095px;}
._0{margin-left:-3.403639px;}
._4{margin-left:-1.767274px;}
._5{width:1.767274px;}
._26{width:2.814548px;}
._8{width:3.967200px;}
._41{width:5.000080px;}
._3a{width:9.133835px;}
._39{width:10.960727px;}
._a{width:16.036377px;}
._19{width:17.488156px;}
._3b{width:18.611463px;}
._17{width:19.727365px;}
._18{width:20.880017px;}
._24{width:23.301838px;}
._12{width:24.324950px;}
._36{width:25.330930px;}
._9{width:26.693699px;}
._3{width:28.538206px;}
._15{width:30.567298px;}
._3c{width:31.625726px;}
._d{width:32.661845px;}
._23{width:34.036392px;}
._f{width:35.083666px;}
._20{width:36.523667px;}
._11{width:37.701850px;}
._16{width:39.141851px;}
._21{width:40.516397px;}
._38{width:42.152762px;}
._1d{width:43.658218px;}
._10{width:44.901856px;}
._22{width:46.145493px;}
._e{width:47.389130px;}
._1a{width:48.461464px;}
._1c{width:49.483678px;}
._1f{width:50.792770px;}
._b{width:52.036407px;}
._37{width:53.607317px;}
._c{width:55.243682px;}
._27{width:56.880047px;}
._25{width:58.647322px;}
._40{width:59.784775px;}
._7{width:61.987500px;}
._3f{width:63.687326px;}
._28{width:74.114734px;}
._2c{width:327.712674px;}
._31{width:429.740004px;}
._2a{width:457.381002px;}
._29{width:751.018326px;}
._30{width:769.289954px;}
._13{width:790.772125px;}
._2f{width:837.875843px;}
._2e{width:1087.188383px;}
._2d{width:1134.500392px;}
._32{width:1157.534168px;}
._35{width:1171.384575px;}
._34{width:1185.182168px;}
._33{width:1199.032575px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:47.820600px;}
.fsa{font-size:53.798400px;}
.fs8{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:65.454600px;}
.fsc{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:86.077200px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y46{bottom:135.306000px;}
.y24{bottom:139.264499px;}
.y45{bottom:155.629500px;}
.y1b{bottom:196.933500px;}
.y23{bottom:209.518500px;}
.y1a{bottom:209.533503px;}
.y6f{bottom:212.577000px;}
.y14d{bottom:215.757000px;}
.y18c{bottom:215.841000px;}
.y22{bottom:222.118502px;}
.y19{bottom:222.133505px;}
.ybe{bottom:226.110000px;}
.y44{bottom:226.762500px;}
.y12b{bottom:227.115000px;}
.y6e{bottom:229.015500px;}
.y43{bottom:232.476000px;}
.y99{bottom:232.900500px;}
.y21{bottom:234.718504px;}
.y18{bottom:234.733496px;}
.y18b{bottom:236.164500px;}
.y19c{bottom:237.019500px;}
.ybd{bottom:246.433500px;}
.y12a{bottom:247.438500px;}
.y14c{bottom:249.531000px;}
.y6d{bottom:251.167500px;}
.yc5{bottom:253.224000px;}
.y98{bottom:253.225500px;}
.y103{bottom:253.831500px;}
.y18a{bottom:256.488000px;}
.y19b{bottom:257.344500px;}
.y20{bottom:259.918497px;}
.y17{bottom:259.933500px;}
.y6c{bottom:261.892500px;}
.y147{bottom:262.980000px;}
.ye6{bottom:263.793000px;}
.ybc{bottom:266.757000px;}
.y129{bottom:267.762000px;}
.y14b{bottom:269.854500px;}
.y1f{bottom:272.518500px;}
.y16{bottom:272.533503px;}
.y97{bottom:273.549000px;}
.y102{bottom:274.155000px;}
.y189{bottom:276.811500px;}
.y19a{bottom:277.668000px;}
.y146{bottom:283.305000px;}
.y6b{bottom:284.044500px;}
.y1e{bottom:285.118502px;}
.y15{bottom:285.133499px;}
.ybb{bottom:287.080500px;}
.y16e{bottom:287.604000px;}
.y128{bottom:288.087000px;}
.y14a{bottom:290.178000px;}
.y96{bottom:293.872500px;}
.y101{bottom:294.478500px;}
.y42{bottom:295.476000px;}
.y188{bottom:297.135000px;}
.y199{bottom:297.991500px;}
.y145{bottom:303.628500px;}
.yc4{bottom:304.440000px;}
.yba{bottom:307.405500px;}
.ye5{bottom:307.557000px;}
.y16d{bottom:307.929000px;}
.y127{bottom:308.410500px;}
.y1d{bottom:310.318501px;}
.y14{bottom:310.333501px;}
.y149{bottom:310.503000px;}
.y6a{bottom:311.524500px;}
.y95{bottom:314.196000px;}
.y100{bottom:314.802000px;}
.y41{bottom:315.799500px;}
.y187{bottom:317.460000px;}
.y198{bottom:318.315000px;}
.y1c{bottom:322.918500px;}
.y13{bottom:322.933500px;}
.y144{bottom:323.952000px;}
.yb9{bottom:327.729000px;}
.ye4{bottom:327.880500px;}
.y16c{bottom:328.252500px;}
.y126{bottom:328.734000px;}
.y148{bottom:330.826500px;}
.y69{bottom:331.848000px;}
.y94{bottom:334.519500px;}
.yff{bottom:335.127000px;}
.y186{bottom:337.783500px;}
.y197{bottom:338.638500px;}
.y143{bottom:344.275500px;}
.yb8{bottom:348.052500px;}
.y12{bottom:348.133500px;}
.yc3{bottom:348.156000px;}
.ye3{bottom:348.204000px;}
.y16b{bottom:348.576000px;}
.y125{bottom:349.057500px;}
.y68{bottom:352.171500px;}
.y93{bottom:354.844500px;}
.yfe{bottom:355.450500px;}
.y185{bottom:358.107000px;}
.y196{bottom:358.963500px;}
.y40{bottom:359.020500px;}
.y142{bottom:364.599000px;}
.yb7{bottom:368.376000px;}
.yc2{bottom:368.479500px;}
.ye2{bottom:368.529000px;}
.y16a{bottom:368.899500px;}
.y124{bottom:369.381000px;}
.y67{bottom:372.495000px;}
.y92{bottom:375.168000px;}
.yfd{bottom:375.774000px;}
.y184{bottom:378.430500px;}
.y195{bottom:379.287000px;}
.y3f{bottom:379.344000px;}
.y141{bottom:384.922500px;}
.y11{bottom:386.785499px;}
.yb6{bottom:388.699500px;}
.ye1{bottom:388.852500px;}
.y169{bottom:389.223000px;}
.y123{bottom:389.704500px;}
.y66{bottom:392.820000px;}
.y91{bottom:395.491500px;}
.yfc{bottom:396.097500px;}
.y183{bottom:398.754000px;}
.y194{bottom:399.610500px;}
.y3e{bottom:399.667500px;}
.yc1{bottom:405.007500px;}
.y140{bottom:405.247500px;}
.y10{bottom:408.044999px;}
.yb5{bottom:409.024500px;}
.ye0{bottom:409.176000px;}
.y168{bottom:409.548000px;}
.y122{bottom:410.029500px;}
.y65{bottom:413.143500px;}
.y90{bottom:415.815000px;}
.yfb{bottom:416.421000px;}
.y182{bottom:419.079000px;}
.y193{bottom:419.934000px;}
.y3d{bottom:419.992500px;}
.y13f{bottom:425.571000px;}
.yb4{bottom:429.348000px;}
.ydf{bottom:429.499500px;}
.y167{bottom:429.871500px;}
.y121{bottom:430.353000px;}
.y64{bottom:433.467000px;}
.y8f{bottom:436.138500px;}
.yfa{bottom:436.746000px;}
.y181{bottom:439.402500px;}
.y192{bottom:440.257500px;}
.y3c{bottom:440.316000px;}
.y13e{bottom:445.894500px;}
.yb3{bottom:449.671500px;}
.yde{bottom:449.823000px;}
.y166{bottom:450.195000px;}
.y120{bottom:450.676500px;}
.y63{bottom:453.790500px;}
.y8e{bottom:456.462000px;}
.yf9{bottom:457.069500px;}
.y180{bottom:459.726000px;}
.y191{bottom:460.582500px;}
.y3b{bottom:460.639500px;}
.y13d{bottom:466.218000px;}
.yf{bottom:466.864502px;}
.yb2{bottom:469.995000px;}
.ydd{bottom:470.146500px;}
.y165{bottom:470.518500px;}
.y11f{bottom:471.000000px;}
.y62{bottom:474.114000px;}
.y8d{bottom:476.787000px;}
.yf8{bottom:477.393000px;}
.y17f{bottom:480.049500px;}
.y190{bottom:480.906000px;}
.y3a{bottom:480.963000px;}
.ye{bottom:484.864502px;}
.y13c{bottom:486.541500px;}
.yb1{bottom:490.318500px;}
.ydc{bottom:490.471500px;}
.y164{bottom:490.842000px;}
.y11e{bottom:491.323500px;}
.y8c{bottom:497.110500px;}
.yf7{bottom:497.716500px;}
.y17e{bottom:500.373000px;}
.y18f{bottom:501.229500px;}
.y39{bottom:501.286500px;}
.yd{bottom:502.864502px;}
.y13b{bottom:506.866500px;}
.y61{bottom:510.643500px;}
.ydb{bottom:510.795000px;}
.y163{bottom:511.167000px;}
.y11d{bottom:511.648500px;}
.y8b{bottom:517.434000px;}
.yc{bottom:520.864502px;}
.y18e{bottom:521.553000px;}
.y38{bottom:521.611500px;}
.y13a{bottom:527.190000px;}
.yb0{bottom:530.967000px;}
.yda{bottom:531.118500px;}
.yf6{bottom:531.490500px;}
.y11c{bottom:531.972000px;}
.y17d{bottom:536.902500px;}
.y8a{bottom:537.757500px;}
.yb{bottom:538.864499px;}
.y18d{bottom:541.876500px;}
.y37{bottom:541.935000px;}
.y139{bottom:547.513500px;}
.yaf{bottom:551.290500px;}
.yd9{bottom:551.442000px;}
.yf5{bottom:551.814000px;}
.y11b{bottom:552.295500px;}
.ya{bottom:556.864499px;}
.y89{bottom:558.081000px;}
.y60{bottom:562.201500px;}
.y36{bottom:562.258500px;}
.y138{bottom:567.837000px;}
.yae{bottom:571.614000px;}
.yd8{bottom:571.765500px;}
.yf4{bottom:572.137500px;}
.y11a{bottom:572.619000px;}
.y88{bottom:578.406000px;}
.y5f{bottom:582.525000px;}
.y35{bottom:582.582000px;}
.y137{bottom:588.160500px;}
.y17c{bottom:588.460500px;}
.yad{bottom:591.937500px;}
.yd7{bottom:592.090500px;}
.yf3{bottom:592.461000px;}
.y119{bottom:592.942500px;}
.y87{bottom:598.729500px;}
.y5e{bottom:602.848500px;}
.y34{bottom:602.905500px;}
.y136{bottom:608.485500px;}
.y17b{bottom:608.784000px;}
.yac{bottom:612.261000px;}
.yc0{bottom:612.262500px;}
.yd6{bottom:612.414000px;}
.y162{bottom:612.784500px;}
.y118{bottom:613.267500px;}
.y86{bottom:619.053000px;}
.y5d{bottom:623.172000px;}
.y33{bottom:623.230500px;}
.yf2{bottom:626.235000px;}
.y9{bottom:626.610001px;}
.y135{bottom:628.809000px;}
.y17a{bottom:629.107500px;}
.yab{bottom:632.586000px;}
.yd5{bottom:632.737500px;}
.y161{bottom:633.109500px;}
.y117{bottom:633.591000px;}
.y85{bottom:639.376500px;}
.y5c{bottom:643.495500px;}
.y32{bottom:643.554000px;}
.y8{bottom:645.510000px;}
.yf1{bottom:646.558500px;}
.y134{bottom:649.132500px;}
.y179{bottom:649.431000px;}
.yaa{bottom:652.909500px;}
.yd4{bottom:653.061000px;}
.y160{bottom:653.433000px;}
.y116{bottom:653.914500px;}
.y84{bottom:659.700000px;}
.y5b{bottom:663.820500px;}
.y31{bottom:663.877500px;}
.y7{bottom:666.771000px;}
.yf0{bottom:666.882000px;}
.y133{bottom:669.456000px;}
.y178{bottom:669.754500px;}
.ya9{bottom:673.233000px;}
.y15f{bottom:673.756500px;}
.y115{bottom:674.238000px;}
.y83{bottom:680.025000px;}
.y5a{bottom:684.144000px;}
.y30{bottom:684.201000px;}
.yef{bottom:687.205500px;}
.y132{bottom:689.779500px;}
.ya8{bottom:693.556500px;}
.y15e{bottom:694.080000px;}
.yd3{bottom:694.534500px;}
.y114{bottom:694.561500px;}
.y82{bottom:700.348500px;}
.y177{bottom:703.528500px;}
.y59{bottom:704.467500px;}
.y2f{bottom:704.524500px;}
.yee{bottom:707.530500px;}
.y131{bottom:710.104500px;}
.ya7{bottom:713.880000px;}
.yd2{bottom:714.261000px;}
.y15d{bottom:714.403500px;}
.y81{bottom:720.672000px;}
.y176{bottom:723.852000px;}
.y58{bottom:724.791000px;}
.y6{bottom:726.298500px;}
.yed{bottom:727.854000px;}
.y130{bottom:730.428000px;}
.y113{bottom:732.819000px;}
.ya6{bottom:734.205000px;}
.yd1{bottom:734.584500px;}
.y15c{bottom:734.728500px;}
.y80{bottom:740.995500px;}
.y175{bottom:744.175500px;}
.y57{bottom:745.114500px;}
.yec{bottom:748.177500px;}
.ybf{bottom:750.409500px;}
.y12f{bottom:750.751500px;}
.y3{bottom:752.599495px;}
.y112{bottom:753.142500px;}
.yd0{bottom:754.311000px;}
.ya5{bottom:754.528500px;}
.y15b{bottom:755.052000px;}
.y7f{bottom:761.319000px;}
.y174{bottom:764.500500px;}
.y56{bottom:765.439500px;}
.yeb{bottom:768.501000px;}
.y12e{bottom:771.075000px;}
.y111{bottom:773.466000px;}
.ycf{bottom:774.036000px;}
.ya4{bottom:774.852000px;}
.y15a{bottom:775.375500px;}
.y7e{bottom:781.644000px;}
.y55{bottom:785.763000px;}
.yea{bottom:788.824500px;}
.y12d{bottom:791.398500px;}
.y110{bottom:793.789500px;}
.yce{bottom:794.359500px;}
.ya3{bottom:795.175500px;}
.y159{bottom:795.699000px;}
.y173{bottom:798.273000px;}
.y2e{bottom:798.406500px;}
.y7d{bottom:801.967500px;}
.y54{bottom:806.086500px;}
.ye9{bottom:809.149500px;}
.y12c{bottom:811.723500px;}
.ycd{bottom:814.086000px;}
.ya2{bottom:815.499000px;}
.y158{bottom:816.022500px;}
.y172{bottom:818.596500px;}
.y7c{bottom:822.291000px;}
.y53{bottom:826.410000px;}
.ye8{bottom:829.473000px;}
.y10f{bottom:832.047000px;}
.ycc{bottom:834.409500px;}
.ya1{bottom:835.824000px;}
.y157{bottom:836.347500px;}
.y171{bottom:838.921500px;}
.y7b{bottom:842.614500px;}
.y52{bottom:846.733500px;}
.y2d{bottom:850.636500px;}
.y10e{bottom:852.370500px;}
.ycb{bottom:854.136000px;}
.ya0{bottom:856.147500px;}
.y156{bottom:856.671000px;}
.y170{bottom:859.245000px;}
.ye7{bottom:860.364000px;}
.y7a{bottom:862.938000px;}
.y51{bottom:867.058500px;}
.y2c{bottom:868.569000px;}
.y10d{bottom:872.694000px;}
.yca{bottom:874.459500px;}
.y9f{bottom:876.471000px;}
.y155{bottom:876.994500px;}
.y2{bottom:879.369000px;}
.y16f{bottom:879.568500px;}
.y79{bottom:883.263000px;}
.y50{bottom:887.382000px;}
.y10c{bottom:893.017500px;}
.yc9{bottom:894.186000px;}
.y9e{bottom:896.794500px;}
.y154{bottom:897.318000px;}
.y2b{bottom:902.865000px;}
.y78{bottom:903.586500px;}
.y4f{bottom:907.705500px;}
.y10b{bottom:913.341000px;}
.yc8{bottom:914.509500px;}
.y9d{bottom:917.118000px;}
.y153{bottom:917.641500px;}
.y77{bottom:923.910000px;}
.y4e{bottom:928.029000px;}
.y10a{bottom:933.666000px;}
.yc7{bottom:934.234500px;}
.y9c{bottom:937.443000px;}
.y76{bottom:944.233500px;}
.y4d{bottom:948.352500px;}
.y152{bottom:948.534000px;}
.y109{bottom:953.989500px;}
.y2a{bottom:955.879500px;}
.y9b{bottom:957.766500px;}
.y75{bottom:964.557000px;}
.y1{bottom:966.726000px;}
.y4c{bottom:968.676000px;}
.y108{bottom:974.313000px;}
.yc6{bottom:975.360000px;}
.y74{bottom:984.880500px;}
.y4b{bottom:989.001000px;}
.y151{bottom:991.755000px;}
.y29{bottom:993.238500px;}
.y9a{bottom:994.294500px;}
.y107{bottom:994.636500px;}
.y73{bottom:1005.205500px;}
.y4a{bottom:1009.324500px;}
.y150{bottom:1012.080000px;}
.y106{bottom:1014.960000px;}
.y72{bottom:1025.529000px;}
.y49{bottom:1029.648000px;}
.y28{bottom:1030.599000px;}
.y14f{bottom:1032.403500px;}
.y105{bottom:1035.285000px;}
.y71{bottom:1045.852500px;}
.y48{bottom:1049.971500px;}
.y14e{bottom:1052.727000px;}
.y104{bottom:1055.608500px;}
.y70{bottom:1066.176000px;}
.y47{bottom:1086.499500px;}
.y27{bottom:1139.521500px;}
.y26{bottom:1159.845000px;}
.y25{bottom:1180.168500px;}
.hd{height:16.713370px;}
.h12{height:23.850624px;}
.h7{height:32.130000px;}
.h14{height:37.658880px;}
.he{height:40.348800px;}
.hc{height:44.831700px;}
.h15{height:45.687311px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h9{height:49.090950px;}
.h13{height:50.211840px;}
.h2{height:55.080000px;}
.h11{height:55.548699px;}
.h10{height:55.554699px;}
.hf{height:60.254040px;}
.hb{height:61.459121px;}
.h5{height:78.030000px;}
.ha{height:86.782500px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:133.936500px;}
.x6{left:136.891500px;}
.x7{left:138.913500px;}
.xf{left:140.163000px;}
.xa{left:144.342000px;}
.xe{left:150.300000px;}
.x14{left:157.021500px;}
.x16{left:163.825500px;}
.x15{left:174.846000px;}
.x4{left:203.484001px;}
.x9{left:226.401000px;}
.xc{left:228.067500px;}
.x10{left:266.752500px;}
.x13{left:290.688000px;}
.xd{left:356.188500px;}
.x8{left:387.688500px;}
.xb{left:402.045000px;}
.x3{left:454.959000px;}
.x11{left:537.519000px;}
.x12{left:633.165000px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.114667pt;}
.v1{vertical-align:27.765333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.653258pt;}
.ls4{letter-spacing:2.656473pt;}
.ls3{letter-spacing:2.658591pt;}
.ls1{letter-spacing:30.286380pt;}
.ws1d{word-spacing:-16.162923pt;}
.ws52{word-spacing:-14.871285pt;}
.ws9{word-spacing:-3.246548pt;}
.ws49{word-spacing:-3.130184pt;}
.wsaa{word-spacing:-3.072003pt;}
.wsab{word-spacing:-2.664729pt;}
.wsfd{word-spacing:-2.490184pt;}
.wsad{word-spacing:-2.373820pt;}
.ws8b{word-spacing:-2.257456pt;}
.ws10e{word-spacing:-2.199275pt;}
.ws127{word-spacing:-2.141093pt;}
.ws62{word-spacing:-2.082911pt;}
.ws3b{word-spacing:-1.984563pt;}
.ws31{word-spacing:-1.966547pt;}
.ws142{word-spacing:-1.733820pt;}
.ws101{word-spacing:-1.675638pt;}
.ws8c{word-spacing:-1.617456pt;}
.ws8a{word-spacing:-1.326547pt;}
.ws64{word-spacing:-1.268365pt;}
.wsf4{word-spacing:-1.093819pt;}
.wsa7{word-spacing:-0.977455pt;}
.ws18{word-spacing:-0.919273pt;}
.wsc5{word-spacing:-0.861092pt;}
.ws88{word-spacing:-0.744728pt;}
.ws28{word-spacing:-0.628364pt;}
.ws12a{word-spacing:-0.570182pt;}
.wscd{word-spacing:-0.512000pt;}
.ws95{word-spacing:-0.337455pt;}
.ws113{word-spacing:-0.279273pt;}
.ws8f{word-spacing:-0.221091pt;}
.ws46{word-spacing:-0.162909pt;}
.ws4{word-spacing:-0.110200pt;}
.wsb6{word-spacing:-0.104727pt;}
.wsa1{word-spacing:-0.047821pt;}
.ws65{word-spacing:-0.046545pt;}
.ws0{word-spacing:0.000000pt;}
.ws96{word-spacing:0.011636pt;}
.ws51{word-spacing:0.069818pt;}
.ws146{word-spacing:0.081455pt;}
.ws83{word-spacing:0.128000pt;}
.ws38{word-spacing:0.186182pt;}
.ws30{word-spacing:0.244364pt;}
.wsb5{word-spacing:0.302546pt;}
.ws84{word-spacing:0.360728pt;}
.wsae{word-spacing:0.477091pt;}
.ws2f{word-spacing:0.535273pt;}
.wse4{word-spacing:0.593455pt;}
.ws109{word-spacing:0.605091pt;}
.ws5c{word-spacing:0.651637pt;}
.ws59{word-spacing:0.709819pt;}
.ws58{word-spacing:0.768001pt;}
.ws1b{word-spacing:0.826183pt;}
.ws5a{word-spacing:0.884364pt;}
.ws63{word-spacing:0.942546pt;}
.wsa6{word-spacing:1.000728pt;}
.ws128{word-spacing:1.012364pt;}
.wsa8{word-spacing:1.058910pt;}
.ws10a{word-spacing:1.070546pt;}
.ws19{word-spacing:1.117092pt;}
.ws92{word-spacing:1.175274pt;}
.ws26{word-spacing:1.291637pt;}
.wsbc{word-spacing:1.349819pt;}
.ws143{word-spacing:1.361456pt;}
.ws121{word-spacing:1.408001pt;}
.ws20{word-spacing:1.466183pt;}
.ws42{word-spacing:1.524365pt;}
.ws73{word-spacing:1.582547pt;}
.wsa3{word-spacing:1.640729pt;}
.ws82{word-spacing:1.698911pt;}
.ws50{word-spacing:1.757092pt;}
.ws97{word-spacing:1.815274pt;}
.wsff{word-spacing:1.873456pt;}
.ws5b{word-spacing:1.931638pt;}
.ws91{word-spacing:1.989820pt;}
.ws4f{word-spacing:2.048002pt;}
.wscb{word-spacing:2.106184pt;}
.ws6d{word-spacing:2.164365pt;}
.ws7f{word-spacing:2.222547pt;}
.ws105{word-spacing:2.234184pt;}
.ws44{word-spacing:2.280729pt;}
.wsa9{word-spacing:2.338911pt;}
.wsf1{word-spacing:2.397093pt;}
.ws12b{word-spacing:2.408729pt;}
.ws12{word-spacing:2.455275pt;}
.ws70{word-spacing:2.513457pt;}
.wsce{word-spacing:2.525093pt;}
.wsf5{word-spacing:2.571639pt;}
.ws41{word-spacing:2.629820pt;}
.ws8d{word-spacing:2.688002pt;}
.ws9d{word-spacing:2.701875pt;}
.ws1c{word-spacing:2.749696pt;}
.ws11{word-spacing:2.804366pt;}
.ws87{word-spacing:2.862548pt;}
.ws2e{word-spacing:2.920730pt;}
.ws7{word-spacing:2.932989pt;}
.ws29{word-spacing:2.978912pt;}
.wsa4{word-spacing:3.037093pt;}
.ws6f{word-spacing:3.095275pt;}
.ws10{word-spacing:3.153457pt;}
.ws2{word-spacing:3.211639pt;}
.ws5f{word-spacing:3.269821pt;}
.wscc{word-spacing:3.386185pt;}
.ws13{word-spacing:3.444367pt;}
.ws6e{word-spacing:3.502548pt;}
.wse9{word-spacing:3.514185pt;}
.ws90{word-spacing:3.560730pt;}
.wsa{word-spacing:3.618912pt;}
.ws2c{word-spacing:3.677094pt;}
.ws3a{word-spacing:3.753933pt;}
.ws40{word-spacing:3.793458pt;}
.ws144{word-spacing:3.805094pt;}
.wsb3{word-spacing:3.851640pt;}
.ws86{word-spacing:3.909821pt;}
.ws102{word-spacing:3.921458pt;}
.wsd{word-spacing:3.968003pt;}
.ws114{word-spacing:4.026185pt;}
.wsc9{word-spacing:4.037822pt;}
.wsfc{word-spacing:4.084367pt;}
.ws5{word-spacing:4.131706pt;}
.ws118{word-spacing:4.142549pt;}
.wsea{word-spacing:4.154185pt;}
.wsbb{word-spacing:4.212367pt;}
.wsb1{word-spacing:4.258913pt;}
.ws89{word-spacing:4.317095pt;}
.wsf9{word-spacing:4.328731pt;}
.ws8e{word-spacing:4.375276pt;}
.ws60{word-spacing:4.433458pt;}
.ws2d{word-spacing:4.491640pt;}
.ws123{word-spacing:4.503276pt;}
.wsec{word-spacing:4.549822pt;}
.ws112{word-spacing:4.608004pt;}
.wsf7{word-spacing:4.619640pt;}
.ws6b{word-spacing:4.666186pt;}
.ws53{word-spacing:4.724368pt;}
.ws145{word-spacing:4.766553pt;}
.ws129{word-spacing:4.771249pt;}
.ws119{word-spacing:4.776859pt;}
.ws141{word-spacing:4.781189pt;}
.ws6c{word-spacing:4.782549pt;}
.wsba{word-spacing:4.794186pt;}
.ws140{word-spacing:4.802181pt;}
.ws35{word-spacing:4.840731pt;}
.wsb2{word-spacing:4.898913pt;}
.ws80{word-spacing:4.957095pt;}
.ws14{word-spacing:5.015277pt;}
.ws7e{word-spacing:5.073459pt;}
.ws76{word-spacing:5.131641pt;}
.ws106{word-spacing:5.143277pt;}
.wse8{word-spacing:5.189823pt;}
.wsf2{word-spacing:5.201459pt;}
.wsa5{word-spacing:5.248004pt;}
.ws2b{word-spacing:5.306186pt;}
.wse1{word-spacing:5.317823pt;}
.wsa2{word-spacing:5.364368pt;}
.ws66{word-spacing:5.422550pt;}
.ws6{word-spacing:5.440908pt;}
.ws22{word-spacing:5.480732pt;}
.ws17{word-spacing:5.538914pt;}
.ws16{word-spacing:5.597096pt;}
.ws85{word-spacing:5.655277pt;}
.wsc2{word-spacing:5.713459pt;}
.ws10b{word-spacing:5.725096pt;}
.ws5e{word-spacing:5.771641pt;}
.wsf0{word-spacing:5.829823pt;}
.wsd5{word-spacing:5.841459pt;}
.wsca{word-spacing:5.899641pt;}
.ws1{word-spacing:5.957823pt;}
.ws75{word-spacing:6.004369pt;}
.ws98{word-spacing:6.062551pt;}
.wsc4{word-spacing:6.120732pt;}
.ws67{word-spacing:6.178914pt;}
.ws100{word-spacing:6.190551pt;}
.ws24{word-spacing:6.237096pt;}
.wsb9{word-spacing:6.248732pt;}
.ws138{word-spacing:6.353460pt;}
.wsc7{word-spacing:6.365096pt;}
.wsde{word-spacing:6.411642pt;}
.ws54{word-spacing:6.469824pt;}
.wsf8{word-spacing:6.481460pt;}
.ws71{word-spacing:6.528005pt;}
.wsb7{word-spacing:6.539642pt;}
.wsb{word-spacing:6.586187pt;}
.ws116{word-spacing:6.597824pt;}
.ws115{word-spacing:6.644369pt;}
.wse6{word-spacing:6.702551pt;}
.ws33{word-spacing:6.760733pt;}
.ws12c{word-spacing:6.772369pt;}
.ws61{word-spacing:6.818915pt;}
.ws134{word-spacing:6.877097pt;}
.wsf3{word-spacing:6.888733pt;}
.ws57{word-spacing:6.935279pt;}
.ws55{word-spacing:6.993460pt;}
.ws13f{word-spacing:7.051642pt;}
.wsaf{word-spacing:7.109824pt;}
.ws124{word-spacing:7.121460pt;}
.wsdc{word-spacing:7.168006pt;}
.ws103{word-spacing:7.179642pt;}
.wse5{word-spacing:7.226188pt;}
.ws11b{word-spacing:7.284370pt;}
.ws78{word-spacing:7.342552pt;}
.ws131{word-spacing:7.354188pt;}
.ws27{word-spacing:7.400733pt;}
.ws37{word-spacing:7.458915pt;}
.wse7{word-spacing:7.470552pt;}
.wsfe{word-spacing:7.517097pt;}
.wsd1{word-spacing:7.575279pt;}
.wsda{word-spacing:7.633461pt;}
.wsef{word-spacing:7.691643pt;}
.ws4d{word-spacing:7.749825pt;}
.ws45{word-spacing:7.808007pt;}
.ws15{word-spacing:7.866188pt;}
.wsb8{word-spacing:7.877825pt;}
.wsc6{word-spacing:7.924370pt;}
.wsfb{word-spacing:7.936007pt;}
.ws36{word-spacing:7.982552pt;}
.wsd2{word-spacing:7.989734pt;}
.ws147{word-spacing:7.994188pt;}
.ws25{word-spacing:8.040734pt;}
.ws2a{word-spacing:8.098916pt;}
.ws1f{word-spacing:8.157098pt;}
.wsc1{word-spacing:8.168734pt;}
.ws93{word-spacing:8.215280pt;}
.wsc3{word-spacing:8.226916pt;}
.wsbf{word-spacing:8.273461pt;}
.ws13d{word-spacing:8.285098pt;}
.wsd9{word-spacing:8.331643pt;}
.ws48{word-spacing:8.389825pt;}
.ws108{word-spacing:8.401462pt;}
.ws104{word-spacing:8.448007pt;}
.ws56{word-spacing:8.506189pt;}
.wse3{word-spacing:8.558780pt;}
.ws11a{word-spacing:8.564371pt;}
.wsfa{word-spacing:8.692371pt;}
.wsf{word-spacing:8.738916pt;}
.ws10d{word-spacing:8.797098pt;}
.wsed{word-spacing:8.855280pt;}
.wse2{word-spacing:8.866916pt;}
.wsbd{word-spacing:9.029826pt;}
.ws148{word-spacing:9.088008pt;}
.ws7a{word-spacing:9.146189pt;}
.ws149{word-spacing:9.157826pt;}
.ws34{word-spacing:9.204371pt;}
.ws43{word-spacing:9.320735pt;}
.ws81{word-spacing:9.378917pt;}
.ws4c{word-spacing:9.437099pt;}
.ws107{word-spacing:9.448735pt;}
.ws23{word-spacing:9.495281pt;}
.ws39{word-spacing:9.553463pt;}
.wscf{word-spacing:9.565099pt;}
.ws5d{word-spacing:9.611644pt;}
.ws13e{word-spacing:9.623281pt;}
.ws12d{word-spacing:9.661433pt;}
.ws125{word-spacing:9.669826pt;}
.wsd4{word-spacing:9.681463pt;}
.ws122{word-spacing:9.684089pt;}
.ws12e{word-spacing:9.728008pt;}
.ws68{word-spacing:9.786190pt;}
.wsd6{word-spacing:9.797826pt;}
.ws72{word-spacing:9.844372pt;}
.ws135{word-spacing:9.914190pt;}
.ws4a{word-spacing:9.960736pt;}
.wsd0{word-spacing:9.972372pt;}
.wsc{word-spacing:10.077099pt;}
.wsc8{word-spacing:10.088736pt;}
.ws3e{word-spacing:10.135281pt;}
.wsbe{word-spacing:10.193463pt;}
.ws3c{word-spacing:10.209741pt;}
.ws11f{word-spacing:10.251645pt;}
.ws3f{word-spacing:10.309827pt;}
.wsac{word-spacing:10.426191pt;}
.ws74{word-spacing:10.484372pt;}
.ws4e{word-spacing:10.542554pt;}
.wsc0{word-spacing:10.612372pt;}
.wsdd{word-spacing:10.658918pt;}
.ws133{word-spacing:10.670554pt;}
.ws13b{word-spacing:10.728736pt;}
.ws111{word-spacing:10.775282pt;}
.ws69{word-spacing:10.833464pt;}
.ws6a{word-spacing:10.891645pt;}
.ws79{word-spacing:10.949827pt;}
.wsee{word-spacing:11.008009pt;}
.ws139{word-spacing:11.019646pt;}
.wse{word-spacing:11.066191pt;}
.wsd8{word-spacing:11.124373pt;}
.wsf6{word-spacing:11.136009pt;}
.ws21{word-spacing:11.182555pt;}
.ws4b{word-spacing:11.415282pt;}
.ws110{word-spacing:11.589828pt;}
.wsd3{word-spacing:11.601464pt;}
.ws11e{word-spacing:11.659646pt;}
.ws7d{word-spacing:11.706192pt;}
.wsdf{word-spacing:11.764373pt;}
.ws77{word-spacing:11.822555pt;}
.ws7b{word-spacing:11.938919pt;}
.ws136{word-spacing:11.950555pt;}
.ws12f{word-spacing:12.008737pt;}
.ws10f{word-spacing:12.113465pt;}
.wsdb{word-spacing:12.171647pt;}
.wsb4{word-spacing:12.229828pt;}
.ws47{word-spacing:12.288010pt;}
.ws120{word-spacing:12.416010pt;}
.ws10c{word-spacing:12.695283pt;}
.ws126{word-spacing:12.753465pt;}
.ws117{word-spacing:12.939647pt;}
.ws7c{word-spacing:13.218920pt;}
.ws11c{word-spacing:13.451648pt;}
.wse0{word-spacing:13.812375pt;}
.ws132{word-spacing:14.161466pt;}
.ws11d{word-spacing:15.383286pt;}
.ws99{word-spacing:18.793574pt;}
.ws9a{word-spacing:18.841395pt;}
.wsb0{word-spacing:22.225473pt;}
.wsd7{word-spacing:22.283655pt;}
.ws137{word-spacing:22.760746pt;}
.wseb{word-spacing:23.846639pt;}
.ws13c{word-spacing:25.378930pt;}
.ws13a{word-spacing:26.309840pt;}
.ws32{word-spacing:28.615887pt;}
.ws130{word-spacing:29.393479pt;}
.ws94{word-spacing:35.833719pt;}
.ws3{word-spacing:41.214800pt;}
.ws1e{word-spacing:43.000343pt;}
.ws1a{word-spacing:58.127258pt;}
.ws8{word-spacing:58.131650pt;}
.ws9e{word-spacing:264.784980pt;}
.ws9c{word-spacing:368.337386pt;}
.ws9f{word-spacing:368.338277pt;}
.wsa0{word-spacing:392.908052pt;}
.ws9b{word-spacing:392.908943pt;}
.ws3d{word-spacing:818.478944pt;}
._2b{margin-left:-2058.207109pt;}
._3e{margin-left:-39.040033pt;}
._1e{margin-left:-36.444172pt;}
._14{margin-left:-30.487298pt;}
._6{margin-left:-10.358800pt;}
._3d{margin-left:-9.082580pt;}
._1b{margin-left:-7.192228pt;}
._2{margin-left:-5.934550pt;}
._1{margin-left:-4.363640pt;}
._0{margin-left:-3.025457pt;}
._4{margin-left:-1.570910pt;}
._5{width:1.570910pt;}
._26{width:2.501820pt;}
._8{width:3.526400pt;}
._41{width:4.444516pt;}
._3a{width:8.118965pt;}
._39{width:9.742869pt;}
._a{width:14.254557pt;}
._19{width:15.545027pt;}
._3b{width:16.543523pt;}
._17{width:17.535436pt;}
._18{width:18.560015pt;}
._24{width:20.712745pt;}
._12{width:21.622178pt;}
._36{width:22.516382pt;}
._9{width:23.727733pt;}
._3{width:25.367294pt;}
._15{width:27.170932pt;}
._3c{width:28.111757pt;}
._d{width:29.032751pt;}
._23{width:30.254571pt;}
._f{width:31.185481pt;}
._20{width:32.465482pt;}
._11{width:33.512755pt;}
._16{width:34.792756pt;}
._21{width:36.014575pt;}
._38{width:37.469122pt;}
._1d{width:38.807305pt;}
._10{width:39.912761pt;}
._22{width:41.018216pt;}
._e{width:42.123671pt;}
._1a{width:43.076857pt;}
._1c{width:43.985491pt;}
._1f{width:45.149129pt;}
._b{width:46.254584pt;}
._37{width:47.650949pt;}
._c{width:49.105495pt;}
._27{width:50.560042pt;}
._25{width:52.130953pt;}
._40{width:53.142022pt;}
._7{width:55.100000pt;}
._3f{width:56.610956pt;}
._28{width:65.879764pt;}
._2c{width:291.300155pt;}
._31{width:381.991115pt;}
._2a{width:406.560891pt;}
._29{width:667.571846pt;}
._30{width:683.813292pt;}
._13{width:702.908556pt;}
._2f{width:744.778527pt;}
._2e{width:966.389673pt;}
._2d{width:1008.444793pt;}
._32{width:1028.919261pt;}
._35{width:1041.230734pt;}
._34{width:1053.495261pt;}
._33{width:1065.806734pt;}
.fs9{font-size:31.880533pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:42.507200pt;}
.fsa{font-size:47.820800pt;}
.fs8{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.181867pt;}
.fsc{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:76.513067pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y46{bottom:120.272000pt;}
.y24{bottom:123.790666pt;}
.y45{bottom:138.337333pt;}
.y1b{bottom:175.052000pt;}
.y23{bottom:186.238666pt;}
.y1a{bottom:186.252002pt;}
.y6f{bottom:188.957333pt;}
.y14d{bottom:191.784000pt;}
.y18c{bottom:191.858667pt;}
.y22{bottom:197.438668pt;}
.y19{bottom:197.452004pt;}
.ybe{bottom:200.986667pt;}
.y44{bottom:201.566667pt;}
.y12b{bottom:201.880000pt;}
.y6e{bottom:203.569333pt;}
.y43{bottom:206.645333pt;}
.y99{bottom:207.022667pt;}
.y21{bottom:208.638670pt;}
.y18{bottom:208.651996pt;}
.y18b{bottom:209.924000pt;}
.y19c{bottom:210.684000pt;}
.ybd{bottom:219.052000pt;}
.y12a{bottom:219.945333pt;}
.y14c{bottom:221.805333pt;}
.y6d{bottom:223.260000pt;}
.yc5{bottom:225.088000pt;}
.y98{bottom:225.089333pt;}
.y103{bottom:225.628000pt;}
.y18a{bottom:227.989333pt;}
.y19b{bottom:228.750667pt;}
.y20{bottom:231.038664pt;}
.y17{bottom:231.052000pt;}
.y6c{bottom:232.793333pt;}
.y147{bottom:233.760000pt;}
.ye6{bottom:234.482667pt;}
.ybc{bottom:237.117333pt;}
.y129{bottom:238.010667pt;}
.y14b{bottom:239.870667pt;}
.y1f{bottom:242.238666pt;}
.y16{bottom:242.252002pt;}
.y97{bottom:243.154667pt;}
.y102{bottom:243.693333pt;}
.y189{bottom:246.054667pt;}
.y19a{bottom:246.816000pt;}
.y146{bottom:251.826667pt;}
.y6b{bottom:252.484000pt;}
.y1e{bottom:253.438668pt;}
.y15{bottom:253.451999pt;}
.ybb{bottom:255.182667pt;}
.y16e{bottom:255.648000pt;}
.y128{bottom:256.077333pt;}
.y14a{bottom:257.936000pt;}
.y96{bottom:261.220000pt;}
.y101{bottom:261.758667pt;}
.y42{bottom:262.645333pt;}
.y188{bottom:264.120000pt;}
.y199{bottom:264.881333pt;}
.y145{bottom:269.892000pt;}
.yc4{bottom:270.613333pt;}
.yba{bottom:273.249333pt;}
.ye5{bottom:273.384000pt;}
.y16d{bottom:273.714667pt;}
.y127{bottom:274.142667pt;}
.y1d{bottom:275.838667pt;}
.y14{bottom:275.852001pt;}
.y149{bottom:276.002667pt;}
.y6a{bottom:276.910667pt;}
.y95{bottom:279.285333pt;}
.y100{bottom:279.824000pt;}
.y41{bottom:280.710667pt;}
.y187{bottom:282.186667pt;}
.y198{bottom:282.946667pt;}
.y1c{bottom:287.038667pt;}
.y13{bottom:287.052000pt;}
.y144{bottom:287.957333pt;}
.yb9{bottom:291.314667pt;}
.ye4{bottom:291.449333pt;}
.y16c{bottom:291.780000pt;}
.y126{bottom:292.208000pt;}
.y148{bottom:294.068000pt;}
.y69{bottom:294.976000pt;}
.y94{bottom:297.350667pt;}
.yff{bottom:297.890667pt;}
.y186{bottom:300.252000pt;}
.y197{bottom:301.012000pt;}
.y143{bottom:306.022667pt;}
.yb8{bottom:309.380000pt;}
.y12{bottom:309.452000pt;}
.yc3{bottom:309.472000pt;}
.ye3{bottom:309.514667pt;}
.y16b{bottom:309.845333pt;}
.y125{bottom:310.273333pt;}
.y68{bottom:313.041333pt;}
.y93{bottom:315.417333pt;}
.yfe{bottom:315.956000pt;}
.y185{bottom:318.317333pt;}
.y196{bottom:319.078667pt;}
.y40{bottom:319.129333pt;}
.y142{bottom:324.088000pt;}
.yb7{bottom:327.445333pt;}
.yc2{bottom:327.537333pt;}
.ye2{bottom:327.581333pt;}
.y16a{bottom:327.910667pt;}
.y124{bottom:328.338667pt;}
.y67{bottom:331.106667pt;}
.y92{bottom:333.482667pt;}
.yfd{bottom:334.021333pt;}
.y184{bottom:336.382667pt;}
.y195{bottom:337.144000pt;}
.y3f{bottom:337.194667pt;}
.y141{bottom:342.153333pt;}
.y11{bottom:343.809333pt;}
.yb6{bottom:345.510667pt;}
.ye1{bottom:345.646667pt;}
.y169{bottom:345.976000pt;}
.y123{bottom:346.404000pt;}
.y66{bottom:349.173333pt;}
.y91{bottom:351.548000pt;}
.yfc{bottom:352.086667pt;}
.y183{bottom:354.448000pt;}
.y194{bottom:355.209333pt;}
.y3e{bottom:355.260000pt;}
.yc1{bottom:360.006667pt;}
.y140{bottom:360.220000pt;}
.y10{bottom:362.706666pt;}
.yb5{bottom:363.577333pt;}
.ye0{bottom:363.712000pt;}
.y168{bottom:364.042667pt;}
.y122{bottom:364.470667pt;}
.y65{bottom:367.238667pt;}
.y90{bottom:369.613333pt;}
.yfb{bottom:370.152000pt;}
.y182{bottom:372.514667pt;}
.y193{bottom:373.274667pt;}
.y3d{bottom:373.326667pt;}
.y13f{bottom:378.285333pt;}
.yb4{bottom:381.642667pt;}
.ydf{bottom:381.777333pt;}
.y167{bottom:382.108000pt;}
.y121{bottom:382.536000pt;}
.y64{bottom:385.304000pt;}
.y8f{bottom:387.678667pt;}
.yfa{bottom:388.218667pt;}
.y181{bottom:390.580000pt;}
.y192{bottom:391.340000pt;}
.y3c{bottom:391.392000pt;}
.y13e{bottom:396.350667pt;}
.yb3{bottom:399.708000pt;}
.yde{bottom:399.842667pt;}
.y166{bottom:400.173333pt;}
.y120{bottom:400.601333pt;}
.y63{bottom:403.369333pt;}
.y8e{bottom:405.744000pt;}
.yf9{bottom:406.284000pt;}
.y180{bottom:408.645333pt;}
.y191{bottom:409.406667pt;}
.y3b{bottom:409.457333pt;}
.y13d{bottom:414.416000pt;}
.yf{bottom:414.990669pt;}
.yb2{bottom:417.773333pt;}
.ydd{bottom:417.908000pt;}
.y165{bottom:418.238667pt;}
.y11f{bottom:418.666667pt;}
.y62{bottom:421.434667pt;}
.y8d{bottom:423.810667pt;}
.yf8{bottom:424.349333pt;}
.y17f{bottom:426.710667pt;}
.y190{bottom:427.472000pt;}
.y3a{bottom:427.522667pt;}
.ye{bottom:430.990669pt;}
.y13c{bottom:432.481333pt;}
.yb1{bottom:435.838667pt;}
.ydc{bottom:435.974667pt;}
.y164{bottom:436.304000pt;}
.y11e{bottom:436.732000pt;}
.y8c{bottom:441.876000pt;}
.yf7{bottom:442.414667pt;}
.y17e{bottom:444.776000pt;}
.y18f{bottom:445.537333pt;}
.y39{bottom:445.588000pt;}
.yd{bottom:446.990669pt;}
.y13b{bottom:450.548000pt;}
.y61{bottom:453.905333pt;}
.ydb{bottom:454.040000pt;}
.y163{bottom:454.370667pt;}
.y11d{bottom:454.798667pt;}
.y8b{bottom:459.941333pt;}
.yc{bottom:462.990669pt;}
.y18e{bottom:463.602667pt;}
.y38{bottom:463.654667pt;}
.y13a{bottom:468.613333pt;}
.yb0{bottom:471.970667pt;}
.yda{bottom:472.105333pt;}
.yf6{bottom:472.436000pt;}
.y11c{bottom:472.864000pt;}
.y17d{bottom:477.246667pt;}
.y8a{bottom:478.006667pt;}
.yb{bottom:478.990666pt;}
.y18d{bottom:481.668000pt;}
.y37{bottom:481.720000pt;}
.y139{bottom:486.678667pt;}
.yaf{bottom:490.036000pt;}
.yd9{bottom:490.170667pt;}
.yf5{bottom:490.501333pt;}
.y11b{bottom:490.929333pt;}
.ya{bottom:494.990666pt;}
.y89{bottom:496.072000pt;}
.y60{bottom:499.734667pt;}
.y36{bottom:499.785333pt;}
.y138{bottom:504.744000pt;}
.yae{bottom:508.101333pt;}
.yd8{bottom:508.236000pt;}
.yf4{bottom:508.566667pt;}
.y11a{bottom:508.994667pt;}
.y88{bottom:514.138667pt;}
.y5f{bottom:517.800000pt;}
.y35{bottom:517.850667pt;}
.y137{bottom:522.809333pt;}
.y17c{bottom:523.076000pt;}
.yad{bottom:526.166667pt;}
.yd7{bottom:526.302667pt;}
.yf3{bottom:526.632000pt;}
.y119{bottom:527.060000pt;}
.y87{bottom:532.204000pt;}
.y5e{bottom:535.865333pt;}
.y34{bottom:535.916000pt;}
.y136{bottom:540.876000pt;}
.y17b{bottom:541.141333pt;}
.yac{bottom:544.232000pt;}
.yc0{bottom:544.233333pt;}
.yd6{bottom:544.368000pt;}
.y162{bottom:544.697333pt;}
.y118{bottom:545.126667pt;}
.y86{bottom:550.269333pt;}
.y5d{bottom:553.930667pt;}
.y33{bottom:553.982667pt;}
.yf2{bottom:556.653333pt;}
.y9{bottom:556.986668pt;}
.y135{bottom:558.941333pt;}
.y17a{bottom:559.206667pt;}
.yab{bottom:562.298667pt;}
.yd5{bottom:562.433333pt;}
.y161{bottom:562.764000pt;}
.y117{bottom:563.192000pt;}
.y85{bottom:568.334667pt;}
.y5c{bottom:571.996000pt;}
.y32{bottom:572.048000pt;}
.y8{bottom:573.786667pt;}
.yf1{bottom:574.718667pt;}
.y134{bottom:577.006667pt;}
.y179{bottom:577.272000pt;}
.yaa{bottom:580.364000pt;}
.yd4{bottom:580.498667pt;}
.y160{bottom:580.829333pt;}
.y116{bottom:581.257333pt;}
.y84{bottom:586.400000pt;}
.y5b{bottom:590.062667pt;}
.y31{bottom:590.113333pt;}
.y7{bottom:592.685334pt;}
.yf0{bottom:592.784000pt;}
.y133{bottom:595.072000pt;}
.y178{bottom:595.337333pt;}
.ya9{bottom:598.429333pt;}
.y15f{bottom:598.894667pt;}
.y115{bottom:599.322667pt;}
.y83{bottom:604.466667pt;}
.y5a{bottom:608.128000pt;}
.y30{bottom:608.178667pt;}
.yef{bottom:610.849333pt;}
.y132{bottom:613.137333pt;}
.ya8{bottom:616.494667pt;}
.y15e{bottom:616.960000pt;}
.yd3{bottom:617.364000pt;}
.y114{bottom:617.388000pt;}
.y82{bottom:622.532000pt;}
.y177{bottom:625.358667pt;}
.y59{bottom:626.193333pt;}
.y2f{bottom:626.244000pt;}
.yee{bottom:628.916000pt;}
.y131{bottom:631.204000pt;}
.ya7{bottom:634.560000pt;}
.yd2{bottom:634.898667pt;}
.y15d{bottom:635.025333pt;}
.y81{bottom:640.597333pt;}
.y176{bottom:643.424000pt;}
.y58{bottom:644.258667pt;}
.y6{bottom:645.598667pt;}
.yed{bottom:646.981333pt;}
.y130{bottom:649.269333pt;}
.y113{bottom:651.394667pt;}
.ya6{bottom:652.626667pt;}
.yd1{bottom:652.964000pt;}
.y15c{bottom:653.092000pt;}
.y80{bottom:658.662667pt;}
.y175{bottom:661.489333pt;}
.y57{bottom:662.324000pt;}
.yec{bottom:665.046667pt;}
.ybf{bottom:667.030667pt;}
.y12f{bottom:667.334667pt;}
.y3{bottom:668.977329pt;}
.y112{bottom:669.460000pt;}
.yd0{bottom:670.498667pt;}
.ya5{bottom:670.692000pt;}
.y15b{bottom:671.157333pt;}
.y7f{bottom:676.728000pt;}
.y174{bottom:679.556000pt;}
.y56{bottom:680.390667pt;}
.yeb{bottom:683.112000pt;}
.y12e{bottom:685.400000pt;}
.y111{bottom:687.525333pt;}
.ycf{bottom:688.032000pt;}
.ya4{bottom:688.757333pt;}
.y15a{bottom:689.222667pt;}
.y7e{bottom:694.794667pt;}
.y55{bottom:698.456000pt;}
.yea{bottom:701.177333pt;}
.y12d{bottom:703.465333pt;}
.y110{bottom:705.590667pt;}
.yce{bottom:706.097333pt;}
.ya3{bottom:706.822667pt;}
.y159{bottom:707.288000pt;}
.y173{bottom:709.576000pt;}
.y2e{bottom:709.694667pt;}
.y7d{bottom:712.860000pt;}
.y54{bottom:716.521333pt;}
.ye9{bottom:719.244000pt;}
.y12c{bottom:721.532000pt;}
.ycd{bottom:723.632000pt;}
.ya2{bottom:724.888000pt;}
.y158{bottom:725.353333pt;}
.y172{bottom:727.641333pt;}
.y7c{bottom:730.925333pt;}
.y53{bottom:734.586667pt;}
.ye8{bottom:737.309333pt;}
.y10f{bottom:739.597333pt;}
.ycc{bottom:741.697333pt;}
.ya1{bottom:742.954667pt;}
.y157{bottom:743.420000pt;}
.y171{bottom:745.708000pt;}
.y7b{bottom:748.990667pt;}
.y52{bottom:752.652000pt;}
.y2d{bottom:756.121333pt;}
.y10e{bottom:757.662667pt;}
.ycb{bottom:759.232000pt;}
.ya0{bottom:761.020000pt;}
.y156{bottom:761.485333pt;}
.y170{bottom:763.773333pt;}
.ye7{bottom:764.768000pt;}
.y7a{bottom:767.056000pt;}
.y51{bottom:770.718667pt;}
.y2c{bottom:772.061333pt;}
.y10d{bottom:775.728000pt;}
.yca{bottom:777.297333pt;}
.y9f{bottom:779.085333pt;}
.y155{bottom:779.550667pt;}
.y2{bottom:781.661334pt;}
.y16f{bottom:781.838667pt;}
.y79{bottom:785.122667pt;}
.y50{bottom:788.784000pt;}
.y10c{bottom:793.793333pt;}
.yc9{bottom:794.832000pt;}
.y9e{bottom:797.150667pt;}
.y154{bottom:797.616000pt;}
.y2b{bottom:802.546667pt;}
.y78{bottom:803.188000pt;}
.y4f{bottom:806.849333pt;}
.y10b{bottom:811.858667pt;}
.yc8{bottom:812.897333pt;}
.y9d{bottom:815.216000pt;}
.y153{bottom:815.681333pt;}
.y77{bottom:821.253333pt;}
.y4e{bottom:824.914667pt;}
.y10a{bottom:829.925333pt;}
.yc7{bottom:830.430667pt;}
.y9c{bottom:833.282667pt;}
.y76{bottom:839.318667pt;}
.y4d{bottom:842.980000pt;}
.y152{bottom:843.141333pt;}
.y109{bottom:847.990667pt;}
.y2a{bottom:849.670667pt;}
.y9b{bottom:851.348000pt;}
.y75{bottom:857.384000pt;}
.y1{bottom:859.312000pt;}
.y4c{bottom:861.045333pt;}
.y108{bottom:866.056000pt;}
.yc6{bottom:866.986667pt;}
.y74{bottom:875.449333pt;}
.y4b{bottom:879.112000pt;}
.y151{bottom:881.560000pt;}
.y29{bottom:882.878667pt;}
.y9a{bottom:883.817333pt;}
.y107{bottom:884.121333pt;}
.y73{bottom:893.516000pt;}
.y4a{bottom:897.177333pt;}
.y150{bottom:899.626667pt;}
.y106{bottom:902.186667pt;}
.y72{bottom:911.581333pt;}
.y49{bottom:915.242667pt;}
.y28{bottom:916.088000pt;}
.y14f{bottom:917.692000pt;}
.y105{bottom:920.253333pt;}
.y71{bottom:929.646667pt;}
.y48{bottom:933.308000pt;}
.y14e{bottom:935.757333pt;}
.y104{bottom:938.318667pt;}
.y70{bottom:947.712000pt;}
.y47{bottom:965.777333pt;}
.y27{bottom:1012.908000pt;}
.y26{bottom:1030.973333pt;}
.y25{bottom:1049.038667pt;}
.hd{height:14.856329pt;}
.h12{height:21.200555pt;}
.h7{height:28.560000pt;}
.h14{height:33.474560pt;}
.he{height:35.865600pt;}
.hc{height:39.850400pt;}
.h15{height:40.610943pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h9{height:43.636400pt;}
.h13{height:44.632747pt;}
.h2{height:48.960000pt;}
.h11{height:49.376621pt;}
.h10{height:49.381955pt;}
.hf{height:53.559147pt;}
.hb{height:54.630330pt;}
.h5{height:69.360000pt;}
.ha{height:77.140000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:119.054667pt;}
.x6{left:121.681333pt;}
.x7{left:123.478667pt;}
.xf{left:124.589333pt;}
.xa{left:128.304000pt;}
.xe{left:133.600000pt;}
.x14{left:139.574667pt;}
.x16{left:145.622667pt;}
.x15{left:155.418667pt;}
.x4{left:180.874667pt;}
.x9{left:201.245333pt;}
.xc{left:202.726667pt;}
.x10{left:237.113333pt;}
.x13{left:258.389333pt;}
.xd{left:316.612000pt;}
.x8{left:344.612000pt;}
.xb{left:357.373333pt;}
.x3{left:404.408000pt;}
.x11{left:477.794667pt;}
.x12{left:562.813333pt;}
}




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