
    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_6127270197c6a937287f0e16.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_d662ebcf2e4b729c1fbf2e85.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024000;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_0f86dabadb68ca105f2fc904.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.918000;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_0bb0929bce42c579e4c720c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.006000;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_fb66fa5961b96d25a5399951.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.184000;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_3f5e9074cb1171b6c3c2dff5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.695000;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;}
.m4{transform:matrix(0.000000,-0.244537,0.244537,0.051979,0,0);-ms-transform:matrix(0.000000,-0.244537,0.244537,0.051979,0,0);-webkit-transform:matrix(0.000000,-0.244537,0.244537,0.051979,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);}
.m2{transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051978,0.244537,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);}
.v2{vertical-align:-9.512400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.335200px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.060000px;}
.lse{letter-spacing:0.061340px;}
.ls14{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.122681px;}
.ls11{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.245362px;}
.ls12{letter-spacing:0.270000px;}
.ls5{letter-spacing:0.300000px;}
.lsb{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.420000px;}
.lsc{letter-spacing:0.429383px;}
.ls15{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.486000px;}
.ls2{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.lsa{letter-spacing:0.613405px;}
.lsf{letter-spacing:22.668600px;}
.ls9{letter-spacing:73.488000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(85,111,144),0 0.015em rgb(85,111,144),0.015em 0 rgb(85,111,144),0 -0.015em  rgb(85,111,144);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(85,111,144);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-98.100000px;}
.ws1{word-spacing:-16.920000px;}
.ws6{word-spacing:-15.028417px;}
.wsa{word-spacing:-14.700000px;}
.ws5{word-spacing:-14.415012px;}
.ws3{word-spacing:-14.100000px;}
.ws9{word-spacing:-11.280000px;}
.ws7{word-spacing:-8.460000px;}
.ws4{word-spacing:-0.036000px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:50.640000px;}
._c{margin-left:-15.000000px;}
._a{margin-left:-13.800000px;}
._d{margin-left:-12.546000px;}
._2{margin-left:-6.300000px;}
._e{margin-left:-4.013519px;}
._3{margin-left:-2.700000px;}
._4{margin-left:-1.440000px;}
._b{width:1.200000px;}
._7{width:2.880000px;}
._1{width:4.032000px;}
._0{width:5.376000px;}
._6{width:6.744000px;}
._12{width:7.872000px;}
._9{width:9.360000px;}
._10{width:10.380000px;}
._8{width:11.400000px;}
._5{width:12.600000px;}
._17{width:13.680000px;}
._19{width:15.360000px;}
._f{width:16.920000px;}
._13{width:18.960000px;}
._18{width:20.160000px;}
._14{width:21.900000px;}
._11{width:25.080000px;}
._16{width:525.491400px;}
._15{width:2027.801400px;}
.fc5{color:rgb(228,172,18);}
.fc4{color:rgb(103,129,172);}
.fc6{color:rgb(57,53,54);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(255,255,255);}
.fc7{color:rgb(85,111,144);}
.fc1{color:rgb(202,210,228);}
.fc0{color:rgb(219,224,237);}
.fsb{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.000000px;}
.fsd{font-size:49.072408px;}
.fs6{font-size:54.000000px;}
.fs9{font-size:55.206381px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:61.340479px;}
.fse{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fsf{font-size:84.000000px;}
.fsa{font-size:96.000000px;}
.fs5{font-size:144.000000px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:336.000000px;}
.fs2{font-size:450.000000px;}
.y0{bottom:0.000000px;}
.y92{bottom:72.296700px;}
.y6b{bottom:79.425750px;}
.y6a{bottom:81.803850px;}
.y15f{bottom:85.108800px;}
.y82{bottom:90.301050px;}
.yaa{bottom:90.301200px;}
.yef{bottom:90.301350px;}
.y140{bottom:90.372450px;}
.yb8{bottom:90.705300px;}
.yc3{bottom:90.705900px;}
.y19e{bottom:91.175550px;}
.y99{bottom:91.252650px;}
.y181{bottom:91.550550px;}
.y119{bottom:92.131350px;}
.y1ca{bottom:97.814100px;}
.y69{bottom:99.803850px;}
.y3e{bottom:102.629850px;}
.y15e{bottom:103.108800px;}
.y81{bottom:109.801050px;}
.ya9{bottom:109.801200px;}
.yee{bottom:109.801350px;}
.y13f{bottom:109.872450px;}
.yb7{bottom:110.205300px;}
.yc2{bottom:110.205900px;}
.y19d{bottom:110.675550px;}
.y98{bottom:110.752650px;}
.y180{bottom:111.050550px;}
.y118{bottom:111.631350px;}
.y1c9{bottom:117.308100px;}
.y68{bottom:117.803850px;}
.y15d{bottom:121.108800px;}
.y80{bottom:129.301050px;}
.ya8{bottom:129.301200px;}
.yed{bottom:129.301350px;}
.y13e{bottom:129.372450px;}
.yb6{bottom:129.705300px;}
.yc1{bottom:129.705900px;}
.y19c{bottom:130.175550px;}
.y97{bottom:130.252650px;}
.y17f{bottom:130.550550px;}
.y117{bottom:131.131350px;}
.y3d{bottom:132.629850px;}
.y67{bottom:135.803850px;}
.y1c8{bottom:136.802100px;}
.y15c{bottom:139.108800px;}
.y7f{bottom:148.801050px;}
.ya7{bottom:148.801200px;}
.yec{bottom:148.801350px;}
.y13d{bottom:148.872450px;}
.yb5{bottom:149.205300px;}
.yc0{bottom:149.205900px;}
.y19b{bottom:149.675550px;}
.y96{bottom:149.752650px;}
.y17e{bottom:150.050550px;}
.y116{bottom:150.631350px;}
.y66{bottom:153.803850px;}
.y1c7{bottom:156.296100px;}
.y15b{bottom:157.108800px;}
.y7e{bottom:168.301050px;}
.ya6{bottom:168.301200px;}
.yeb{bottom:168.301350px;}
.y13c{bottom:168.372450px;}
.yb4{bottom:168.705300px;}
.ybf{bottom:168.705900px;}
.y19a{bottom:169.175550px;}
.y95{bottom:169.252650px;}
.y17d{bottom:169.550550px;}
.y115{bottom:170.131350px;}
.y65{bottom:171.803850px;}
.y15a{bottom:175.108800px;}
.y1c6{bottom:175.790100px;}
.y7d{bottom:187.801050px;}
.ya5{bottom:187.801200px;}
.yea{bottom:187.801350px;}
.y8a{bottom:187.807050px;}
.y13b{bottom:187.872450px;}
.yb3{bottom:188.205300px;}
.ybe{bottom:188.205900px;}
.y199{bottom:188.675550px;}
.y17c{bottom:189.050550px;}
.y114{bottom:189.631350px;}
.y64{bottom:189.803850px;}
.y159{bottom:193.108800px;}
.y1c5{bottom:195.284100px;}
.y30{bottom:207.278250px;}
.y7c{bottom:207.301050px;}
.ya4{bottom:207.301200px;}
.ye9{bottom:207.301350px;}
.y13a{bottom:207.372450px;}
.y1c{bottom:207.578250px;}
.yb2{bottom:207.705300px;}
.ybd{bottom:207.705900px;}
.y63{bottom:207.803850px;}
.y198{bottom:208.175550px;}
.y17b{bottom:208.550550px;}
.y113{bottom:209.131350px;}
.y158{bottom:211.108800px;}
.y1b6{bottom:214.710600px;}
.yab{bottom:217.895700px;}
.y62{bottom:225.803850px;}
.y2f{bottom:226.778250px;}
.y7b{bottom:226.801050px;}
.ya3{bottom:226.801200px;}
.ye8{bottom:226.801350px;}
.y139{bottom:226.872450px;}
.y1b{bottom:227.078250px;}
.yb1{bottom:227.205300px;}
.ybc{bottom:227.205900px;}
.y197{bottom:227.675550px;}
.y17a{bottom:228.050550px;}
.y112{bottom:228.631350px;}
.y157{bottom:229.108800px;}
.y1b5{bottom:234.204600px;}
.y1c4{bottom:234.285600px;}
.y61{bottom:243.803850px;}
.y2e{bottom:246.278250px;}
.y7a{bottom:246.301050px;}
.y89{bottom:246.301200px;}
.ye7{bottom:246.301350px;}
.y138{bottom:246.372450px;}
.y1a{bottom:246.578250px;}
.yb0{bottom:246.705300px;}
.ybb{bottom:246.705900px;}
.y156{bottom:247.108800px;}
.y196{bottom:247.175550px;}
.y179{bottom:247.550550px;}
.y111{bottom:248.131350px;}
.y1b4{bottom:253.698600px;}
.y1c3{bottom:253.779600px;}
.y60{bottom:261.803850px;}
.y155{bottom:265.108800px;}
.y2d{bottom:265.778250px;}
.y79{bottom:265.801050px;}
.y88{bottom:265.801200px;}
.ye6{bottom:265.801350px;}
.y137{bottom:265.872450px;}
.y19{bottom:266.078250px;}
.yaf{bottom:266.205300px;}
.yba{bottom:266.205900px;}
.y195{bottom:266.675550px;}
.y178{bottom:267.050550px;}
.y110{bottom:267.631350px;}
.y1b3{bottom:273.192600px;}
.y1c2{bottom:273.273600px;}
.y5f{bottom:279.803850px;}
.y154{bottom:283.108800px;}
.y2c{bottom:285.278250px;}
.y78{bottom:285.301050px;}
.y87{bottom:285.301200px;}
.ye5{bottom:285.301350px;}
.y136{bottom:285.372450px;}
.y18{bottom:285.578250px;}
.yae{bottom:285.705300px;}
.yb9{bottom:285.705900px;}
.y194{bottom:286.175550px;}
.y177{bottom:286.550550px;}
.y10f{bottom:287.131350px;}
.y93{bottom:291.716700px;}
.y1b2{bottom:292.686600px;}
.y1c1{bottom:292.767600px;}
.y5e{bottom:297.803850px;}
.y153{bottom:301.108800px;}
.y2b{bottom:304.778250px;}
.y77{bottom:304.801050px;}
.y86{bottom:304.801200px;}
.ye4{bottom:304.801350px;}
.y135{bottom:304.872450px;}
.y17{bottom:305.078250px;}
.yad{bottom:305.205300px;}
.yc5{bottom:305.205900px;}
.y193{bottom:305.675550px;}
.y176{bottom:306.050550px;}
.y10e{bottom:306.631350px;}
.y1b1{bottom:312.180600px;}
.y1c0{bottom:312.261600px;}
.y5d{bottom:315.803850px;}
.y152{bottom:319.108800px;}
.y2a{bottom:324.278250px;}
.y31{bottom:324.284250px;}
.y76{bottom:324.301050px;}
.y85{bottom:324.301200px;}
.ye3{bottom:324.301350px;}
.y134{bottom:324.372450px;}
.y16{bottom:324.578250px;}
.yac{bottom:324.705300px;}
.yc4{bottom:324.705900px;}
.y192{bottom:325.175550px;}
.y175{bottom:325.550550px;}
.y10d{bottom:326.131350px;}
.y1bf{bottom:331.755600px;}
.y5c{bottom:333.803850px;}
.y151{bottom:337.108800px;}
.y29{bottom:343.778250px;}
.y75{bottom:343.801050px;}
.y84{bottom:343.801200px;}
.ye2{bottom:343.801350px;}
.y133{bottom:343.872450px;}
.y15{bottom:344.078250px;}
.y191{bottom:344.675550px;}
.y174{bottom:345.050550px;}
.y10c{bottom:345.631350px;}
.y1b0{bottom:351.182100px;}
.y1be{bottom:351.249600px;}
.y28{bottom:363.278250px;}
.y74{bottom:363.301050px;}
.y83{bottom:363.301200px;}
.ye1{bottom:363.301350px;}
.y132{bottom:363.372450px;}
.y14{bottom:363.578250px;}
.y190{bottom:364.175550px;}
.y173{bottom:364.550550px;}
.y10b{bottom:365.131350px;}
.yc6{bottom:367.925400px;}
.y1af{bottom:370.676100px;}
.y1bd{bottom:370.743600px;}
.y27{bottom:382.778250px;}
.y73{bottom:382.801050px;}
.y5a{bottom:382.801200px;}
.ye0{bottom:382.801350px;}
.y131{bottom:382.872450px;}
.y150{bottom:382.977450px;}
.y13{bottom:383.078250px;}
.y18f{bottom:383.675550px;}
.y172{bottom:384.050550px;}
.y10a{bottom:384.631350px;}
.y1ae{bottom:390.170100px;}
.y1bc{bottom:390.237600px;}
.y26{bottom:402.278250px;}
.y72{bottom:402.301050px;}
.y59{bottom:402.301200px;}
.ydf{bottom:402.301350px;}
.y130{bottom:402.372450px;}
.y14f{bottom:402.477450px;}
.y12{bottom:402.578250px;}
.y18e{bottom:403.175550px;}
.y171{bottom:403.550550px;}
.y109{bottom:404.131350px;}
.y1ad{bottom:409.664100px;}
.y1bb{bottom:409.731600px;}
.y94{bottom:415.280850px;}
.y25{bottom:421.778250px;}
.y71{bottom:421.801050px;}
.y58{bottom:421.801200px;}
.yf3{bottom:421.801350px;}
.y12f{bottom:421.872450px;}
.y14e{bottom:421.977450px;}
.y11{bottom:422.078250px;}
.y18d{bottom:422.675550px;}
.y170{bottom:423.050550px;}
.y108{bottom:423.631350px;}
.y1ac{bottom:429.158100px;}
.y1ba{bottom:429.225600px;}
.y24{bottom:441.278250px;}
.y70{bottom:441.301050px;}
.y57{bottom:441.301200px;}
.yf2{bottom:441.301350px;}
.yde{bottom:441.313350px;}
.y12e{bottom:441.372450px;}
.y14d{bottom:441.477450px;}
.y10{bottom:441.578250px;}
.y18c{bottom:442.175550px;}
.y16f{bottom:442.550550px;}
.y107{bottom:443.131350px;}
.y1ab{bottom:448.652100px;}
.y1b9{bottom:448.719600px;}
.y23{bottom:460.778250px;}
.y6f{bottom:460.801050px;}
.y56{bottom:460.801200px;}
.yf1{bottom:460.801350px;}
.ydd{bottom:460.807350px;}
.y12d{bottom:460.872450px;}
.y14c{bottom:460.977450px;}
.yf{bottom:461.078250px;}
.y18b{bottom:461.675550px;}
.y16e{bottom:462.050550px;}
.y106{bottom:462.631350px;}
.y1aa{bottom:468.146100px;}
.y1b8{bottom:468.213600px;}
.y22{bottom:480.278250px;}
.y6e{bottom:480.301050px;}
.y55{bottom:480.301200px;}
.ydc{bottom:480.301350px;}
.y12c{bottom:480.372450px;}
.y14b{bottom:480.477450px;}
.ye{bottom:480.578250px;}
.y18a{bottom:481.175550px;}
.y16d{bottom:481.550550px;}
.y105{bottom:482.131350px;}
.y1a9{bottom:487.640100px;}
.y1b7{bottom:487.707600px;}
.y21{bottom:499.778250px;}
.y6d{bottom:499.801050px;}
.y54{bottom:499.801200px;}
.yf0{bottom:499.801350px;}
.y12b{bottom:499.872450px;}
.y14a{bottom:499.977450px;}
.yd{bottom:500.078250px;}
.y189{bottom:500.675550px;}
.y16c{bottom:501.050550px;}
.y104{bottom:501.631350px;}
.y20{bottom:519.278250px;}
.y6c{bottom:519.301050px;}
.y53{bottom:519.301200px;}
.ydb{bottom:519.301350px;}
.y12a{bottom:519.372450px;}
.y149{bottom:519.477450px;}
.yc{bottom:519.578250px;}
.y188{bottom:520.175550px;}
.y16b{bottom:520.550550px;}
.y103{bottom:521.131350px;}
.y1f{bottom:538.778250px;}
.y52{bottom:538.801200px;}
.yda{bottom:538.801350px;}
.y129{bottom:538.872450px;}
.y148{bottom:538.977450px;}
.yb{bottom:539.078250px;}
.y187{bottom:539.675550px;}
.y16a{bottom:540.050550px;}
.y102{bottom:540.631350px;}
.y1cb{bottom:546.011100px;}
.y1e{bottom:558.278250px;}
.y51{bottom:558.301200px;}
.yd9{bottom:558.301350px;}
.y128{bottom:558.372450px;}
.y147{bottom:558.477450px;}
.y186{bottom:559.175550px;}
.y169{bottom:559.550550px;}
.y101{bottom:560.131350px;}
.ya{bottom:575.528250px;}
.y1d{bottom:577.778250px;}
.y50{bottom:577.801200px;}
.yd8{bottom:577.801350px;}
.y127{bottom:577.872450px;}
.y146{bottom:577.977450px;}
.y185{bottom:578.675550px;}
.y168{bottom:579.050550px;}
.y100{bottom:579.631350px;}
.y4f{bottom:597.301200px;}
.yd7{bottom:597.301350px;}
.y126{bottom:597.372450px;}
.y145{bottom:597.477450px;}
.y184{bottom:598.175550px;}
.y167{bottom:598.550550px;}
.yff{bottom:599.131350px;}
.y4e{bottom:616.801200px;}
.yd6{bottom:616.801350px;}
.y125{bottom:616.872450px;}
.y144{bottom:616.977450px;}
.y183{bottom:617.675550px;}
.yfe{bottom:618.631350px;}
.y166{bottom:636.050550px;}
.y4d{bottom:636.301200px;}
.yd5{bottom:636.301350px;}
.y124{bottom:636.372450px;}
.y143{bottom:636.477450px;}
.y182{bottom:637.175550px;}
.yfd{bottom:638.131350px;}
.y4c{bottom:655.801200px;}
.yd4{bottom:655.801350px;}
.y123{bottom:655.872450px;}
.y142{bottom:655.977450px;}
.yfc{bottom:657.631350px;}
.y4b{bottom:675.301200px;}
.yd3{bottom:675.301350px;}
.y122{bottom:675.372450px;}
.y3c{bottom:675.387750px;}
.y141{bottom:675.477450px;}
.y19f{bottom:675.651000px;}
.yfb{bottom:677.131350px;}
.y4a{bottom:694.801200px;}
.yd2{bottom:694.801350px;}
.y121{bottom:694.872450px;}
.y3b{bottom:694.881750px;}
.yfa{bottom:696.631350px;}
.y49{bottom:714.301200px;}
.yd1{bottom:714.301350px;}
.y120{bottom:714.372450px;}
.y3a{bottom:714.375750px;}
.yf9{bottom:716.131350px;}
.y165{bottom:718.210500px;}
.y48{bottom:733.801200px;}
.yd0{bottom:733.801350px;}
.y39{bottom:733.869750px;}
.y11f{bottom:733.872450px;}
.y163{bottom:734.704800px;}
.y164{bottom:734.710500px;}
.yf8{bottom:735.631350px;}
.y162{bottom:751.204800px;}
.y1a8{bottom:753.300300px;}
.y47{bottom:753.301200px;}
.ycf{bottom:753.301350px;}
.ya2{bottom:753.307650px;}
.y38{bottom:753.363750px;}
.y11e{bottom:753.372450px;}
.yf7{bottom:755.131350px;}
.y1a7{bottom:772.800300px;}
.y46{bottom:772.801200px;}
.yce{bottom:772.801350px;}
.ya1{bottom:772.807650px;}
.y37{bottom:772.857750px;}
.y11d{bottom:772.872450px;}
.yf6{bottom:774.631350px;}
.y1a6{bottom:792.300300px;}
.y91{bottom:792.301050px;}
.y45{bottom:792.301200px;}
.ycd{bottom:792.301350px;}
.ya0{bottom:792.307650px;}
.y36{bottom:792.351750px;}
.y11c{bottom:792.372450px;}
.yf5{bottom:794.131350px;}
.y1a5{bottom:811.800300px;}
.y90{bottom:811.801050px;}
.y44{bottom:811.801200px;}
.ycc{bottom:811.801350px;}
.y9f{bottom:811.807650px;}
.y35{bottom:811.845750px;}
.yf4{bottom:813.631350px;}
.y1a4{bottom:831.300300px;}
.y8f{bottom:831.301050px;}
.y43{bottom:831.301200px;}
.ycb{bottom:831.301350px;}
.y9e{bottom:831.307650px;}
.y34{bottom:831.339750px;}
.y1a3{bottom:850.800300px;}
.y8e{bottom:850.801050px;}
.y42{bottom:850.801200px;}
.yca{bottom:850.801350px;}
.y9d{bottom:850.807650px;}
.y33{bottom:850.833750px;}
.y161{bottom:859.456800px;}
.y11b{bottom:859.461300px;}
.y1a2{bottom:870.300300px;}
.y8d{bottom:870.301050px;}
.y41{bottom:870.301200px;}
.yc9{bottom:870.301350px;}
.y9c{bottom:870.307650px;}
.y32{bottom:870.327750px;}
.y160{bottom:875.956800px;}
.y11a{bottom:875.961300px;}
.y1a1{bottom:889.800300px;}
.y8c{bottom:889.801050px;}
.y40{bottom:889.801200px;}
.yc8{bottom:889.801350px;}
.y9b{bottom:889.807650px;}
.y9{bottom:909.044250px;}
.y1a0{bottom:909.300300px;}
.y8b{bottom:909.301050px;}
.y3f{bottom:909.301200px;}
.yc7{bottom:909.301350px;}
.y9a{bottom:909.307650px;}
.y8{bottom:928.296450px;}
.y7{bottom:958.272450px;}
.y6{bottom:1000.284450px;}
.y5{bottom:1042.296450px;}
.y2{bottom:1082.834700px;}
.y1{bottom:1172.834700px;}
.y4{bottom:1180.550400px;}
.y3{bottom:1194.078600px;}
.y5b{bottom:1194.180300px;}
.h5{height:29.400000px;}
.h8{height:41.310000px;}
.hf{height:45.312000px;}
.h7{height:45.900000px;}
.h10{height:46.324353px;}
.h4{height:46.560000px;}
.hc{height:50.976000px;}
.h11{height:51.216000px;}
.hd{height:52.114824px;}
.h9{height:55.872000px;}
.ha{height:56.640000px;}
.hb{height:57.905412px;}
.h12{height:65.184000px;}
.he{height:73.440000px;}
.h6{height:111.744000px;}
.h2{height:255.360000px;}
.h3{height:342.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:39.213450px;}
.xc{left:71.539350px;}
.x5{left:85.039350px;}
.x8{left:100.039050px;}
.xf{left:106.302750px;}
.x2{left:123.986400px;}
.x3c{left:124.989300px;}
.x38{left:133.914150px;}
.x3e{left:137.529300px;}
.x4{left:152.626350px;}
.x2f{left:162.861300px;}
.x39{left:179.724300px;}
.x51{left:182.706150px;}
.x52{left:184.298550px;}
.x3a{left:185.799150px;}
.x3f{left:188.139900px;}
.x41{left:201.780600px;}
.x2d{left:202.860300px;}
.x30{left:204.054150px;}
.x6{left:210.474750px;}
.x3b{left:215.755200px;}
.x3d{left:231.067950px;}
.x31{left:237.442200px;}
.x42{left:248.614350px;}
.x16{left:253.233750px;}
.x53{left:265.116450px;}
.x2e{left:274.553850px;}
.x17{left:284.373750px;}
.x40{left:304.264200px;}
.x7{left:305.434050px;}
.x9{left:334.969050px;}
.xa{left:349.969050px;}
.xe{left:357.165300px;}
.x34{left:360.348750px;}
.x28{left:373.426200px;}
.x2a{left:374.914200px;}
.x44{left:380.078100px;}
.x29{left:383.436600px;}
.x1{left:393.538050px;}
.x1b{left:397.898550px;}
.x21{left:402.094800px;}
.x23{left:405.974550px;}
.x2b{left:408.172050px;}
.x24{left:410.935050px;}
.x43{left:421.702950px;}
.x32{left:428.508150px;}
.x25{left:435.251100px;}
.xd{left:441.956700px;}
.x47{left:443.319600px;}
.x2c{left:445.717350px;}
.x56{left:465.876150px;}
.x22{left:470.225400px;}
.x55{left:478.388550px;}
.x5b{left:481.932750px;}
.x33{left:486.275550px;}
.x26{left:490.590000px;}
.x48{left:502.865400px;}
.x54{left:523.297350px;}
.x27{left:528.004200px;}
.x46{left:533.340750px;}
.x45{left:554.209200px;}
.xb{left:584.884050px;}
.x10{left:596.607600px;}
.x13{left:599.934150px;}
.x36{left:603.267000px;}
.x35{left:606.456150px;}
.x15{left:609.382950px;}
.x19{left:617.785500px;}
.x50{left:620.573850px;}
.x4b{left:642.759000px;}
.x11{left:644.019600px;}
.x14{left:656.272200px;}
.x4d{left:659.105550px;}
.x57{left:663.231600px;}
.x20{left:673.924200px;}
.x1d{left:676.328400px;}
.x4e{left:682.978950px;}
.x49{left:684.720750px;}
.x12{left:698.514150px;}
.x4a{left:701.850450px;}
.x58{left:706.833450px;}
.x5a{left:712.993350px;}
.x4c{left:714.055800px;}
.x4f{left:722.893050px;}
.x1c{left:737.385300px;}
.x1e{left:740.991600px;}
.x1a{left:766.669500px;}
.x1f{left:769.917300px;}
.x37{left:773.850600px;}
.x59{left:804.153600px;}
.x18{left:810.068550px;}
@media print{
.v2{vertical-align:-8.455467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.075733pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.054525pt;}
.ls14{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.109050pt;}
.ls11{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.218099pt;}
.ls12{letter-spacing:0.240000pt;}
.ls5{letter-spacing:0.266667pt;}
.lsb{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.373333pt;}
.lsc{letter-spacing:0.381674pt;}
.ls15{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.432000pt;}
.ls2{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.lsa{letter-spacing:0.545249pt;}
.lsf{letter-spacing:20.149867pt;}
.ls9{letter-spacing:65.322667pt;}
.ws0{word-spacing:-87.200000pt;}
.ws1{word-spacing:-15.040000pt;}
.ws6{word-spacing:-13.358593pt;}
.wsa{word-spacing:-13.066667pt;}
.ws5{word-spacing:-12.813344pt;}
.ws3{word-spacing:-12.533333pt;}
.ws9{word-spacing:-10.026667pt;}
.ws7{word-spacing:-7.520000pt;}
.ws4{word-spacing:-0.032000pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:45.013333pt;}
._c{margin-left:-13.333333pt;}
._a{margin-left:-12.266667pt;}
._d{margin-left:-11.152000pt;}
._2{margin-left:-5.600000pt;}
._e{margin-left:-3.567573pt;}
._3{margin-left:-2.400000pt;}
._4{margin-left:-1.280000pt;}
._b{width:1.066667pt;}
._7{width:2.560000pt;}
._1{width:3.584000pt;}
._0{width:4.778667pt;}
._6{width:5.994667pt;}
._12{width:6.997333pt;}
._9{width:8.320000pt;}
._10{width:9.226667pt;}
._8{width:10.133333pt;}
._5{width:11.200000pt;}
._17{width:12.160000pt;}
._19{width:13.653333pt;}
._f{width:15.040000pt;}
._13{width:16.853333pt;}
._18{width:17.920000pt;}
._14{width:19.466667pt;}
._11{width:22.293333pt;}
._16{width:467.103467pt;}
._15{width:1802.490133pt;}
.fsb{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.666667pt;}
.fsd{font-size:43.619918pt;}
.fs6{font-size:48.000000pt;}
.fs9{font-size:49.072339pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:54.524870pt;}
.fse{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fsf{font-size:74.666667pt;}
.fsa{font-size:85.333333pt;}
.fs5{font-size:128.000000pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:298.666667pt;}
.fs2{font-size:400.000000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:64.263733pt;}
.y6b{bottom:70.600667pt;}
.y6a{bottom:72.714533pt;}
.y15f{bottom:75.652267pt;}
.y82{bottom:80.267600pt;}
.yaa{bottom:80.267733pt;}
.yef{bottom:80.267867pt;}
.y140{bottom:80.331067pt;}
.yb8{bottom:80.626933pt;}
.yc3{bottom:80.627467pt;}
.y19e{bottom:81.044933pt;}
.y99{bottom:81.113467pt;}
.y181{bottom:81.378267pt;}
.y119{bottom:81.894533pt;}
.y1ca{bottom:86.945867pt;}
.y69{bottom:88.714533pt;}
.y3e{bottom:91.226533pt;}
.y15e{bottom:91.652267pt;}
.y81{bottom:97.600933pt;}
.ya9{bottom:97.601067pt;}
.yee{bottom:97.601200pt;}
.y13f{bottom:97.664400pt;}
.yb7{bottom:97.960267pt;}
.yc2{bottom:97.960800pt;}
.y19d{bottom:98.378267pt;}
.y98{bottom:98.446800pt;}
.y180{bottom:98.711600pt;}
.y118{bottom:99.227867pt;}
.y1c9{bottom:104.273867pt;}
.y68{bottom:104.714533pt;}
.y15d{bottom:107.652267pt;}
.y80{bottom:114.934267pt;}
.ya8{bottom:114.934400pt;}
.yed{bottom:114.934533pt;}
.y13e{bottom:114.997733pt;}
.yb6{bottom:115.293600pt;}
.yc1{bottom:115.294133pt;}
.y19c{bottom:115.711600pt;}
.y97{bottom:115.780133pt;}
.y17f{bottom:116.044933pt;}
.y117{bottom:116.561200pt;}
.y3d{bottom:117.893200pt;}
.y67{bottom:120.714533pt;}
.y1c8{bottom:121.601867pt;}
.y15c{bottom:123.652267pt;}
.y7f{bottom:132.267600pt;}
.ya7{bottom:132.267733pt;}
.yec{bottom:132.267867pt;}
.y13d{bottom:132.331067pt;}
.yb5{bottom:132.626933pt;}
.yc0{bottom:132.627467pt;}
.y19b{bottom:133.044933pt;}
.y96{bottom:133.113467pt;}
.y17e{bottom:133.378267pt;}
.y116{bottom:133.894533pt;}
.y66{bottom:136.714533pt;}
.y1c7{bottom:138.929867pt;}
.y15b{bottom:139.652267pt;}
.y7e{bottom:149.600933pt;}
.ya6{bottom:149.601067pt;}
.yeb{bottom:149.601200pt;}
.y13c{bottom:149.664400pt;}
.yb4{bottom:149.960267pt;}
.ybf{bottom:149.960800pt;}
.y19a{bottom:150.378267pt;}
.y95{bottom:150.446800pt;}
.y17d{bottom:150.711600pt;}
.y115{bottom:151.227867pt;}
.y65{bottom:152.714533pt;}
.y15a{bottom:155.652267pt;}
.y1c6{bottom:156.257867pt;}
.y7d{bottom:166.934267pt;}
.ya5{bottom:166.934400pt;}
.yea{bottom:166.934533pt;}
.y8a{bottom:166.939600pt;}
.y13b{bottom:166.997733pt;}
.yb3{bottom:167.293600pt;}
.ybe{bottom:167.294133pt;}
.y199{bottom:167.711600pt;}
.y17c{bottom:168.044933pt;}
.y114{bottom:168.561200pt;}
.y64{bottom:168.714533pt;}
.y159{bottom:171.652267pt;}
.y1c5{bottom:173.585867pt;}
.y30{bottom:184.247333pt;}
.y7c{bottom:184.267600pt;}
.ya4{bottom:184.267733pt;}
.ye9{bottom:184.267867pt;}
.y13a{bottom:184.331067pt;}
.y1c{bottom:184.514000pt;}
.yb2{bottom:184.626933pt;}
.ybd{bottom:184.627467pt;}
.y63{bottom:184.714533pt;}
.y198{bottom:185.044933pt;}
.y17b{bottom:185.378267pt;}
.y113{bottom:185.894533pt;}
.y158{bottom:187.652267pt;}
.y1b6{bottom:190.853867pt;}
.yab{bottom:193.685067pt;}
.y62{bottom:200.714533pt;}
.y2f{bottom:201.580667pt;}
.y7b{bottom:201.600933pt;}
.ya3{bottom:201.601067pt;}
.ye8{bottom:201.601200pt;}
.y139{bottom:201.664400pt;}
.y1b{bottom:201.847333pt;}
.yb1{bottom:201.960267pt;}
.ybc{bottom:201.960800pt;}
.y197{bottom:202.378267pt;}
.y17a{bottom:202.711600pt;}
.y112{bottom:203.227867pt;}
.y157{bottom:203.652267pt;}
.y1b5{bottom:208.181867pt;}
.y1c4{bottom:208.253867pt;}
.y61{bottom:216.714533pt;}
.y2e{bottom:218.914000pt;}
.y7a{bottom:218.934267pt;}
.y89{bottom:218.934400pt;}
.ye7{bottom:218.934533pt;}
.y138{bottom:218.997733pt;}
.y1a{bottom:219.180667pt;}
.yb0{bottom:219.293600pt;}
.ybb{bottom:219.294133pt;}
.y156{bottom:219.652267pt;}
.y196{bottom:219.711600pt;}
.y179{bottom:220.044933pt;}
.y111{bottom:220.561200pt;}
.y1b4{bottom:225.509867pt;}
.y1c3{bottom:225.581867pt;}
.y60{bottom:232.714533pt;}
.y155{bottom:235.652267pt;}
.y2d{bottom:236.247333pt;}
.y79{bottom:236.267600pt;}
.y88{bottom:236.267733pt;}
.ye6{bottom:236.267867pt;}
.y137{bottom:236.331067pt;}
.y19{bottom:236.514000pt;}
.yaf{bottom:236.626933pt;}
.yba{bottom:236.627467pt;}
.y195{bottom:237.044933pt;}
.y178{bottom:237.378267pt;}
.y110{bottom:237.894533pt;}
.y1b3{bottom:242.837867pt;}
.y1c2{bottom:242.909867pt;}
.y5f{bottom:248.714533pt;}
.y154{bottom:251.652267pt;}
.y2c{bottom:253.580667pt;}
.y78{bottom:253.600933pt;}
.y87{bottom:253.601067pt;}
.ye5{bottom:253.601200pt;}
.y136{bottom:253.664400pt;}
.y18{bottom:253.847333pt;}
.yae{bottom:253.960267pt;}
.yb9{bottom:253.960800pt;}
.y194{bottom:254.378267pt;}
.y177{bottom:254.711600pt;}
.y10f{bottom:255.227867pt;}
.y93{bottom:259.303733pt;}
.y1b2{bottom:260.165867pt;}
.y1c1{bottom:260.237867pt;}
.y5e{bottom:264.714533pt;}
.y153{bottom:267.652267pt;}
.y2b{bottom:270.914000pt;}
.y77{bottom:270.934267pt;}
.y86{bottom:270.934400pt;}
.ye4{bottom:270.934533pt;}
.y135{bottom:270.997733pt;}
.y17{bottom:271.180667pt;}
.yad{bottom:271.293600pt;}
.yc5{bottom:271.294133pt;}
.y193{bottom:271.711600pt;}
.y176{bottom:272.044933pt;}
.y10e{bottom:272.561200pt;}
.y1b1{bottom:277.493867pt;}
.y1c0{bottom:277.565867pt;}
.y5d{bottom:280.714533pt;}
.y152{bottom:283.652267pt;}
.y2a{bottom:288.247333pt;}
.y31{bottom:288.252667pt;}
.y76{bottom:288.267600pt;}
.y85{bottom:288.267733pt;}
.ye3{bottom:288.267867pt;}
.y134{bottom:288.331067pt;}
.y16{bottom:288.514000pt;}
.yac{bottom:288.626933pt;}
.yc4{bottom:288.627467pt;}
.y192{bottom:289.044933pt;}
.y175{bottom:289.378267pt;}
.y10d{bottom:289.894533pt;}
.y1bf{bottom:294.893867pt;}
.y5c{bottom:296.714533pt;}
.y151{bottom:299.652267pt;}
.y29{bottom:305.580667pt;}
.y75{bottom:305.600933pt;}
.y84{bottom:305.601067pt;}
.ye2{bottom:305.601200pt;}
.y133{bottom:305.664400pt;}
.y15{bottom:305.847333pt;}
.y191{bottom:306.378267pt;}
.y174{bottom:306.711600pt;}
.y10c{bottom:307.227867pt;}
.y1b0{bottom:312.161867pt;}
.y1be{bottom:312.221867pt;}
.y28{bottom:322.914000pt;}
.y74{bottom:322.934267pt;}
.y83{bottom:322.934400pt;}
.ye1{bottom:322.934533pt;}
.y132{bottom:322.997733pt;}
.y14{bottom:323.180667pt;}
.y190{bottom:323.711600pt;}
.y173{bottom:324.044933pt;}
.y10b{bottom:324.561200pt;}
.yc6{bottom:327.044800pt;}
.y1af{bottom:329.489867pt;}
.y1bd{bottom:329.549867pt;}
.y27{bottom:340.247333pt;}
.y73{bottom:340.267600pt;}
.y5a{bottom:340.267733pt;}
.ye0{bottom:340.267867pt;}
.y131{bottom:340.331067pt;}
.y150{bottom:340.424400pt;}
.y13{bottom:340.514000pt;}
.y18f{bottom:341.044933pt;}
.y172{bottom:341.378267pt;}
.y10a{bottom:341.894533pt;}
.y1ae{bottom:346.817867pt;}
.y1bc{bottom:346.877867pt;}
.y26{bottom:357.580667pt;}
.y72{bottom:357.600933pt;}
.y59{bottom:357.601067pt;}
.ydf{bottom:357.601200pt;}
.y130{bottom:357.664400pt;}
.y14f{bottom:357.757733pt;}
.y12{bottom:357.847333pt;}
.y18e{bottom:358.378267pt;}
.y171{bottom:358.711600pt;}
.y109{bottom:359.227867pt;}
.y1ad{bottom:364.145867pt;}
.y1bb{bottom:364.205867pt;}
.y94{bottom:369.138533pt;}
.y25{bottom:374.914000pt;}
.y71{bottom:374.934267pt;}
.y58{bottom:374.934400pt;}
.yf3{bottom:374.934533pt;}
.y12f{bottom:374.997733pt;}
.y14e{bottom:375.091067pt;}
.y11{bottom:375.180667pt;}
.y18d{bottom:375.711600pt;}
.y170{bottom:376.044933pt;}
.y108{bottom:376.561200pt;}
.y1ac{bottom:381.473867pt;}
.y1ba{bottom:381.533867pt;}
.y24{bottom:392.247333pt;}
.y70{bottom:392.267600pt;}
.y57{bottom:392.267733pt;}
.yf2{bottom:392.267867pt;}
.yde{bottom:392.278533pt;}
.y12e{bottom:392.331067pt;}
.y14d{bottom:392.424400pt;}
.y10{bottom:392.514000pt;}
.y18c{bottom:393.044933pt;}
.y16f{bottom:393.378267pt;}
.y107{bottom:393.894533pt;}
.y1ab{bottom:398.801867pt;}
.y1b9{bottom:398.861867pt;}
.y23{bottom:409.580667pt;}
.y6f{bottom:409.600933pt;}
.y56{bottom:409.601067pt;}
.yf1{bottom:409.601200pt;}
.ydd{bottom:409.606533pt;}
.y12d{bottom:409.664400pt;}
.y14c{bottom:409.757733pt;}
.yf{bottom:409.847333pt;}
.y18b{bottom:410.378267pt;}
.y16e{bottom:410.711600pt;}
.y106{bottom:411.227867pt;}
.y1aa{bottom:416.129867pt;}
.y1b8{bottom:416.189867pt;}
.y22{bottom:426.914000pt;}
.y6e{bottom:426.934267pt;}
.y55{bottom:426.934400pt;}
.ydc{bottom:426.934533pt;}
.y12c{bottom:426.997733pt;}
.y14b{bottom:427.091067pt;}
.ye{bottom:427.180667pt;}
.y18a{bottom:427.711600pt;}
.y16d{bottom:428.044933pt;}
.y105{bottom:428.561200pt;}
.y1a9{bottom:433.457867pt;}
.y1b7{bottom:433.517867pt;}
.y21{bottom:444.247333pt;}
.y6d{bottom:444.267600pt;}
.y54{bottom:444.267733pt;}
.yf0{bottom:444.267867pt;}
.y12b{bottom:444.331067pt;}
.y14a{bottom:444.424400pt;}
.yd{bottom:444.514000pt;}
.y189{bottom:445.044933pt;}
.y16c{bottom:445.378267pt;}
.y104{bottom:445.894533pt;}
.y20{bottom:461.580667pt;}
.y6c{bottom:461.600933pt;}
.y53{bottom:461.601067pt;}
.ydb{bottom:461.601200pt;}
.y12a{bottom:461.664400pt;}
.y149{bottom:461.757733pt;}
.yc{bottom:461.847333pt;}
.y188{bottom:462.378267pt;}
.y16b{bottom:462.711600pt;}
.y103{bottom:463.227867pt;}
.y1f{bottom:478.914000pt;}
.y52{bottom:478.934400pt;}
.yda{bottom:478.934533pt;}
.y129{bottom:478.997733pt;}
.y148{bottom:479.091067pt;}
.yb{bottom:479.180667pt;}
.y187{bottom:479.711600pt;}
.y16a{bottom:480.044933pt;}
.y102{bottom:480.561200pt;}
.y1cb{bottom:485.343200pt;}
.y1e{bottom:496.247333pt;}
.y51{bottom:496.267733pt;}
.yd9{bottom:496.267867pt;}
.y128{bottom:496.331067pt;}
.y147{bottom:496.424400pt;}
.y186{bottom:497.044933pt;}
.y169{bottom:497.378267pt;}
.y101{bottom:497.894533pt;}
.ya{bottom:511.580667pt;}
.y1d{bottom:513.580667pt;}
.y50{bottom:513.601067pt;}
.yd8{bottom:513.601200pt;}
.y127{bottom:513.664400pt;}
.y146{bottom:513.757733pt;}
.y185{bottom:514.378267pt;}
.y168{bottom:514.711600pt;}
.y100{bottom:515.227867pt;}
.y4f{bottom:530.934400pt;}
.yd7{bottom:530.934533pt;}
.y126{bottom:530.997733pt;}
.y145{bottom:531.091067pt;}
.y184{bottom:531.711600pt;}
.y167{bottom:532.044933pt;}
.yff{bottom:532.561200pt;}
.y4e{bottom:548.267733pt;}
.yd6{bottom:548.267867pt;}
.y125{bottom:548.331067pt;}
.y144{bottom:548.424400pt;}
.y183{bottom:549.044933pt;}
.yfe{bottom:549.894533pt;}
.y166{bottom:565.378267pt;}
.y4d{bottom:565.601067pt;}
.yd5{bottom:565.601200pt;}
.y124{bottom:565.664400pt;}
.y143{bottom:565.757733pt;}
.y182{bottom:566.378267pt;}
.yfd{bottom:567.227867pt;}
.y4c{bottom:582.934400pt;}
.yd4{bottom:582.934533pt;}
.y123{bottom:582.997733pt;}
.y142{bottom:583.091067pt;}
.yfc{bottom:584.561200pt;}
.y4b{bottom:600.267733pt;}
.yd3{bottom:600.267867pt;}
.y122{bottom:600.331067pt;}
.y3c{bottom:600.344667pt;}
.y141{bottom:600.424400pt;}
.y19f{bottom:600.578667pt;}
.yfb{bottom:601.894533pt;}
.y4a{bottom:617.601067pt;}
.yd2{bottom:617.601200pt;}
.y121{bottom:617.664400pt;}
.y3b{bottom:617.672667pt;}
.yfa{bottom:619.227867pt;}
.y49{bottom:634.934400pt;}
.yd1{bottom:634.934533pt;}
.y120{bottom:634.997733pt;}
.y3a{bottom:635.000667pt;}
.yf9{bottom:636.561200pt;}
.y165{bottom:638.409333pt;}
.y48{bottom:652.267733pt;}
.yd0{bottom:652.267867pt;}
.y39{bottom:652.328667pt;}
.y11f{bottom:652.331067pt;}
.y163{bottom:653.070933pt;}
.y164{bottom:653.076000pt;}
.yf8{bottom:653.894533pt;}
.y162{bottom:667.737600pt;}
.y1a8{bottom:669.600267pt;}
.y47{bottom:669.601067pt;}
.ycf{bottom:669.601200pt;}
.ya2{bottom:669.606800pt;}
.y38{bottom:669.656667pt;}
.y11e{bottom:669.664400pt;}
.yf7{bottom:671.227867pt;}
.y1a7{bottom:686.933600pt;}
.y46{bottom:686.934400pt;}
.yce{bottom:686.934533pt;}
.ya1{bottom:686.940133pt;}
.y37{bottom:686.984667pt;}
.y11d{bottom:686.997733pt;}
.yf6{bottom:688.561200pt;}
.y1a6{bottom:704.266933pt;}
.y91{bottom:704.267600pt;}
.y45{bottom:704.267733pt;}
.ycd{bottom:704.267867pt;}
.ya0{bottom:704.273467pt;}
.y36{bottom:704.312667pt;}
.y11c{bottom:704.331067pt;}
.yf5{bottom:705.894533pt;}
.y1a5{bottom:721.600267pt;}
.y90{bottom:721.600933pt;}
.y44{bottom:721.601067pt;}
.ycc{bottom:721.601200pt;}
.y9f{bottom:721.606800pt;}
.y35{bottom:721.640667pt;}
.yf4{bottom:723.227867pt;}
.y1a4{bottom:738.933600pt;}
.y8f{bottom:738.934267pt;}
.y43{bottom:738.934400pt;}
.ycb{bottom:738.934533pt;}
.y9e{bottom:738.940133pt;}
.y34{bottom:738.968667pt;}
.y1a3{bottom:756.266933pt;}
.y8e{bottom:756.267600pt;}
.y42{bottom:756.267733pt;}
.yca{bottom:756.267867pt;}
.y9d{bottom:756.273467pt;}
.y33{bottom:756.296667pt;}
.y161{bottom:763.961600pt;}
.y11b{bottom:763.965600pt;}
.y1a2{bottom:773.600267pt;}
.y8d{bottom:773.600933pt;}
.y41{bottom:773.601067pt;}
.yc9{bottom:773.601200pt;}
.y9c{bottom:773.606800pt;}
.y32{bottom:773.624667pt;}
.y160{bottom:778.628267pt;}
.y11a{bottom:778.632267pt;}
.y1a1{bottom:790.933600pt;}
.y8c{bottom:790.934267pt;}
.y40{bottom:790.934400pt;}
.yc8{bottom:790.934533pt;}
.y9b{bottom:790.940133pt;}
.y9{bottom:808.039333pt;}
.y1a0{bottom:808.266933pt;}
.y8b{bottom:808.267600pt;}
.y3f{bottom:808.267733pt;}
.yc7{bottom:808.267867pt;}
.y9a{bottom:808.273467pt;}
.y8{bottom:825.152400pt;}
.y7{bottom:851.797733pt;}
.y6{bottom:889.141733pt;}
.y5{bottom:926.485733pt;}
.y2{bottom:962.519733pt;}
.y1{bottom:1042.519733pt;}
.y4{bottom:1049.378133pt;}
.y3{bottom:1061.403200pt;}
.y5b{bottom:1061.493600pt;}
.h5{height:26.133333pt;}
.h8{height:36.720000pt;}
.hf{height:40.277333pt;}
.h7{height:40.800000pt;}
.h10{height:41.177203pt;}
.h4{height:41.386667pt;}
.hc{height:45.312000pt;}
.h11{height:45.525333pt;}
.hd{height:46.324288pt;}
.h9{height:49.664000pt;}
.ha{height:50.346667pt;}
.hb{height:51.471477pt;}
.h12{height:57.941333pt;}
.he{height:65.280000pt;}
.h6{height:99.328000pt;}
.h2{height:226.986667pt;}
.h3{height:304.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:34.856400pt;}
.xc{left:63.590533pt;}
.x5{left:75.590533pt;}
.x8{left:88.923600pt;}
.xf{left:94.491333pt;}
.x2{left:110.210133pt;}
.x3c{left:111.101600pt;}
.x38{left:119.034800pt;}
.x3e{left:122.248267pt;}
.x4{left:135.667867pt;}
.x2f{left:144.765600pt;}
.x39{left:159.754933pt;}
.x51{left:162.405467pt;}
.x52{left:163.820933pt;}
.x3a{left:165.154800pt;}
.x3f{left:167.235467pt;}
.x41{left:179.360533pt;}
.x2d{left:180.320267pt;}
.x30{left:181.381467pt;}
.x6{left:187.088667pt;}
.x3b{left:191.782400pt;}
.x3d{left:205.393733pt;}
.x31{left:211.059733pt;}
.x42{left:220.990533pt;}
.x16{left:225.096667pt;}
.x53{left:235.659067pt;}
.x2e{left:244.047867pt;}
.x17{left:252.776667pt;}
.x40{left:270.457067pt;}
.x7{left:271.496933pt;}
.x9{left:297.750267pt;}
.xa{left:311.083600pt;}
.xe{left:317.480267pt;}
.x34{left:320.310000pt;}
.x28{left:331.934400pt;}
.x2a{left:333.257067pt;}
.x44{left:337.847200pt;}
.x29{left:340.832533pt;}
.x1{left:349.811600pt;}
.x1b{left:353.687600pt;}
.x21{left:357.417600pt;}
.x23{left:360.866267pt;}
.x2b{left:362.819600pt;}
.x24{left:365.275600pt;}
.x43{left:374.847067pt;}
.x32{left:380.896133pt;}
.x25{left:386.889867pt;}
.xd{left:392.850400pt;}
.x47{left:394.061867pt;}
.x2c{left:396.193200pt;}
.x56{left:414.112133pt;}
.x22{left:417.978133pt;}
.x55{left:425.234267pt;}
.x5b{left:428.384667pt;}
.x33{left:432.244933pt;}
.x26{left:436.080000pt;}
.x48{left:446.991467pt;}
.x54{left:465.153200pt;}
.x27{left:469.337067pt;}
.x46{left:474.080667pt;}
.x45{left:492.630400pt;}
.xb{left:519.896933pt;}
.x10{left:530.317867pt;}
.x13{left:533.274800pt;}
.x36{left:536.237333pt;}
.x35{left:539.072133pt;}
.x15{left:541.673733pt;}
.x19{left:549.142667pt;}
.x50{left:551.621200pt;}
.x4b{left:571.341333pt;}
.x11{left:572.461867pt;}
.x14{left:583.353067pt;}
.x4d{left:585.871600pt;}
.x57{left:589.539200pt;}
.x20{left:599.043733pt;}
.x1d{left:601.180800pt;}
.x4e{left:607.092400pt;}
.x49{left:608.640667pt;}
.x12{left:620.901467pt;}
.x4a{left:623.867067pt;}
.x58{left:628.296400pt;}
.x5a{left:633.771867pt;}
.x4c{left:634.716267pt;}
.x4f{left:642.571600pt;}
.x1c{left:655.453600pt;}
.x1e{left:658.659200pt;}
.x1a{left:681.484000pt;}
.x1f{left:684.370933pt;}
.x37{left:687.867200pt;}
.x59{left:714.803200pt;}
.x18{left:720.060933pt;}
}




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