
    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_1984e80ac9a0a757b4c6b81c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_88433b205f66b3dca62918f6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_e39142928dd59becfc7d0fa6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_f7b3b7811da97f95b17b0a6a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091309;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.247498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-20.790000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.790600px;}
.v1{vertical-align:26.730000px;}
.ls11{letter-spacing:-1.587000px;}
.ls14{letter-spacing:-0.414000px;}
.lsd{letter-spacing:-0.345000px;}
.ls1c{letter-spacing:-0.315000px;}
.lsa{letter-spacing:-0.276000px;}
.ls4{letter-spacing:-0.252000px;}
.ls12{letter-spacing:-0.207000px;}
.ls7{letter-spacing:-0.189000px;}
.lse{letter-spacing:-0.138000px;}
.ls3{letter-spacing:-0.126000px;}
.ls9{letter-spacing:-0.069000px;}
.ls17{letter-spacing:-0.063000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.063000px;}
.lsb{letter-spacing:0.069000px;}
.ls1{letter-spacing:0.126000px;}
.ls8{letter-spacing:0.138000px;}
.ls1d{letter-spacing:0.204750px;}
.lsf{letter-spacing:0.207000px;}
.ls0{letter-spacing:0.252000px;}
.ls15{letter-spacing:0.276000px;}
.ls1b{letter-spacing:0.315000px;}
.ls6{letter-spacing:0.345000px;}
.ls18{letter-spacing:0.378000px;}
.lsc{letter-spacing:0.414000px;}
.ls1a{letter-spacing:0.441000px;}
.ls10{letter-spacing:0.483000px;}
.ls13{letter-spacing:0.552000px;}
.ls19{letter-spacing:0.567000px;}
.ls16{letter-spacing:2.205000px;}
.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;}
}
.ws2{word-spacing:-20.250000px;}
.wsa7{word-spacing:-17.388000px;}
.ws6b{word-spacing:-17.250000px;}
.wsc5{word-spacing:-16.065000px;}
.ws3{word-spacing:-15.750000px;}
.ws5a{word-spacing:-15.663000px;}
.ws1{word-spacing:-13.162500px;}
.ws0{word-spacing:-12.750000px;}
.wsc4{word-spacing:-10.442250px;}
.wsb0{word-spacing:-10.237500px;}
.wsac{word-spacing:-2.205000px;}
.ws98{word-spacing:-0.966000px;}
.ws69{word-spacing:-0.483000px;}
.wsd6{word-spacing:-0.315000px;}
.wsd4{word-spacing:-0.252000px;}
.ws3d{word-spacing:-0.138000px;}
.wsbe{word-spacing:-0.126000px;}
.ws6{word-spacing:0.000000px;}
.ws9e{word-spacing:0.069000px;}
.ws93{word-spacing:0.138000px;}
.wsa6{word-spacing:0.207000px;}
.wsbb{word-spacing:0.252000px;}
.ws62{word-spacing:0.276000px;}
.wsaf{word-spacing:0.315000px;}
.ws4a{word-spacing:0.345000px;}
.ws7a{word-spacing:0.414000px;}
.ws92{word-spacing:0.483000px;}
.ws1b{word-spacing:0.513000px;}
.ws63{word-spacing:0.552000px;}
.wsb1{word-spacing:0.567000px;}
.ws88{word-spacing:0.621000px;}
.ws60{word-spacing:0.690000px;}
.wsce{word-spacing:0.693000px;}
.ws8{word-spacing:0.756000px;}
.ws50{word-spacing:0.759000px;}
.wsd3{word-spacing:0.819000px;}
.ws33{word-spacing:0.828000px;}
.ws8a{word-spacing:0.897000px;}
.ws56{word-spacing:1.035000px;}
.ws67{word-spacing:1.104000px;}
.ws3b{word-spacing:1.173000px;}
.ws86{word-spacing:1.242000px;}
.ws4e{word-spacing:1.311000px;}
.ws22{word-spacing:1.380000px;}
.ws11{word-spacing:1.449000px;}
.wscd{word-spacing:1.512000px;}
.ws3f{word-spacing:1.518000px;}
.wsb8{word-spacing:1.575000px;}
.ws6c{word-spacing:1.587000px;}
.ws5c{word-spacing:1.656000px;}
.ws3c{word-spacing:1.725000px;}
.ws8b{word-spacing:1.794000px;}
.ws2c{word-spacing:1.863000px;}
.ws6e{word-spacing:1.932000px;}
.wsb{word-spacing:1.953000px;}
.ws2d{word-spacing:2.001000px;}
.wsb5{word-spacing:2.016000px;}
.ws4f{word-spacing:2.070000px;}
.ws25{word-spacing:2.139000px;}
.ws20{word-spacing:2.142000px;}
.wsc7{word-spacing:2.205000px;}
.ws38{word-spacing:2.208000px;}
.ws89{word-spacing:2.277000px;}
.wsbf{word-spacing:2.331000px;}
.ws29{word-spacing:2.346000px;}
.wsb4{word-spacing:2.394000px;}
.ws2b{word-spacing:2.415000px;}
.ws15{word-spacing:2.457000px;}
.ws99{word-spacing:2.484000px;}
.ws4{word-spacing:2.550000px;}
.ws58{word-spacing:2.553000px;}
.ws19{word-spacing:2.622000px;}
.ws95{word-spacing:2.691000px;}
.ws37{word-spacing:2.760000px;}
.ws34{word-spacing:2.829000px;}
.ws18{word-spacing:2.835000px;}
.ws1d{word-spacing:2.850000px;}
.ws82{word-spacing:2.898000px;}
.ws44{word-spacing:2.967000px;}
.ws87{word-spacing:3.036000px;}
.wscf{word-spacing:3.087000px;}
.ws8d{word-spacing:3.105000px;}
.ws7{word-spacing:3.150000px;}
.ws7d{word-spacing:3.174000px;}
.wsb7{word-spacing:3.213000px;}
.ws70{word-spacing:3.243000px;}
.ws1e{word-spacing:3.249000px;}
.ws1f{word-spacing:3.300000px;}
.ws9b{word-spacing:3.312000px;}
.wsbd{word-spacing:3.339000px;}
.ws85{word-spacing:3.381000px;}
.ws26{word-spacing:3.450000px;}
.ws9d{word-spacing:3.519000px;}
.wsb9{word-spacing:3.528000px;}
.ws2a{word-spacing:3.588000px;}
.wsc9{word-spacing:3.591000px;}
.ws9{word-spacing:3.654000px;}
.ws40{word-spacing:3.657000px;}
.ws48{word-spacing:3.726000px;}
.ws5f{word-spacing:3.795000px;}
.wsc2{word-spacing:3.843000px;}
.ws96{word-spacing:3.864000px;}
.ws12{word-spacing:3.906000px;}
.ws5b{word-spacing:3.933000px;}
.ws4b{word-spacing:4.002000px;}
.ws5{word-spacing:4.050000px;}
.ws5e{word-spacing:4.071000px;}
.ws14{word-spacing:4.095000px;}
.ws57{word-spacing:4.140000px;}
.wsa2{word-spacing:4.209000px;}
.ws28{word-spacing:4.278000px;}
.ws1c{word-spacing:4.332000px;}
.ws2e{word-spacing:4.347000px;}
.wsba{word-spacing:4.410000px;}
.ws6a{word-spacing:4.416000px;}
.ws10{word-spacing:4.473000px;}
.ws66{word-spacing:4.485000px;}
.wsd2{word-spacing:4.536000px;}
.ws49{word-spacing:4.554000px;}
.ws84{word-spacing:4.623000px;}
.ws16{word-spacing:4.662000px;}
.ws39{word-spacing:4.692000px;}
.wscb{word-spacing:4.725000px;}
.ws24{word-spacing:4.761000px;}
.wsd5{word-spacing:4.788000px;}
.ws2f{word-spacing:4.830000px;}
.wsaa{word-spacing:4.899000px;}
.ws6d{word-spacing:4.968000px;}
.wsc3{word-spacing:4.977000px;}
.wsa0{word-spacing:5.037000px;}
.wsf{word-spacing:5.040000px;}
.ws78{word-spacing:5.106000px;}
.wsc{word-spacing:5.166000px;}
.ws61{word-spacing:5.175000px;}
.wsd0{word-spacing:5.229000px;}
.ws27{word-spacing:5.244000px;}
.ws43{word-spacing:5.313000px;}
.ws4d{word-spacing:5.382000px;}
.ws77{word-spacing:5.451000px;}
.wsd{word-spacing:5.544000px;}
.ws59{word-spacing:5.589000px;}
.ws13{word-spacing:5.607000px;}
.ws54{word-spacing:5.658000px;}
.wsc6{word-spacing:5.670000px;}
.ws31{word-spacing:5.727000px;}
.ws71{word-spacing:5.796000px;}
.ws8c{word-spacing:5.865000px;}
.wsa4{word-spacing:5.934000px;}
.wsc0{word-spacing:5.985000px;}
.ws23{word-spacing:6.003000px;}
.ws32{word-spacing:6.072000px;}
.ws79{word-spacing:6.141000px;}
.ws3e{word-spacing:6.279000px;}
.wsa1{word-spacing:6.348000px;}
.wsd1{word-spacing:6.363000px;}
.ws45{word-spacing:6.417000px;}
.ws5d{word-spacing:6.486000px;}
.wsad{word-spacing:6.552000px;}
.ws73{word-spacing:6.555000px;}
.wsae{word-spacing:6.615000px;}
.ws4c{word-spacing:6.624000px;}
.ws7e{word-spacing:6.693000px;}
.ws35{word-spacing:6.762000px;}
.ws75{word-spacing:6.831000px;}
.ws9a{word-spacing:6.900000px;}
.ws64{word-spacing:6.969000px;}
.ws97{word-spacing:7.038000px;}
.ws55{word-spacing:7.107000px;}
.ws21{word-spacing:7.176000px;}
.ws9f{word-spacing:7.314000px;}
.ws76{word-spacing:7.383000px;}
.wse{word-spacing:7.434000px;}
.ws47{word-spacing:7.452000px;}
.wsc1{word-spacing:7.497000px;}
.wsa3{word-spacing:7.521000px;}
.ws81{word-spacing:7.590000px;}
.ws72{word-spacing:7.659000px;}
.ws17{word-spacing:7.686000px;}
.ws7b{word-spacing:7.728000px;}
.ws65{word-spacing:7.797000px;}
.wsb6{word-spacing:7.812000px;}
.ws8f{word-spacing:7.866000px;}
.wsa{word-spacing:7.875000px;}
.ws90{word-spacing:7.935000px;}
.ws42{word-spacing:8.004000px;}
.wsa8{word-spacing:8.073000px;}
.ws51{word-spacing:8.142000px;}
.ws52{word-spacing:8.211000px;}
.ws6f{word-spacing:8.280000px;}
.ws9c{word-spacing:8.349000px;}
.ws94{word-spacing:8.418000px;}
.ws8e{word-spacing:8.487000px;}
.ws30{word-spacing:8.556000px;}
.wsb2{word-spacing:8.568000px;}
.ws36{word-spacing:8.625000px;}
.ws91{word-spacing:8.694000px;}
.ws7f{word-spacing:8.763000px;}
.ws3a{word-spacing:8.901000px;}
.wsa5{word-spacing:9.108000px;}
.ws53{word-spacing:9.177000px;}
.wsbc{word-spacing:9.261000px;}
.wsa9{word-spacing:9.315000px;}
.ws46{word-spacing:9.660000px;}
.ws41{word-spacing:10.005000px;}
.wsca{word-spacing:10.017000px;}
.wsc8{word-spacing:10.206000px;}
.ws7c{word-spacing:10.281000px;}
.ws68{word-spacing:10.695000px;}
.ws83{word-spacing:10.764000px;}
.ws74{word-spacing:11.109000px;}
.wsb3{word-spacing:11.340000px;}
.ws80{word-spacing:11.454000px;}
.wsab{word-spacing:11.799000px;}
.wscc{word-spacing:11.844000px;}
.ws1a{word-spacing:19.209000px;}
._5{margin-left:-33.654600px;}
._7{margin-left:-25.323000px;}
._b{margin-left:-16.777800px;}
._3{margin-left:-8.136300px;}
._4{margin-left:-7.015200px;}
._6{margin-left:-5.175000px;}
._2{margin-left:-3.521700px;}
._0{margin-left:-1.892100px;}
._a{width:1.570200px;}
._1{width:2.587200px;}
._8{width:5.402700px;}
._c{width:7.597800px;}
._d{width:8.757000px;}
._9{width:10.993200px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:40.950000px;}
.fs7{font-size:44.850000px;}
.fs0{font-size:51.000000px;}
.fs2{font-size:52.650000px;}
.fs5{font-size:57.000000px;}
.fs4{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:81.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:94.393950px;}
.y125{bottom:95.294100px;}
.y23d{bottom:99.296400px;}
.y14c{bottom:100.291500px;}
.y1a6{bottom:100.504050px;}
.yae{bottom:103.266450px;}
.y56{bottom:104.217300px;}
.y83{bottom:107.945100px;}
.yd3{bottom:108.264000px;}
.y100{bottom:108.795450px;}
.y2b{bottom:110.143950px;}
.y179{bottom:111.536100px;}
.y124{bottom:115.544100px;}
.y23c{bottom:117.296400px;}
.y14b{bottom:120.541500px;}
.y1a5{bottom:120.754050px;}
.yad{bottom:123.516450px;}
.y55{bottom:124.467300px;}
.y209{bottom:124.646250px;}
.y2a{bottom:125.894100px;}
.y82{bottom:128.195100px;}
.yd2{bottom:128.514000px;}
.yff{bottom:129.045450px;}
.y178{bottom:131.786100px;}
.y23b{bottom:135.296400px;}
.y123{bottom:135.794100px;}
.y14a{bottom:140.791500px;}
.y1a4{bottom:141.004050px;}
.y29{bottom:141.644100px;}
.y208{bottom:142.646250px;}
.yac{bottom:143.766450px;}
.y54{bottom:144.717300px;}
.y81{bottom:148.445100px;}
.yd1{bottom:148.764000px;}
.yfe{bottom:149.295450px;}
.y177{bottom:152.036100px;}
.y23a{bottom:153.296400px;}
.y122{bottom:156.044100px;}
.y28{bottom:157.394100px;}
.y207{bottom:160.646250px;}
.y149{bottom:161.041500px;}
.y1a3{bottom:161.254050px;}
.yab{bottom:164.016450px;}
.y53{bottom:164.967300px;}
.y80{bottom:168.695100px;}
.yd0{bottom:169.014000px;}
.yfd{bottom:169.545450px;}
.y239{bottom:171.296400px;}
.y176{bottom:172.286100px;}
.y27{bottom:173.144100px;}
.y121{bottom:176.294100px;}
.y206{bottom:178.646250px;}
.y148{bottom:181.291500px;}
.y1a2{bottom:181.504050px;}
.yaa{bottom:184.266450px;}
.y52{bottom:185.217300px;}
.y26{bottom:188.894100px;}
.y7f{bottom:188.945100px;}
.ycf{bottom:189.264000px;}
.y238{bottom:189.296400px;}
.yfc{bottom:189.795450px;}
.y175{bottom:192.536100px;}
.y120{bottom:196.544100px;}
.y205{bottom:196.646250px;}
.y1df{bottom:197.767800px;}
.y147{bottom:201.541500px;}
.y1a1{bottom:201.754050px;}
.ya9{bottom:204.516450px;}
.y237{bottom:207.296400px;}
.y7e{bottom:209.195100px;}
.yce{bottom:209.514000px;}
.yfb{bottom:210.045450px;}
.y174{bottom:212.786100px;}
.y51{bottom:213.971250px;}
.y204{bottom:214.646250px;}
.y11f{bottom:216.794100px;}
.y1de{bottom:218.017800px;}
.y146{bottom:221.791500px;}
.y1a0{bottom:222.004050px;}
.ya8{bottom:224.766450px;}
.y236{bottom:225.296400px;}
.y7d{bottom:229.445100px;}
.ycd{bottom:229.764000px;}
.yfa{bottom:230.295450px;}
.y203{bottom:232.646250px;}
.y173{bottom:233.036100px;}
.y50{bottom:234.221250px;}
.y11e{bottom:237.044100px;}
.y1dd{bottom:238.267800px;}
.y145{bottom:242.041500px;}
.y19f{bottom:242.254050px;}
.y235{bottom:243.296400px;}
.ya7{bottom:245.016450px;}
.y7c{bottom:249.695100px;}
.ycc{bottom:250.014000px;}
.yf9{bottom:250.545450px;}
.y202{bottom:250.646250px;}
.y172{bottom:253.286100px;}
.y4f{bottom:254.471250px;}
.y11d{bottom:257.294100px;}
.y1dc{bottom:258.517800px;}
.y25{bottom:260.593500px;}
.y234{bottom:261.296400px;}
.y144{bottom:262.291500px;}
.y19e{bottom:262.504050px;}
.ya6{bottom:265.266450px;}
.y7b{bottom:269.945100px;}
.ycb{bottom:270.263850px;}
.y1cc{bottom:270.264000px;}
.yf8{bottom:270.795450px;}
.y171{bottom:273.535950px;}
.y4e{bottom:274.721250px;}
.y11c{bottom:277.544100px;}
.y24{bottom:278.593500px;}
.y1db{bottom:278.767800px;}
.y233{bottom:279.296400px;}
.y143{bottom:282.541500px;}
.y19d{bottom:282.754050px;}
.y201{bottom:283.528050px;}
.ya5{bottom:285.516450px;}
.y7a{bottom:290.195100px;}
.yca{bottom:290.513850px;}
.y1cb{bottom:290.514000px;}
.yf7{bottom:291.045450px;}
.y170{bottom:293.785950px;}
.y4d{bottom:294.971250px;}
.y23{bottom:296.593500px;}
.y232{bottom:297.296400px;}
.y11b{bottom:297.794100px;}
.y1da{bottom:299.017800px;}
.y142{bottom:302.791500px;}
.y19c{bottom:303.004050px;}
.ya4{bottom:305.766450px;}
.y79{bottom:310.445100px;}
.yc9{bottom:310.763850px;}
.y1ca{bottom:310.764000px;}
.y136{bottom:311.295450px;}
.y16f{bottom:314.035950px;}
.y22{bottom:314.593500px;}
.y4c{bottom:315.221250px;}
.y231{bottom:315.296400px;}
.y11a{bottom:318.044100px;}
.y1d9{bottom:319.267800px;}
.yf6{bottom:319.799400px;}
.y141{bottom:323.041500px;}
.y19b{bottom:323.254050px;}
.ya3{bottom:326.016450px;}
.y78{bottom:330.695100px;}
.yc8{bottom:331.013850px;}
.y1c9{bottom:331.014000px;}
.y135{bottom:331.545450px;}
.y21{bottom:332.593500px;}
.y230{bottom:333.296400px;}
.y16e{bottom:334.285950px;}
.y4b{bottom:335.471250px;}
.y1d8{bottom:339.517800px;}
.yf5{bottom:340.049400px;}
.y200{bottom:342.045750px;}
.y140{bottom:343.291500px;}
.y19a{bottom:343.504050px;}
.ya2{bottom:346.266450px;}
.y119{bottom:346.798050px;}
.y20{bottom:350.593500px;}
.y77{bottom:350.945100px;}
.yc7{bottom:351.263850px;}
.y1c8{bottom:351.264000px;}
.y22f{bottom:351.296400px;}
.y134{bottom:351.795450px;}
.y16d{bottom:354.535950px;}
.y4a{bottom:355.721250px;}
.y1d7{bottom:359.767800px;}
.yf4{bottom:360.299400px;}
.y1ff{bottom:362.295750px;}
.y199{bottom:363.754050px;}
.ya1{bottom:366.516450px;}
.y118{bottom:367.048050px;}
.y1f{bottom:368.593500px;}
.y22e{bottom:369.296400px;}
.y76{bottom:371.195100px;}
.yc6{bottom:371.513850px;}
.y1c7{bottom:371.514000px;}
.y133{bottom:372.045450px;}
.y16c{bottom:374.785950px;}
.y49{bottom:375.971250px;}
.y1d5{bottom:380.017800px;}
.yf3{bottom:380.549400px;}
.y1fe{bottom:382.545750px;}
.y1e{bottom:386.593500px;}
.ya0{bottom:386.766450px;}
.y22d{bottom:387.296400px;}
.y117{bottom:387.298050px;}
.yc5{bottom:391.763850px;}
.y1c6{bottom:391.764000px;}
.y132{bottom:392.295450px;}
.y198{bottom:392.508000px;}
.y16b{bottom:395.035950px;}
.y48{bottom:396.221250px;}
.y75{bottom:399.949050px;}
.y1d4{bottom:400.267800px;}
.yf2{bottom:400.799400px;}
.y1fd{bottom:402.795750px;}
.y1d{bottom:404.593500px;}
.y22c{bottom:405.296400px;}
.y9f{bottom:407.016450px;}
.y116{bottom:407.548050px;}
.yc4{bottom:412.013850px;}
.y1c5{bottom:412.014000px;}
.y131{bottom:412.545450px;}
.y197{bottom:412.758000px;}
.y16a{bottom:415.285950px;}
.y47{bottom:416.471250px;}
.y74{bottom:420.199050px;}
.y1d3{bottom:420.517800px;}
.yf1{bottom:421.049400px;}
.y1c{bottom:422.593500px;}
.y1fc{bottom:423.045750px;}
.y22b{bottom:423.296400px;}
.y9e{bottom:427.266450px;}
.y115{bottom:427.798050px;}
.yc3{bottom:432.263850px;}
.y1c4{bottom:432.264000px;}
.y130{bottom:432.795450px;}
.y196{bottom:433.008000px;}
.y169{bottom:435.535950px;}
.y73{bottom:440.449050px;}
.y1b{bottom:440.593500px;}
.y1d2{bottom:440.767800px;}
.y22a{bottom:441.296400px;}
.yf0{bottom:441.299400px;}
.y1fb{bottom:443.295750px;}
.y46{bottom:445.225200px;}
.y9d{bottom:447.516450px;}
.y114{bottom:448.048050px;}
.yc2{bottom:452.513850px;}
.y1c3{bottom:452.514000px;}
.y12f{bottom:453.045450px;}
.y195{bottom:453.258000px;}
.y1a{bottom:458.593500px;}
.y229{bottom:459.296400px;}
.y72{bottom:460.699050px;}
.y1d1{bottom:461.017800px;}
.yef{bottom:461.549400px;}
.y1fa{bottom:463.545750px;}
.y168{bottom:464.289900px;}
.y45{bottom:465.475200px;}
.y113{bottom:468.298050px;}
.y1c2{bottom:472.764000px;}
.y12e{bottom:473.295450px;}
.y194{bottom:473.508000px;}
.y9c{bottom:476.270400px;}
.y19{bottom:476.593500px;}
.y228{bottom:477.296400px;}
.y71{bottom:480.949050px;}
.yc1{bottom:481.267800px;}
.yee{bottom:481.799400px;}
.y1f9{bottom:483.795750px;}
.y167{bottom:484.539900px;}
.y44{bottom:485.725200px;}
.y112{bottom:488.548050px;}
.y1c1{bottom:493.014000px;}
.y13f{bottom:493.545450px;}
.y193{bottom:493.758000px;}
.y18{bottom:494.593500px;}
.y227{bottom:495.296400px;}
.y9b{bottom:496.520400px;}
.y70{bottom:501.199050px;}
.yc0{bottom:501.517800px;}
.yed{bottom:502.049400px;}
.y1f8{bottom:504.045750px;}
.y166{bottom:504.789900px;}
.y43{bottom:505.975200px;}
.y111{bottom:508.798050px;}
.y17{bottom:512.593500px;}
.y226{bottom:513.296400px;}
.y13e{bottom:513.795450px;}
.y192{bottom:514.008000px;}
.y9a{bottom:516.770400px;}
.y6f{bottom:521.449050px;}
.ybf{bottom:521.767800px;}
.y1c0{bottom:521.767950px;}
.yec{bottom:522.299400px;}
.y1f7{bottom:524.295750px;}
.y165{bottom:525.039900px;}
.y42{bottom:526.225200px;}
.y110{bottom:529.048050px;}
.y225{bottom:531.296400px;}
.y13d{bottom:534.045450px;}
.y191{bottom:534.258000px;}
.y99{bottom:537.020400px;}
.y6e{bottom:541.699050px;}
.ybe{bottom:542.017800px;}
.y1bf{bottom:542.017950px;}
.yeb{bottom:542.549400px;}
.y1f6{bottom:544.545750px;}
.y164{bottom:545.289900px;}
.y41{bottom:546.475200px;}
.y16{bottom:548.593500px;}
.y224{bottom:549.296400px;}
.y13c{bottom:554.295450px;}
.y190{bottom:554.508000px;}
.y98{bottom:557.270400px;}
.y10f{bottom:557.802000px;}
.y6d{bottom:561.949050px;}
.ybd{bottom:562.267800px;}
.y1be{bottom:562.267950px;}
.yea{bottom:562.799400px;}
.y1f5{bottom:564.795750px;}
.y163{bottom:565.539900px;}
.y15{bottom:566.593500px;}
.y40{bottom:566.725200px;}
.y223{bottom:567.296400px;}
.y13b{bottom:574.545450px;}
.y18f{bottom:574.758000px;}
.y97{bottom:577.520400px;}
.y10e{bottom:578.052000px;}
.y6c{bottom:582.199050px;}
.ybc{bottom:582.517800px;}
.y1bd{bottom:582.517950px;}
.ye9{bottom:583.049400px;}
.y14{bottom:584.593500px;}
.y1f4{bottom:585.045750px;}
.y222{bottom:585.296400px;}
.y162{bottom:585.789900px;}
.y3f{bottom:586.975200px;}
.y13a{bottom:594.795450px;}
.y18e{bottom:595.008000px;}
.y96{bottom:597.770400px;}
.y10d{bottom:598.302000px;}
.y6b{bottom:602.449050px;}
.y13{bottom:602.593500px;}
.ybb{bottom:602.767800px;}
.y1bc{bottom:602.767950px;}
.y221{bottom:603.296400px;}
.ye8{bottom:603.299400px;}
.y1f3{bottom:605.295750px;}
.y161{bottom:606.039900px;}
.y3e{bottom:607.225200px;}
.y139{bottom:615.045450px;}
.y18d{bottom:615.258000px;}
.y95{bottom:618.020400px;}
.y10c{bottom:618.552000px;}
.y12{bottom:620.593500px;}
.y220{bottom:621.296400px;}
.y6a{bottom:622.699050px;}
.yba{bottom:623.017800px;}
.y1bb{bottom:623.017950px;}
.ye7{bottom:623.549400px;}
.y1f2{bottom:625.545750px;}
.y160{bottom:626.289900px;}
.y3d{bottom:627.475200px;}
.y138{bottom:635.295450px;}
.y18c{bottom:635.508000px;}
.y94{bottom:638.270400px;}
.y11{bottom:638.593500px;}
.y10b{bottom:638.802000px;}
.y21f{bottom:639.296400px;}
.y69{bottom:642.949050px;}
.yb9{bottom:643.267800px;}
.y1ba{bottom:643.267950px;}
.ye6{bottom:643.799400px;}
.y1f1{bottom:645.795750px;}
.y15f{bottom:646.539900px;}
.y3c{bottom:647.725200px;}
.y137{bottom:655.545450px;}
.y18b{bottom:655.758150px;}
.y10{bottom:656.593500px;}
.y21e{bottom:657.296400px;}
.y93{bottom:658.520400px;}
.y10a{bottom:659.052000px;}
.y68{bottom:663.199050px;}
.yb8{bottom:663.517800px;}
.y1b9{bottom:663.517950px;}
.ye5{bottom:664.049400px;}
.y15e{bottom:666.789900px;}
.y3b{bottom:667.975200px;}
.y1f0{bottom:674.549700px;}
.yf{bottom:674.593500px;}
.y21d{bottom:675.296400px;}
.y18a{bottom:676.008150px;}
.y92{bottom:678.770400px;}
.y109{bottom:679.302000px;}
.y67{bottom:683.449050px;}
.yb7{bottom:683.767800px;}
.y1b8{bottom:683.767950px;}
.ye4{bottom:684.299400px;}
.y15d{bottom:687.039900px;}
.ye{bottom:692.593500px;}
.y21c{bottom:693.296400px;}
.y1ef{bottom:694.799700px;}
.y91{bottom:699.020400px;}
.y108{bottom:699.552000px;}
.y66{bottom:703.699050px;}
.yb6{bottom:704.017800px;}
.y1b7{bottom:704.017950px;}
.ye3{bottom:704.549400px;}
.y189{bottom:704.761950px;}
.y3a{bottom:705.233100px;}
.y15c{bottom:707.289900px;}
.yd{bottom:710.593500px;}
.y21b{bottom:711.296400px;}
.y1ee{bottom:715.049700px;}
.y90{bottom:719.270400px;}
.y107{bottom:719.802000px;}
.y39{bottom:722.483100px;}
.y65{bottom:723.949050px;}
.yb5{bottom:724.267800px;}
.y1b6{bottom:724.267950px;}
.ye2{bottom:724.799400px;}
.y188{bottom:725.011950px;}
.y15b{bottom:727.539900px;}
.yc{bottom:728.593500px;}
.y21a{bottom:729.296400px;}
.y1ed{bottom:735.299700px;}
.y8f{bottom:739.520400px;}
.y38{bottom:739.733100px;}
.y106{bottom:740.052000px;}
.y64{bottom:744.199050px;}
.yb4{bottom:744.517800px;}
.y1b5{bottom:744.517950px;}
.ye1{bottom:745.049400px;}
.y187{bottom:745.261950px;}
.yb{bottom:746.593500px;}
.y219{bottom:747.296400px;}
.y15a{bottom:747.789900px;}
.y1ec{bottom:755.549700px;}
.y8e{bottom:759.770400px;}
.y105{bottom:760.302000px;}
.y63{bottom:764.449050px;}
.ya{bottom:764.593500px;}
.yb3{bottom:764.767800px;}
.y1b4{bottom:764.767950px;}
.y218{bottom:765.296400px;}
.ye0{bottom:765.299400px;}
.y186{bottom:765.511950px;}
.y159{bottom:768.039900px;}
.y37{bottom:773.991000px;}
.y1eb{bottom:775.799700px;}
.y8d{bottom:780.020250px;}
.y104{bottom:780.551850px;}
.y9{bottom:782.593500px;}
.y217{bottom:783.296400px;}
.y62{bottom:784.699050px;}
.yb2{bottom:785.017800px;}
.y1b3{bottom:785.017950px;}
.ydf{bottom:785.549400px;}
.y185{bottom:785.761950px;}
.y158{bottom:788.289900px;}
.y36{bottom:794.241000px;}
.y1ea{bottom:796.049700px;}
.y8{bottom:800.593500px;}
.y103{bottom:800.801850px;}
.y216{bottom:801.296400px;}
.y61{bottom:804.949050px;}
.yb1{bottom:805.267800px;}
.y1b2{bottom:805.267950px;}
.y12d{bottom:805.799400px;}
.y184{bottom:806.011950px;}
.yde{bottom:814.303350px;}
.y35{bottom:814.491000px;}
.y1e9{bottom:816.299700px;}
.y157{bottom:817.043850px;}
.y8c{bottom:818.270250px;}
.y215{bottom:819.296400px;}
.y102{bottom:821.051850px;}
.y60{bottom:825.199050px;}
.yb0{bottom:825.517800px;}
.y1b1{bottom:825.517950px;}
.y12c{bottom:826.049400px;}
.y183{bottom:826.261950px;}
.y1d6{bottom:834.021750px;}
.ydd{bottom:834.553350px;}
.y34{bottom:834.741000px;}
.y1e8{bottom:836.549700px;}
.y156{bottom:837.293850px;}
.y214{bottom:837.296400px;}
.y1d0{bottom:845.767800px;}
.y1b0{bottom:845.767950px;}
.y12b{bottom:846.299400px;}
.y182{bottom:846.511950px;}
.y5f{bottom:853.953000px;}
.yaf{bottom:854.271750px;}
.y7{bottom:854.592900px;}
.ydc{bottom:854.803350px;}
.y33{bottom:854.991000px;}
.y213{bottom:855.296400px;}
.y1e7{bottom:856.799700px;}
.y155{bottom:857.543850px;}
.y101{bottom:859.301850px;}
.y1cf{bottom:866.017800px;}
.y1af{bottom:866.017950px;}
.y12a{bottom:866.549400px;}
.y181{bottom:866.761950px;}
.y212{bottom:873.296400px;}
.y5e{bottom:874.203000px;}
.y8b{bottom:874.521750px;}
.ydb{bottom:875.053350px;}
.y32{bottom:875.241000px;}
.y1e6{bottom:877.049700px;}
.y154{bottom:877.793850px;}
.y1ce{bottom:886.267800px;}
.y1ae{bottom:886.267950px;}
.y129{bottom:886.799400px;}
.y180{bottom:887.011950px;}
.y6{bottom:889.525050px;}
.y211{bottom:891.296400px;}
.y5d{bottom:894.453000px;}
.y8a{bottom:894.771750px;}
.yda{bottom:895.303350px;}
.y1e5{bottom:897.299700px;}
.y153{bottom:898.043850px;}
.y1cd{bottom:906.517800px;}
.y1ad{bottom:906.517950px;}
.y128{bottom:907.049400px;}
.y17f{bottom:907.261950px;}
.y210{bottom:909.296400px;}
.y31{bottom:913.491600px;}
.y5c{bottom:914.703000px;}
.y89{bottom:915.021750px;}
.yd9{bottom:915.553350px;}
.y1e4{bottom:917.549700px;}
.y152{bottom:918.293850px;}
.y1ac{bottom:926.767950px;}
.y20f{bottom:927.296400px;}
.y127{bottom:927.299400px;}
.y5{bottom:927.456900px;}
.y17e{bottom:927.511950px;}
.y5b{bottom:934.953000px;}
.y88{bottom:935.271750px;}
.yd8{bottom:935.803350px;}
.y1e3{bottom:937.799700px;}
.y30{bottom:938.241600px;}
.y151{bottom:938.543850px;}
.y20e{bottom:945.296400px;}
.y1ab{bottom:947.017950px;}
.y126{bottom:947.549400px;}
.y17d{bottom:947.761950px;}
.y4{bottom:948.889050px;}
.y5a{bottom:955.203000px;}
.y87{bottom:955.521750px;}
.yd7{bottom:956.053350px;}
.y1e2{bottom:958.049700px;}
.y150{bottom:958.793850px;}
.y20d{bottom:963.296400px;}
.y1aa{bottom:967.267950px;}
.y59{bottom:975.453000px;}
.y86{bottom:975.771750px;}
.yd6{bottom:976.303350px;}
.y17c{bottom:976.515900px;}
.y1e1{bottom:978.299700px;}
.y14e{bottom:979.043850px;}
.y20c{bottom:981.296400px;}
.y14f{bottom:984.736350px;}
.y58{bottom:995.703000px;}
.y85{bottom:996.021750px;}
.y1a9{bottom:996.021900px;}
.yd5{bottom:996.553350px;}
.y17b{bottom:996.765900px;}
.y2f{bottom:998.993100px;}
.y20b{bottom:999.296400px;}
.y57{bottom:1015.953000px;}
.y84{bottom:1016.271750px;}
.y1a8{bottom:1016.271900px;}
.y1e0{bottom:1016.549700px;}
.yd4{bottom:1016.803350px;}
.y2e{bottom:1016.993100px;}
.y17a{bottom:1017.015900px;}
.y14d{bottom:1017.293850px;}
.y20a{bottom:1017.296400px;}
.y3{bottom:1031.437200px;}
.y2{bottom:1046.474700px;}
.y1{bottom:1061.512200px;}
.y2d{bottom:1070.326650px;}
.y1a7{bottom:1070.326800px;}
.h11{height:31.162866px;}
.h3{height:35.436035px;}
.hb{height:39.604980px;}
.h9{height:43.773926px;}
.h2{height:44.874023px;}
.hc{height:45.858398px;}
.h10{height:46.763672px;}
.h6{height:47.942871px;}
.h4{height:54.896484px;}
.h8{height:55.155762px;}
.ha{height:55.432617px;}
.hd{height:56.280762px;}
.h13{height:56.821201px;}
.h12{height:56.821801px;}
.he{height:60.408691px;}
.hf{height:60.711914px;}
.h5{height:63.312495px;}
.h7{height:70.914551px;}
.h1{height:1177.500000px;}
.h0{height:1177.795500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:110.551200px;}
.x2{left:126.515100px;}
.x6{left:127.559100px;}
.xa{left:144.566850px;}
.x15{left:161.127300px;}
.xc{left:178.582650px;}
.xb{left:195.590550px;}
.xe{left:267.374400px;}
.x10{left:279.601050px;}
.x3{left:286.467150px;}
.xf{left:337.690500px;}
.x5{left:341.841450px;}
.x14{left:386.015400px;}
.x13{left:396.731250px;}
.xd{left:408.558900px;}
.x7{left:425.260650px;}
.x4{left:429.327750px;}
.x9{left:437.504400px;}
.x8{left:455.223150px;}
.x11{left:545.011800px;}
.x12{left:553.645950px;}
@media print{
.v3{vertical-align:-18.480000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.480533pt;}
.v1{vertical-align:23.760000pt;}
.ls11{letter-spacing:-1.410667pt;}
.ls14{letter-spacing:-0.368000pt;}
.lsd{letter-spacing:-0.306667pt;}
.ls1c{letter-spacing:-0.280000pt;}
.lsa{letter-spacing:-0.245333pt;}
.ls4{letter-spacing:-0.224000pt;}
.ls12{letter-spacing:-0.184000pt;}
.ls7{letter-spacing:-0.168000pt;}
.lse{letter-spacing:-0.122667pt;}
.ls3{letter-spacing:-0.112000pt;}
.ls9{letter-spacing:-0.061333pt;}
.ls17{letter-spacing:-0.056000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.056000pt;}
.lsb{letter-spacing:0.061333pt;}
.ls1{letter-spacing:0.112000pt;}
.ls8{letter-spacing:0.122667pt;}
.ls1d{letter-spacing:0.182000pt;}
.lsf{letter-spacing:0.184000pt;}
.ls0{letter-spacing:0.224000pt;}
.ls15{letter-spacing:0.245333pt;}
.ls1b{letter-spacing:0.280000pt;}
.ls6{letter-spacing:0.306667pt;}
.ls18{letter-spacing:0.336000pt;}
.lsc{letter-spacing:0.368000pt;}
.ls1a{letter-spacing:0.392000pt;}
.ls10{letter-spacing:0.429333pt;}
.ls13{letter-spacing:0.490667pt;}
.ls19{letter-spacing:0.504000pt;}
.ls16{letter-spacing:1.960000pt;}
.ws2{word-spacing:-18.000000pt;}
.wsa7{word-spacing:-15.456000pt;}
.ws6b{word-spacing:-15.333333pt;}
.wsc5{word-spacing:-14.280000pt;}
.ws3{word-spacing:-14.000000pt;}
.ws5a{word-spacing:-13.922667pt;}
.ws1{word-spacing:-11.700000pt;}
.ws0{word-spacing:-11.333333pt;}
.wsc4{word-spacing:-9.282000pt;}
.wsb0{word-spacing:-9.100000pt;}
.wsac{word-spacing:-1.960000pt;}
.ws98{word-spacing:-0.858667pt;}
.ws69{word-spacing:-0.429333pt;}
.wsd6{word-spacing:-0.280000pt;}
.wsd4{word-spacing:-0.224000pt;}
.ws3d{word-spacing:-0.122667pt;}
.wsbe{word-spacing:-0.112000pt;}
.ws6{word-spacing:0.000000pt;}
.ws9e{word-spacing:0.061333pt;}
.ws93{word-spacing:0.122667pt;}
.wsa6{word-spacing:0.184000pt;}
.wsbb{word-spacing:0.224000pt;}
.ws62{word-spacing:0.245333pt;}
.wsaf{word-spacing:0.280000pt;}
.ws4a{word-spacing:0.306667pt;}
.ws7a{word-spacing:0.368000pt;}
.ws92{word-spacing:0.429333pt;}
.ws1b{word-spacing:0.456000pt;}
.ws63{word-spacing:0.490667pt;}
.wsb1{word-spacing:0.504000pt;}
.ws88{word-spacing:0.552000pt;}
.ws60{word-spacing:0.613333pt;}
.wsce{word-spacing:0.616000pt;}
.ws8{word-spacing:0.672000pt;}
.ws50{word-spacing:0.674667pt;}
.wsd3{word-spacing:0.728000pt;}
.ws33{word-spacing:0.736000pt;}
.ws8a{word-spacing:0.797333pt;}
.ws56{word-spacing:0.920000pt;}
.ws67{word-spacing:0.981333pt;}
.ws3b{word-spacing:1.042667pt;}
.ws86{word-spacing:1.104000pt;}
.ws4e{word-spacing:1.165333pt;}
.ws22{word-spacing:1.226667pt;}
.ws11{word-spacing:1.288000pt;}
.wscd{word-spacing:1.344000pt;}
.ws3f{word-spacing:1.349333pt;}
.wsb8{word-spacing:1.400000pt;}
.ws6c{word-spacing:1.410667pt;}
.ws5c{word-spacing:1.472000pt;}
.ws3c{word-spacing:1.533333pt;}
.ws8b{word-spacing:1.594667pt;}
.ws2c{word-spacing:1.656000pt;}
.ws6e{word-spacing:1.717333pt;}
.wsb{word-spacing:1.736000pt;}
.ws2d{word-spacing:1.778667pt;}
.wsb5{word-spacing:1.792000pt;}
.ws4f{word-spacing:1.840000pt;}
.ws25{word-spacing:1.901333pt;}
.ws20{word-spacing:1.904000pt;}
.wsc7{word-spacing:1.960000pt;}
.ws38{word-spacing:1.962667pt;}
.ws89{word-spacing:2.024000pt;}
.wsbf{word-spacing:2.072000pt;}
.ws29{word-spacing:2.085333pt;}
.wsb4{word-spacing:2.128000pt;}
.ws2b{word-spacing:2.146667pt;}
.ws15{word-spacing:2.184000pt;}
.ws99{word-spacing:2.208000pt;}
.ws4{word-spacing:2.266667pt;}
.ws58{word-spacing:2.269333pt;}
.ws19{word-spacing:2.330667pt;}
.ws95{word-spacing:2.392000pt;}
.ws37{word-spacing:2.453333pt;}
.ws34{word-spacing:2.514667pt;}
.ws18{word-spacing:2.520000pt;}
.ws1d{word-spacing:2.533333pt;}
.ws82{word-spacing:2.576000pt;}
.ws44{word-spacing:2.637333pt;}
.ws87{word-spacing:2.698667pt;}
.wscf{word-spacing:2.744000pt;}
.ws8d{word-spacing:2.760000pt;}
.ws7{word-spacing:2.800000pt;}
.ws7d{word-spacing:2.821333pt;}
.wsb7{word-spacing:2.856000pt;}
.ws70{word-spacing:2.882667pt;}
.ws1e{word-spacing:2.888000pt;}
.ws1f{word-spacing:2.933333pt;}
.ws9b{word-spacing:2.944000pt;}
.wsbd{word-spacing:2.968000pt;}
.ws85{word-spacing:3.005333pt;}
.ws26{word-spacing:3.066667pt;}
.ws9d{word-spacing:3.128000pt;}
.wsb9{word-spacing:3.136000pt;}
.ws2a{word-spacing:3.189333pt;}
.wsc9{word-spacing:3.192000pt;}
.ws9{word-spacing:3.248000pt;}
.ws40{word-spacing:3.250667pt;}
.ws48{word-spacing:3.312000pt;}
.ws5f{word-spacing:3.373333pt;}
.wsc2{word-spacing:3.416000pt;}
.ws96{word-spacing:3.434667pt;}
.ws12{word-spacing:3.472000pt;}
.ws5b{word-spacing:3.496000pt;}
.ws4b{word-spacing:3.557333pt;}
.ws5{word-spacing:3.600000pt;}
.ws5e{word-spacing:3.618667pt;}
.ws14{word-spacing:3.640000pt;}
.ws57{word-spacing:3.680000pt;}
.wsa2{word-spacing:3.741333pt;}
.ws28{word-spacing:3.802667pt;}
.ws1c{word-spacing:3.850667pt;}
.ws2e{word-spacing:3.864000pt;}
.wsba{word-spacing:3.920000pt;}
.ws6a{word-spacing:3.925333pt;}
.ws10{word-spacing:3.976000pt;}
.ws66{word-spacing:3.986667pt;}
.wsd2{word-spacing:4.032000pt;}
.ws49{word-spacing:4.048000pt;}
.ws84{word-spacing:4.109333pt;}
.ws16{word-spacing:4.144000pt;}
.ws39{word-spacing:4.170667pt;}
.wscb{word-spacing:4.200000pt;}
.ws24{word-spacing:4.232000pt;}
.wsd5{word-spacing:4.256000pt;}
.ws2f{word-spacing:4.293333pt;}
.wsaa{word-spacing:4.354667pt;}
.ws6d{word-spacing:4.416000pt;}
.wsc3{word-spacing:4.424000pt;}
.wsa0{word-spacing:4.477333pt;}
.wsf{word-spacing:4.480000pt;}
.ws78{word-spacing:4.538667pt;}
.wsc{word-spacing:4.592000pt;}
.ws61{word-spacing:4.600000pt;}
.wsd0{word-spacing:4.648000pt;}
.ws27{word-spacing:4.661333pt;}
.ws43{word-spacing:4.722667pt;}
.ws4d{word-spacing:4.784000pt;}
.ws77{word-spacing:4.845333pt;}
.wsd{word-spacing:4.928000pt;}
.ws59{word-spacing:4.968000pt;}
.ws13{word-spacing:4.984000pt;}
.ws54{word-spacing:5.029333pt;}
.wsc6{word-spacing:5.040000pt;}
.ws31{word-spacing:5.090667pt;}
.ws71{word-spacing:5.152000pt;}
.ws8c{word-spacing:5.213333pt;}
.wsa4{word-spacing:5.274667pt;}
.wsc0{word-spacing:5.320000pt;}
.ws23{word-spacing:5.336000pt;}
.ws32{word-spacing:5.397333pt;}
.ws79{word-spacing:5.458667pt;}
.ws3e{word-spacing:5.581333pt;}
.wsa1{word-spacing:5.642667pt;}
.wsd1{word-spacing:5.656000pt;}
.ws45{word-spacing:5.704000pt;}
.ws5d{word-spacing:5.765333pt;}
.wsad{word-spacing:5.824000pt;}
.ws73{word-spacing:5.826667pt;}
.wsae{word-spacing:5.880000pt;}
.ws4c{word-spacing:5.888000pt;}
.ws7e{word-spacing:5.949333pt;}
.ws35{word-spacing:6.010667pt;}
.ws75{word-spacing:6.072000pt;}
.ws9a{word-spacing:6.133333pt;}
.ws64{word-spacing:6.194667pt;}
.ws97{word-spacing:6.256000pt;}
.ws55{word-spacing:6.317333pt;}
.ws21{word-spacing:6.378667pt;}
.ws9f{word-spacing:6.501333pt;}
.ws76{word-spacing:6.562667pt;}
.wse{word-spacing:6.608000pt;}
.ws47{word-spacing:6.624000pt;}
.wsc1{word-spacing:6.664000pt;}
.wsa3{word-spacing:6.685333pt;}
.ws81{word-spacing:6.746667pt;}
.ws72{word-spacing:6.808000pt;}
.ws17{word-spacing:6.832000pt;}
.ws7b{word-spacing:6.869333pt;}
.ws65{word-spacing:6.930667pt;}
.wsb6{word-spacing:6.944000pt;}
.ws8f{word-spacing:6.992000pt;}
.wsa{word-spacing:7.000000pt;}
.ws90{word-spacing:7.053333pt;}
.ws42{word-spacing:7.114667pt;}
.wsa8{word-spacing:7.176000pt;}
.ws51{word-spacing:7.237333pt;}
.ws52{word-spacing:7.298667pt;}
.ws6f{word-spacing:7.360000pt;}
.ws9c{word-spacing:7.421333pt;}
.ws94{word-spacing:7.482667pt;}
.ws8e{word-spacing:7.544000pt;}
.ws30{word-spacing:7.605333pt;}
.wsb2{word-spacing:7.616000pt;}
.ws36{word-spacing:7.666667pt;}
.ws91{word-spacing:7.728000pt;}
.ws7f{word-spacing:7.789333pt;}
.ws3a{word-spacing:7.912000pt;}
.wsa5{word-spacing:8.096000pt;}
.ws53{word-spacing:8.157333pt;}
.wsbc{word-spacing:8.232000pt;}
.wsa9{word-spacing:8.280000pt;}
.ws46{word-spacing:8.586667pt;}
.ws41{word-spacing:8.893333pt;}
.wsca{word-spacing:8.904000pt;}
.wsc8{word-spacing:9.072000pt;}
.ws7c{word-spacing:9.138667pt;}
.ws68{word-spacing:9.506667pt;}
.ws83{word-spacing:9.568000pt;}
.ws74{word-spacing:9.874667pt;}
.wsb3{word-spacing:10.080000pt;}
.ws80{word-spacing:10.181333pt;}
.wsab{word-spacing:10.488000pt;}
.wscc{word-spacing:10.528000pt;}
.ws1a{word-spacing:17.074667pt;}
._5{margin-left:-29.915200pt;}
._7{margin-left:-22.509333pt;}
._b{margin-left:-14.913600pt;}
._3{margin-left:-7.232267pt;}
._4{margin-left:-6.235733pt;}
._6{margin-left:-4.600000pt;}
._2{margin-left:-3.130400pt;}
._0{margin-left:-1.681867pt;}
._a{width:1.395733pt;}
._1{width:2.299733pt;}
._8{width:4.802400pt;}
._c{width:6.753600pt;}
._d{width:7.784000pt;}
._9{width:9.771733pt;}
.fs8{font-size:36.400000pt;}
.fs7{font-size:39.866667pt;}
.fs0{font-size:45.333333pt;}
.fs2{font-size:46.800000pt;}
.fs5{font-size:50.666667pt;}
.fs4{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:72.000000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:83.905733pt;}
.y125{bottom:84.705867pt;}
.y23d{bottom:88.263467pt;}
.y14c{bottom:89.148000pt;}
.y1a6{bottom:89.336933pt;}
.yae{bottom:91.792400pt;}
.y56{bottom:92.637600pt;}
.y83{bottom:95.951200pt;}
.yd3{bottom:96.234667pt;}
.y100{bottom:96.707067pt;}
.y2b{bottom:97.905733pt;}
.y179{bottom:99.143200pt;}
.y124{bottom:102.705867pt;}
.y23c{bottom:104.263467pt;}
.y14b{bottom:107.148000pt;}
.y1a5{bottom:107.336933pt;}
.yad{bottom:109.792400pt;}
.y55{bottom:110.637600pt;}
.y209{bottom:110.796667pt;}
.y2a{bottom:111.905867pt;}
.y82{bottom:113.951200pt;}
.yd2{bottom:114.234667pt;}
.yff{bottom:114.707067pt;}
.y178{bottom:117.143200pt;}
.y23b{bottom:120.263467pt;}
.y123{bottom:120.705867pt;}
.y14a{bottom:125.148000pt;}
.y1a4{bottom:125.336933pt;}
.y29{bottom:125.905867pt;}
.y208{bottom:126.796667pt;}
.yac{bottom:127.792400pt;}
.y54{bottom:128.637600pt;}
.y81{bottom:131.951200pt;}
.yd1{bottom:132.234667pt;}
.yfe{bottom:132.707067pt;}
.y177{bottom:135.143200pt;}
.y23a{bottom:136.263467pt;}
.y122{bottom:138.705867pt;}
.y28{bottom:139.905867pt;}
.y207{bottom:142.796667pt;}
.y149{bottom:143.148000pt;}
.y1a3{bottom:143.336933pt;}
.yab{bottom:145.792400pt;}
.y53{bottom:146.637600pt;}
.y80{bottom:149.951200pt;}
.yd0{bottom:150.234667pt;}
.yfd{bottom:150.707067pt;}
.y239{bottom:152.263467pt;}
.y176{bottom:153.143200pt;}
.y27{bottom:153.905867pt;}
.y121{bottom:156.705867pt;}
.y206{bottom:158.796667pt;}
.y148{bottom:161.148000pt;}
.y1a2{bottom:161.336933pt;}
.yaa{bottom:163.792400pt;}
.y52{bottom:164.637600pt;}
.y26{bottom:167.905867pt;}
.y7f{bottom:167.951200pt;}
.ycf{bottom:168.234667pt;}
.y238{bottom:168.263467pt;}
.yfc{bottom:168.707067pt;}
.y175{bottom:171.143200pt;}
.y120{bottom:174.705867pt;}
.y205{bottom:174.796667pt;}
.y1df{bottom:175.793600pt;}
.y147{bottom:179.148000pt;}
.y1a1{bottom:179.336933pt;}
.ya9{bottom:181.792400pt;}
.y237{bottom:184.263467pt;}
.y7e{bottom:185.951200pt;}
.yce{bottom:186.234667pt;}
.yfb{bottom:186.707067pt;}
.y174{bottom:189.143200pt;}
.y51{bottom:190.196667pt;}
.y204{bottom:190.796667pt;}
.y11f{bottom:192.705867pt;}
.y1de{bottom:193.793600pt;}
.y146{bottom:197.148000pt;}
.y1a0{bottom:197.336933pt;}
.ya8{bottom:199.792400pt;}
.y236{bottom:200.263467pt;}
.y7d{bottom:203.951200pt;}
.ycd{bottom:204.234667pt;}
.yfa{bottom:204.707067pt;}
.y203{bottom:206.796667pt;}
.y173{bottom:207.143200pt;}
.y50{bottom:208.196667pt;}
.y11e{bottom:210.705867pt;}
.y1dd{bottom:211.793600pt;}
.y145{bottom:215.148000pt;}
.y19f{bottom:215.336933pt;}
.y235{bottom:216.263467pt;}
.ya7{bottom:217.792400pt;}
.y7c{bottom:221.951200pt;}
.ycc{bottom:222.234667pt;}
.yf9{bottom:222.707067pt;}
.y202{bottom:222.796667pt;}
.y172{bottom:225.143200pt;}
.y4f{bottom:226.196667pt;}
.y11d{bottom:228.705867pt;}
.y1dc{bottom:229.793600pt;}
.y25{bottom:231.638667pt;}
.y234{bottom:232.263467pt;}
.y144{bottom:233.148000pt;}
.y19e{bottom:233.336933pt;}
.ya6{bottom:235.792400pt;}
.y7b{bottom:239.951200pt;}
.ycb{bottom:240.234533pt;}
.y1cc{bottom:240.234667pt;}
.yf8{bottom:240.707067pt;}
.y171{bottom:243.143067pt;}
.y4e{bottom:244.196667pt;}
.y11c{bottom:246.705867pt;}
.y24{bottom:247.638667pt;}
.y1db{bottom:247.793600pt;}
.y233{bottom:248.263467pt;}
.y143{bottom:251.148000pt;}
.y19d{bottom:251.336933pt;}
.y201{bottom:252.024933pt;}
.ya5{bottom:253.792400pt;}
.y7a{bottom:257.951200pt;}
.yca{bottom:258.234533pt;}
.y1cb{bottom:258.234667pt;}
.yf7{bottom:258.707067pt;}
.y170{bottom:261.143067pt;}
.y4d{bottom:262.196667pt;}
.y23{bottom:263.638667pt;}
.y232{bottom:264.263467pt;}
.y11b{bottom:264.705867pt;}
.y1da{bottom:265.793600pt;}
.y142{bottom:269.148000pt;}
.y19c{bottom:269.336933pt;}
.ya4{bottom:271.792400pt;}
.y79{bottom:275.951200pt;}
.yc9{bottom:276.234533pt;}
.y1ca{bottom:276.234667pt;}
.y136{bottom:276.707067pt;}
.y16f{bottom:279.143067pt;}
.y22{bottom:279.638667pt;}
.y4c{bottom:280.196667pt;}
.y231{bottom:280.263467pt;}
.y11a{bottom:282.705867pt;}
.y1d9{bottom:283.793600pt;}
.yf6{bottom:284.266133pt;}
.y141{bottom:287.148000pt;}
.y19b{bottom:287.336933pt;}
.ya3{bottom:289.792400pt;}
.y78{bottom:293.951200pt;}
.yc8{bottom:294.234533pt;}
.y1c9{bottom:294.234667pt;}
.y135{bottom:294.707067pt;}
.y21{bottom:295.638667pt;}
.y230{bottom:296.263467pt;}
.y16e{bottom:297.143067pt;}
.y4b{bottom:298.196667pt;}
.y1d8{bottom:301.793600pt;}
.yf5{bottom:302.266133pt;}
.y200{bottom:304.040667pt;}
.y140{bottom:305.148000pt;}
.y19a{bottom:305.336933pt;}
.ya2{bottom:307.792400pt;}
.y119{bottom:308.264933pt;}
.y20{bottom:311.638667pt;}
.y77{bottom:311.951200pt;}
.yc7{bottom:312.234533pt;}
.y1c8{bottom:312.234667pt;}
.y22f{bottom:312.263467pt;}
.y134{bottom:312.707067pt;}
.y16d{bottom:315.143067pt;}
.y4a{bottom:316.196667pt;}
.y1d7{bottom:319.793600pt;}
.yf4{bottom:320.266133pt;}
.y1ff{bottom:322.040667pt;}
.y199{bottom:323.336933pt;}
.ya1{bottom:325.792400pt;}
.y118{bottom:326.264933pt;}
.y1f{bottom:327.638667pt;}
.y22e{bottom:328.263467pt;}
.y76{bottom:329.951200pt;}
.yc6{bottom:330.234533pt;}
.y1c7{bottom:330.234667pt;}
.y133{bottom:330.707067pt;}
.y16c{bottom:333.143067pt;}
.y49{bottom:334.196667pt;}
.y1d5{bottom:337.793600pt;}
.yf3{bottom:338.266133pt;}
.y1fe{bottom:340.040667pt;}
.y1e{bottom:343.638667pt;}
.ya0{bottom:343.792400pt;}
.y22d{bottom:344.263467pt;}
.y117{bottom:344.264933pt;}
.yc5{bottom:348.234533pt;}
.y1c6{bottom:348.234667pt;}
.y132{bottom:348.707067pt;}
.y198{bottom:348.896000pt;}
.y16b{bottom:351.143067pt;}
.y48{bottom:352.196667pt;}
.y75{bottom:355.510267pt;}
.y1d4{bottom:355.793600pt;}
.yf2{bottom:356.266133pt;}
.y1fd{bottom:358.040667pt;}
.y1d{bottom:359.638667pt;}
.y22c{bottom:360.263467pt;}
.y9f{bottom:361.792400pt;}
.y116{bottom:362.264933pt;}
.yc4{bottom:366.234533pt;}
.y1c5{bottom:366.234667pt;}
.y131{bottom:366.707067pt;}
.y197{bottom:366.896000pt;}
.y16a{bottom:369.143067pt;}
.y47{bottom:370.196667pt;}
.y74{bottom:373.510267pt;}
.y1d3{bottom:373.793600pt;}
.yf1{bottom:374.266133pt;}
.y1c{bottom:375.638667pt;}
.y1fc{bottom:376.040667pt;}
.y22b{bottom:376.263467pt;}
.y9e{bottom:379.792400pt;}
.y115{bottom:380.264933pt;}
.yc3{bottom:384.234533pt;}
.y1c4{bottom:384.234667pt;}
.y130{bottom:384.707067pt;}
.y196{bottom:384.896000pt;}
.y169{bottom:387.143067pt;}
.y73{bottom:391.510267pt;}
.y1b{bottom:391.638667pt;}
.y1d2{bottom:391.793600pt;}
.y22a{bottom:392.263467pt;}
.yf0{bottom:392.266133pt;}
.y1fb{bottom:394.040667pt;}
.y46{bottom:395.755733pt;}
.y9d{bottom:397.792400pt;}
.y114{bottom:398.264933pt;}
.yc2{bottom:402.234533pt;}
.y1c3{bottom:402.234667pt;}
.y12f{bottom:402.707067pt;}
.y195{bottom:402.896000pt;}
.y1a{bottom:407.638667pt;}
.y229{bottom:408.263467pt;}
.y72{bottom:409.510267pt;}
.y1d1{bottom:409.793600pt;}
.yef{bottom:410.266133pt;}
.y1fa{bottom:412.040667pt;}
.y168{bottom:412.702133pt;}
.y45{bottom:413.755733pt;}
.y113{bottom:416.264933pt;}
.y1c2{bottom:420.234667pt;}
.y12e{bottom:420.707067pt;}
.y194{bottom:420.896000pt;}
.y9c{bottom:423.351467pt;}
.y19{bottom:423.638667pt;}
.y228{bottom:424.263467pt;}
.y71{bottom:427.510267pt;}
.yc1{bottom:427.793600pt;}
.yee{bottom:428.266133pt;}
.y1f9{bottom:430.040667pt;}
.y167{bottom:430.702133pt;}
.y44{bottom:431.755733pt;}
.y112{bottom:434.264933pt;}
.y1c1{bottom:438.234667pt;}
.y13f{bottom:438.707067pt;}
.y193{bottom:438.896000pt;}
.y18{bottom:439.638667pt;}
.y227{bottom:440.263467pt;}
.y9b{bottom:441.351467pt;}
.y70{bottom:445.510267pt;}
.yc0{bottom:445.793600pt;}
.yed{bottom:446.266133pt;}
.y1f8{bottom:448.040667pt;}
.y166{bottom:448.702133pt;}
.y43{bottom:449.755733pt;}
.y111{bottom:452.264933pt;}
.y17{bottom:455.638667pt;}
.y226{bottom:456.263467pt;}
.y13e{bottom:456.707067pt;}
.y192{bottom:456.896000pt;}
.y9a{bottom:459.351467pt;}
.y6f{bottom:463.510267pt;}
.ybf{bottom:463.793600pt;}
.y1c0{bottom:463.793733pt;}
.yec{bottom:464.266133pt;}
.y1f7{bottom:466.040667pt;}
.y165{bottom:466.702133pt;}
.y42{bottom:467.755733pt;}
.y110{bottom:470.264933pt;}
.y225{bottom:472.263467pt;}
.y13d{bottom:474.707067pt;}
.y191{bottom:474.896000pt;}
.y99{bottom:477.351467pt;}
.y6e{bottom:481.510267pt;}
.ybe{bottom:481.793600pt;}
.y1bf{bottom:481.793733pt;}
.yeb{bottom:482.266133pt;}
.y1f6{bottom:484.040667pt;}
.y164{bottom:484.702133pt;}
.y41{bottom:485.755733pt;}
.y16{bottom:487.638667pt;}
.y224{bottom:488.263467pt;}
.y13c{bottom:492.707067pt;}
.y190{bottom:492.896000pt;}
.y98{bottom:495.351467pt;}
.y10f{bottom:495.824000pt;}
.y6d{bottom:499.510267pt;}
.ybd{bottom:499.793600pt;}
.y1be{bottom:499.793733pt;}
.yea{bottom:500.266133pt;}
.y1f5{bottom:502.040667pt;}
.y163{bottom:502.702133pt;}
.y15{bottom:503.638667pt;}
.y40{bottom:503.755733pt;}
.y223{bottom:504.263467pt;}
.y13b{bottom:510.707067pt;}
.y18f{bottom:510.896000pt;}
.y97{bottom:513.351467pt;}
.y10e{bottom:513.824000pt;}
.y6c{bottom:517.510267pt;}
.ybc{bottom:517.793600pt;}
.y1bd{bottom:517.793733pt;}
.ye9{bottom:518.266133pt;}
.y14{bottom:519.638667pt;}
.y1f4{bottom:520.040667pt;}
.y222{bottom:520.263467pt;}
.y162{bottom:520.702133pt;}
.y3f{bottom:521.755733pt;}
.y13a{bottom:528.707067pt;}
.y18e{bottom:528.896000pt;}
.y96{bottom:531.351467pt;}
.y10d{bottom:531.824000pt;}
.y6b{bottom:535.510267pt;}
.y13{bottom:535.638667pt;}
.ybb{bottom:535.793600pt;}
.y1bc{bottom:535.793733pt;}
.y221{bottom:536.263467pt;}
.ye8{bottom:536.266133pt;}
.y1f3{bottom:538.040667pt;}
.y161{bottom:538.702133pt;}
.y3e{bottom:539.755733pt;}
.y139{bottom:546.707067pt;}
.y18d{bottom:546.896000pt;}
.y95{bottom:549.351467pt;}
.y10c{bottom:549.824000pt;}
.y12{bottom:551.638667pt;}
.y220{bottom:552.263467pt;}
.y6a{bottom:553.510267pt;}
.yba{bottom:553.793600pt;}
.y1bb{bottom:553.793733pt;}
.ye7{bottom:554.266133pt;}
.y1f2{bottom:556.040667pt;}
.y160{bottom:556.702133pt;}
.y3d{bottom:557.755733pt;}
.y138{bottom:564.707067pt;}
.y18c{bottom:564.896000pt;}
.y94{bottom:567.351467pt;}
.y11{bottom:567.638667pt;}
.y10b{bottom:567.824000pt;}
.y21f{bottom:568.263467pt;}
.y69{bottom:571.510267pt;}
.yb9{bottom:571.793600pt;}
.y1ba{bottom:571.793733pt;}
.ye6{bottom:572.266133pt;}
.y1f1{bottom:574.040667pt;}
.y15f{bottom:574.702133pt;}
.y3c{bottom:575.755733pt;}
.y137{bottom:582.707067pt;}
.y18b{bottom:582.896133pt;}
.y10{bottom:583.638667pt;}
.y21e{bottom:584.263467pt;}
.y93{bottom:585.351467pt;}
.y10a{bottom:585.824000pt;}
.y68{bottom:589.510267pt;}
.yb8{bottom:589.793600pt;}
.y1b9{bottom:589.793733pt;}
.ye5{bottom:590.266133pt;}
.y15e{bottom:592.702133pt;}
.y3b{bottom:593.755733pt;}
.y1f0{bottom:599.599733pt;}
.yf{bottom:599.638667pt;}
.y21d{bottom:600.263467pt;}
.y18a{bottom:600.896133pt;}
.y92{bottom:603.351467pt;}
.y109{bottom:603.824000pt;}
.y67{bottom:607.510267pt;}
.yb7{bottom:607.793600pt;}
.y1b8{bottom:607.793733pt;}
.ye4{bottom:608.266133pt;}
.y15d{bottom:610.702133pt;}
.ye{bottom:615.638667pt;}
.y21c{bottom:616.263467pt;}
.y1ef{bottom:617.599733pt;}
.y91{bottom:621.351467pt;}
.y108{bottom:621.824000pt;}
.y66{bottom:625.510267pt;}
.yb6{bottom:625.793600pt;}
.y1b7{bottom:625.793733pt;}
.ye3{bottom:626.266133pt;}
.y189{bottom:626.455067pt;}
.y3a{bottom:626.873867pt;}
.y15c{bottom:628.702133pt;}
.yd{bottom:631.638667pt;}
.y21b{bottom:632.263467pt;}
.y1ee{bottom:635.599733pt;}
.y90{bottom:639.351467pt;}
.y107{bottom:639.824000pt;}
.y39{bottom:642.207200pt;}
.y65{bottom:643.510267pt;}
.yb5{bottom:643.793600pt;}
.y1b6{bottom:643.793733pt;}
.ye2{bottom:644.266133pt;}
.y188{bottom:644.455067pt;}
.y15b{bottom:646.702133pt;}
.yc{bottom:647.638667pt;}
.y21a{bottom:648.263467pt;}
.y1ed{bottom:653.599733pt;}
.y8f{bottom:657.351467pt;}
.y38{bottom:657.540533pt;}
.y106{bottom:657.824000pt;}
.y64{bottom:661.510267pt;}
.yb4{bottom:661.793600pt;}
.y1b5{bottom:661.793733pt;}
.ye1{bottom:662.266133pt;}
.y187{bottom:662.455067pt;}
.yb{bottom:663.638667pt;}
.y219{bottom:664.263467pt;}
.y15a{bottom:664.702133pt;}
.y1ec{bottom:671.599733pt;}
.y8e{bottom:675.351467pt;}
.y105{bottom:675.824000pt;}
.y63{bottom:679.510267pt;}
.ya{bottom:679.638667pt;}
.yb3{bottom:679.793600pt;}
.y1b4{bottom:679.793733pt;}
.y218{bottom:680.263467pt;}
.ye0{bottom:680.266133pt;}
.y186{bottom:680.455067pt;}
.y159{bottom:682.702133pt;}
.y37{bottom:687.992000pt;}
.y1eb{bottom:689.599733pt;}
.y8d{bottom:693.351333pt;}
.y104{bottom:693.823867pt;}
.y9{bottom:695.638667pt;}
.y217{bottom:696.263467pt;}
.y62{bottom:697.510267pt;}
.yb2{bottom:697.793600pt;}
.y1b3{bottom:697.793733pt;}
.ydf{bottom:698.266133pt;}
.y185{bottom:698.455067pt;}
.y158{bottom:700.702133pt;}
.y36{bottom:705.992000pt;}
.y1ea{bottom:707.599733pt;}
.y8{bottom:711.638667pt;}
.y103{bottom:711.823867pt;}
.y216{bottom:712.263467pt;}
.y61{bottom:715.510267pt;}
.yb1{bottom:715.793600pt;}
.y1b2{bottom:715.793733pt;}
.y12d{bottom:716.266133pt;}
.y184{bottom:716.455067pt;}
.yde{bottom:723.825200pt;}
.y35{bottom:723.992000pt;}
.y1e9{bottom:725.599733pt;}
.y157{bottom:726.261200pt;}
.y8c{bottom:727.351333pt;}
.y215{bottom:728.263467pt;}
.y102{bottom:729.823867pt;}
.y60{bottom:733.510267pt;}
.yb0{bottom:733.793600pt;}
.y1b1{bottom:733.793733pt;}
.y12c{bottom:734.266133pt;}
.y183{bottom:734.455067pt;}
.y1d6{bottom:741.352667pt;}
.ydd{bottom:741.825200pt;}
.y34{bottom:741.992000pt;}
.y1e8{bottom:743.599733pt;}
.y156{bottom:744.261200pt;}
.y214{bottom:744.263467pt;}
.y1d0{bottom:751.793600pt;}
.y1b0{bottom:751.793733pt;}
.y12b{bottom:752.266133pt;}
.y182{bottom:752.455067pt;}
.y5f{bottom:759.069333pt;}
.yaf{bottom:759.352667pt;}
.y7{bottom:759.638133pt;}
.ydc{bottom:759.825200pt;}
.y33{bottom:759.992000pt;}
.y213{bottom:760.263467pt;}
.y1e7{bottom:761.599733pt;}
.y155{bottom:762.261200pt;}
.y101{bottom:763.823867pt;}
.y1cf{bottom:769.793600pt;}
.y1af{bottom:769.793733pt;}
.y12a{bottom:770.266133pt;}
.y181{bottom:770.455067pt;}
.y212{bottom:776.263467pt;}
.y5e{bottom:777.069333pt;}
.y8b{bottom:777.352667pt;}
.ydb{bottom:777.825200pt;}
.y32{bottom:777.992000pt;}
.y1e6{bottom:779.599733pt;}
.y154{bottom:780.261200pt;}
.y1ce{bottom:787.793600pt;}
.y1ae{bottom:787.793733pt;}
.y129{bottom:788.266133pt;}
.y180{bottom:788.455067pt;}
.y6{bottom:790.688933pt;}
.y211{bottom:792.263467pt;}
.y5d{bottom:795.069333pt;}
.y8a{bottom:795.352667pt;}
.yda{bottom:795.825200pt;}
.y1e5{bottom:797.599733pt;}
.y153{bottom:798.261200pt;}
.y1cd{bottom:805.793600pt;}
.y1ad{bottom:805.793733pt;}
.y128{bottom:806.266133pt;}
.y17f{bottom:806.455067pt;}
.y210{bottom:808.263467pt;}
.y31{bottom:811.992533pt;}
.y5c{bottom:813.069333pt;}
.y89{bottom:813.352667pt;}
.yd9{bottom:813.825200pt;}
.y1e4{bottom:815.599733pt;}
.y152{bottom:816.261200pt;}
.y1ac{bottom:823.793733pt;}
.y20f{bottom:824.263467pt;}
.y127{bottom:824.266133pt;}
.y5{bottom:824.406133pt;}
.y17e{bottom:824.455067pt;}
.y5b{bottom:831.069333pt;}
.y88{bottom:831.352667pt;}
.yd8{bottom:831.825200pt;}
.y1e3{bottom:833.599733pt;}
.y30{bottom:833.992533pt;}
.y151{bottom:834.261200pt;}
.y20e{bottom:840.263467pt;}
.y1ab{bottom:841.793733pt;}
.y126{bottom:842.266133pt;}
.y17d{bottom:842.455067pt;}
.y4{bottom:843.456933pt;}
.y5a{bottom:849.069333pt;}
.y87{bottom:849.352667pt;}
.yd7{bottom:849.825200pt;}
.y1e2{bottom:851.599733pt;}
.y150{bottom:852.261200pt;}
.y20d{bottom:856.263467pt;}
.y1aa{bottom:859.793733pt;}
.y59{bottom:867.069333pt;}
.y86{bottom:867.352667pt;}
.yd6{bottom:867.825200pt;}
.y17c{bottom:868.014133pt;}
.y1e1{bottom:869.599733pt;}
.y14e{bottom:870.261200pt;}
.y20c{bottom:872.263467pt;}
.y14f{bottom:875.321200pt;}
.y58{bottom:885.069333pt;}
.y85{bottom:885.352667pt;}
.y1a9{bottom:885.352800pt;}
.yd5{bottom:885.825200pt;}
.y17b{bottom:886.014133pt;}
.y2f{bottom:887.993867pt;}
.y20b{bottom:888.263467pt;}
.y57{bottom:903.069333pt;}
.y84{bottom:903.352667pt;}
.y1a8{bottom:903.352800pt;}
.y1e0{bottom:903.599733pt;}
.yd4{bottom:903.825200pt;}
.y2e{bottom:903.993867pt;}
.y17a{bottom:904.014133pt;}
.y14d{bottom:904.261200pt;}
.y20a{bottom:904.263467pt;}
.y3{bottom:916.833067pt;}
.y2{bottom:930.199733pt;}
.y1{bottom:943.566400pt;}
.y2d{bottom:951.401467pt;}
.y1a7{bottom:951.401600pt;}
.h11{height:27.700326pt;}
.h3{height:31.498698pt;}
.hb{height:35.204427pt;}
.h9{height:38.910156pt;}
.h2{height:39.888021pt;}
.hc{height:40.763021pt;}
.h10{height:41.567708pt;}
.h6{height:42.615885pt;}
.h4{height:48.796875pt;}
.h8{height:49.027344pt;}
.ha{height:49.273438pt;}
.hd{height:50.027344pt;}
.h13{height:50.507734pt;}
.h12{height:50.508268pt;}
.he{height:53.696615pt;}
.hf{height:53.966146pt;}
.h5{height:56.277773pt;}
.h7{height:63.035156pt;}
.h1{height:1046.666667pt;}
.h0{height:1046.929333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:98.267733pt;}
.x2{left:112.457867pt;}
.x6{left:113.385867pt;}
.xa{left:128.503867pt;}
.x15{left:143.224267pt;}
.xc{left:158.740133pt;}
.xb{left:173.858267pt;}
.xe{left:237.666133pt;}
.x10{left:248.534267pt;}
.x3{left:254.637467pt;}
.xf{left:300.169333pt;}
.x5{left:303.859067pt;}
.x14{left:343.124800pt;}
.x13{left:352.650000pt;}
.xd{left:363.163467pt;}
.x7{left:378.009467pt;}
.x4{left:381.624667pt;}
.x9{left:388.892800pt;}
.x8{left:404.642800pt;}
.x11{left:484.454933pt;}
.x12{left:492.129733pt;}
}




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