
    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_22ac8a580defd5bf7759a8d0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_c9086f6d0f8e8646affa0d57.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972168;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_b5958d6737f0eb146da597b3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969238;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_5464f2f08e66bc977c2496aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_f15f05e17267b73f913a9823.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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_5f243c6add8ecb4dc8f551e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0b2d0af8eb9e772921b4c2c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_92e81fdcf850fe61f1e27d80.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3aabaf74f55de365c403cb4b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_144d94d07281815123de1cb5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4e8eac8ffb308656bf6f640e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a1222ada6cdcf2467c981cee.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.925781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.017988px;}
.lsb{letter-spacing:0.018018px;}
.ls8{letter-spacing:0.144004px;}
.lsd{letter-spacing:0.872130px;}
.lsc{letter-spacing:0.923432px;}
.lse{letter-spacing:1.333846px;}
.ls1{letter-spacing:1.458000px;}
.ls5{letter-spacing:1.476000px;}
.ls3{letter-spacing:1.512000px;}
.ls7{letter-spacing:1.728000px;}
.lsf{letter-spacing:1.795562px;}
.ls10{letter-spacing:2.103372px;}
.ls11{letter-spacing:2.544078px;}
.lsa{letter-spacing:6.318000px;}
.ls2{letter-spacing:20.362308px;}
.ls9{letter-spacing:850.318989px;}
.ls4{letter-spacing:850.319000px;}
.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;}
}
.ws14{word-spacing:-51.301758px;}
.ws17{word-spacing:-48.001464px;}
.ws1{word-spacing:-21.129671px;}
.ws2{word-spacing:-18.854533px;}
.ws6{word-spacing:-16.416000px;}
.ws7{word-spacing:-16.254000px;}
.ws5{word-spacing:-14.958000px;}
.ws16{word-spacing:-14.448441px;}
.ws12{word-spacing:-14.210587px;}
.ws11{word-spacing:-13.344407px;}
.ws9{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws15{word-spacing:-0.055679px;}
.ws4{word-spacing:0.000000px;}
.ws10{word-spacing:0.540000px;}
.wsb{word-spacing:100.894507px;}
.wsa{word-spacing:100.930365px;}
.ws8{word-spacing:100.930366px;}
.wsc{word-spacing:100.930381px;}
.wse{word-spacing:100.930910px;}
.wsd{word-spacing:100.966759px;}
.ws13{word-spacing:101.474877px;}
.ws3{word-spacing:300.168000px;}
.wsf{word-spacing:809.997770px;}
._1e{margin-left:-9.290149px;}
._1f{margin-left:-7.999118px;}
._3{margin-left:-5.994000px;}
._17{margin-left:-4.860000px;}
._6{margin-left:-3.318688px;}
._4{margin-left:-2.135826px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._7{width:3.858833px;}
._e{width:4.895715px;}
._9{width:5.940000px;}
._d{width:6.940376px;}
._8{width:8.046079px;}
._a{width:9.882119px;}
._b{width:11.436288px;}
._c{width:13.139917px;}
._10{width:16.188249px;}
._11{width:17.741905px;}
._12{width:18.821457px;}
._18{width:19.919492px;}
._f{width:22.313593px;}
._1a{width:23.551312px;}
._16{width:26.124209px;}
._15{width:27.492165px;}
._19{width:32.934546px;}
._1b{width:44.453316px;}
._5{width:65.678042px;}
._13{width:89.990827px;}
._1d{width:115.685464px;}
._1c{width:153.194807px;}
._14{width:180.194807px;}
.fc3{color:rgb(10,84,44);}
.fc1{color:rgb(27,138,174);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs8{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:55.678710px;}
.fs6{font-size:62.639646px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.yb7{bottom:4.235718px;}
.y1fa{bottom:4.528547px;}
.y1ae{bottom:4.528919px;}
.yb6{bottom:21.034545px;}
.y1ad{bottom:22.482047px;}
.y1f9{bottom:22.487521px;}
.yb5{bottom:37.839230px;}
.yc4{bottom:37.839234px;}
.y1f8{bottom:40.440648px;}
.y1ac{bottom:40.441032px;}
.y1f{bottom:46.734370px;}
.yb4{bottom:54.638063px;}
.y1f7{bottom:58.393775px;}
.y1ab{bottom:58.394150px;}
.y1cb{bottom:58.394155px;}
.y1e{bottom:59.015622px;}
.y1d{bottom:71.302734px;}
.yb3{bottom:71.436891px;}
.y1aa{bottom:76.347278px;}
.y1ca{bottom:76.347282px;}
.y1f6{bottom:76.352764px;}
.ye7{bottom:81.897000px;}
.y58{bottom:85.933578px;}
.y113{bottom:86.665919px;}
.yb2{bottom:88.235714px;}
.yc3{bottom:88.235718px;}
.y17f{bottom:91.078500px;}
.y154{bottom:92.378880px;}
.yc5{bottom:92.661000px;}
.y13f{bottom:93.896451px;}
.y12a{bottom:94.083969px;}
.y1f5{bottom:94.305891px;}
.y1a9{bottom:94.306266px;}
.y85{bottom:94.963500px;}
.y5c{bottom:96.076500px;}
.y20{bottom:98.368500px;}
.y83{bottom:100.318359px;}
.y46{bottom:103.136708px;}
.y57{bottom:104.830068px;}
.yb1{bottom:105.034547px;}
.y112{bottom:105.568268px;}
.y17e{bottom:106.675767px;}
.y1cc{bottom:109.032000px;}
.ye5{bottom:109.271490px;}
.y153{bottom:111.281229px;}
.y1f4{bottom:112.258996px;}
.y1c9{bottom:112.259389px;}
.y1a8{bottom:112.259391px;}
.y13e{bottom:112.792941px;}
.y129{bottom:112.980459px;}
.y82{bottom:117.117188px;}
.yb0{bottom:121.839234px;}
.y45{bottom:122.033198px;}
.y56{bottom:123.732417px;}
.y111{bottom:124.464758px;}
.y17d{bottom:124.634755px;}
.ye6{bottom:129.451172px;}
.y152{bottom:130.177719px;}
.y1f3{bottom:130.212124px;}
.y1a7{bottom:130.212509px;}
.y1c8{bottom:130.212516px;}
.ye4{bottom:130.576172px;}
.y13d{bottom:131.695290px;}
.y128{bottom:131.882808px;}
.y81{bottom:133.916016px;}
.yaf{bottom:138.638063px;}
.y44{bottom:140.935547px;}
.y17c{bottom:142.587882px;}
.y55{bottom:142.628901px;}
.y110{bottom:143.367107px;}
.y1a6{bottom:148.165637px;}
.y1c7{bottom:148.165641px;}
.y1f2{bottom:148.171112px;}
.y151{bottom:149.080068px;}
.y13c{bottom:150.597639px;}
.y80{bottom:150.714843px;}
.y127{bottom:150.785124px;}
.yae{bottom:155.436891px;}
.y43{bottom:159.837891px;}
.y17b{bottom:160.541009px;}
.y54{bottom:161.531244px;}
.y10f{bottom:162.263597px;}
.y1f1{bottom:166.124239px;}
.y1c6{bottom:166.124621px;}
.y1a5{bottom:166.124625px;}
.y7f{bottom:167.519532px;}
.y150{bottom:167.982417px;}
.y13b{bottom:169.494129px;}
.y126{bottom:169.681614px;}
.yad{bottom:172.235718px;}
.y1b{bottom:174.837870px;}
.y17a{bottom:178.494137px;}
.y53{bottom:180.433593px;}
.y10e{bottom:181.165946px;}
.y1f0{bottom:184.077366px;}
.y1a4{bottom:184.077743px;}
.y1c5{bottom:184.077748px;}
.y14f{bottom:186.878907px;}
.y13a{bottom:188.396478px;}
.y125{bottom:188.583963px;}
.yc2{bottom:189.034545px;}
.yac{bottom:189.034547px;}
.y42{bottom:190.488282px;}
.y1a{bottom:193.740219px;}
.y7e{bottom:195.937500px;}
.y179{bottom:196.453125px;}
.y10d{bottom:200.068295px;}
.y1a3{bottom:202.030871px;}
.y1c4{bottom:202.030875px;}
.y1ef{bottom:202.036355px;}
.yc1{bottom:205.839230px;}
.yab{bottom:205.839234px;}
.y139{bottom:207.292968px;}
.y124{bottom:207.480453px;}
.y52{bottom:211.658203px;}
.y19{bottom:212.642568px;}
.y178{bottom:214.406250px;}
.y14e{bottom:217.535157px;}
.y10c{bottom:218.964785px;}
.y1ee{bottom:219.989482px;}
.y1a2{bottom:219.989859px;}
.yaa{bottom:222.638063px;}
.y138{bottom:226.195257px;}
.y123{bottom:226.382802px;}
.y7d{bottom:227.320313px;}
.y18{bottom:231.539058px;}
.y177{bottom:232.359371px;}
.y10b{bottom:237.867134px;}
.y1ed{bottom:237.942593px;}
.y1a1{bottom:237.942977px;}
.y1c3{bottom:237.942982px;}
.ya9{bottom:239.436887px;}
.y137{bottom:245.097606px;}
.y122{bottom:245.285151px;}
.y41{bottom:246.099578px;}
.y176{bottom:250.318359px;}
.y17{bottom:250.441407px;}
.y1a0{bottom:255.896105px;}
.y1c2{bottom:255.896109px;}
.y1ec{bottom:255.901581px;}
.ya8{bottom:256.235714px;}
.y10a{bottom:256.763624px;}
.y7c{bottom:260.419922px;}
.y136{bottom:263.994096px;}
.y121{bottom:264.181584px;}
.y40{bottom:265.001927px;}
.y175{bottom:268.271484px;}
.y5a{bottom:268.335940px;}
.ya7{bottom:273.034547px;}
.y1eb{bottom:273.854709px;}
.y1c1{bottom:273.855086px;}
.y19f{bottom:273.855093px;}
.y109{bottom:275.665973px;}
.y135{bottom:282.896445px;}
.y120{bottom:283.083933px;}
.y3f{bottom:283.898417px;}
.y156{bottom:284.988283px;}
.y174{bottom:286.224605px;}
.y16{bottom:288.322266px;}
.y5b{bottom:288.509766px;}
.y59{bottom:289.634766px;}
.ya6{bottom:289.839234px;}
.y1ea{bottom:291.807836px;}
.y1c0{bottom:291.808213px;}
.y19e{bottom:291.808218px;}
.y108{bottom:294.568322px;}
.y134{bottom:301.792935px;}
.y11f{bottom:301.980423px;}
.y3e{bottom:302.800766px;}
.y173{bottom:304.183593px;}
.y157{bottom:305.162109px;}
.y155{bottom:306.287109px;}
.yc0{bottom:306.638059px;}
.ya5{bottom:306.638063px;}
.y19d{bottom:309.761340px;}
.y1e9{bottom:309.766824px;}
.y107{bottom:313.464812px;}
.y7b{bottom:316.031239px;}
.y11e{bottom:320.882772px;}
.y3d{bottom:321.703115px;}
.y172{bottom:322.136717px;}
.ya4{bottom:323.436891px;}
.y1e8{bottom:327.719951px;}
.y19c{bottom:327.720329px;}
.y106{bottom:332.367161px;}
.y7a{bottom:334.927729px;}
.y201{bottom:337.088713px;}
.y11d{bottom:339.785121px;}
.y15{bottom:339.808589px;}
.y171{bottom:340.089845px;}
.ya3{bottom:340.235718px;}
.y3c{bottom:340.599605px;}
.y142{bottom:343.787111px;}
.y1e7{bottom:345.673078px;}
.y1bf{bottom:345.673445px;}
.y19b{bottom:345.673454px;}
.y105{bottom:351.263651px;}
.y79{bottom:353.830073px;}
.y200{bottom:355.041840px;}
.ya2{bottom:357.034547px;}
.y170{bottom:358.048820px;}
.y11c{bottom:358.681611px;}
.y14{bottom:358.710938px;}
.y3b{bottom:359.501948px;}
.y141{bottom:360.591799px;}
.y19a{bottom:363.626572px;}
.y1e6{bottom:363.632063px;}
.y104{bottom:370.166000px;}
.y78{bottom:372.732405px;}
.y1ff{bottom:373.000829px;}
.ya1{bottom:373.839234px;}
.y16f{bottom:376.001947px;}
.y11b{bottom:377.583960px;}
.y3a{bottom:378.398433px;}
.y143{bottom:380.765625px;}
.y1e5{bottom:381.585165px;}
.y199{bottom:381.585560px;}
.y140{bottom:381.890625px;}
.y103{bottom:389.068349px;}
.ya0{bottom:390.638063px;}
.y1fe{bottom:390.953947px;}
.y77{bottom:391.628895px;}
.ye3{bottom:393.503901px;}
.y16e{bottom:393.955074px;}
.y11a{bottom:396.480450px;}
.y13{bottom:396.591796px;}
.y39{bottom:397.300770px;}
.y1e4{bottom:399.538292px;}
.y198{bottom:399.538688px;}
.ybf{bottom:407.436886px;}
.y9f{bottom:407.436891px;}
.y102{bottom:407.964839px;}
.y1fd{bottom:408.907074px;}
.y76{bottom:410.531244px;}
.y16d{bottom:411.914052px;}
.ye2{bottom:412.406244px;}
.y119{bottom:415.382799px;}
.y38{bottom:416.203119px;}
.y197{bottom:417.491806px;}
.y1be{bottom:417.491813px;}
.y1e3{bottom:417.497281px;}
.ybe{bottom:424.235714px;}
.y9e{bottom:424.235718px;}
.y1fc{bottom:426.866062px;}
.y101{bottom:426.867177px;}
.y75{bottom:429.427719px;}
.y16c{bottom:429.867179px;}
.ye1{bottom:431.302729px;}
.y37{bottom:435.099594px;}
.y1e2{bottom:435.450408px;}
.y196{bottom:435.450794px;}
.y12{bottom:436.347657px;}
.y9d{bottom:441.034547px;}
.y100{bottom:445.763667px;}
.y16b{bottom:447.820306px;}
.y74{bottom:448.330068px;}
.ye0{bottom:450.205073px;}
.y1e1{bottom:453.403535px;}
.y195{bottom:453.403922px;}
.y36{bottom:454.001943px;}
.y12c{bottom:457.376956px;}
.y9c{bottom:457.839230px;}
.ybd{bottom:457.839234px;}
.yff{bottom:464.665994px;}
.y16a{bottom:465.779294px;}
.y73{bottom:467.232417px;}
.ydf{bottom:469.107395px;}
.y194{bottom:471.357047px;}
.y1e0{bottom:471.362523px;}
.y35{bottom:472.898433px;}
.y9b{bottom:474.638059px;}
.ybc{bottom:474.638063px;}
.y12d{bottom:477.550782px;}
.y12b{bottom:478.675782px;}
.yfe{bottom:483.568343px;}
.y169{bottom:483.732422px;}
.y72{bottom:486.128907px;}
.yde{bottom:488.003885px;}
.y1df{bottom:489.315650px;}
.y193{bottom:489.316021px;}
.y1bd{bottom:489.316032px;}
.yd8{bottom:489.842901px;}
.y9a{bottom:491.436891px;}
.y34{bottom:491.800782px;}
.y1fb{bottom:494.673000px;}
.y20e{bottom:498.908204px;}
.y168{bottom:501.685539px;}
.yfd{bottom:502.464833px;}
.y71{bottom:505.031207px;}
.y11{bottom:505.447266px;}
.ydd{bottom:506.906234px;}
.y1de{bottom:507.268778px;}
.y192{bottom:507.269148px;}
.y1bc{bottom:507.269157px;}
.y99{bottom:508.235718px;}
.yd7{bottom:508.745250px;}
.y33{bottom:510.703109px;}
.y20d{bottom:515.712887px;}
.y167{bottom:519.644528px;}
.yfc{bottom:521.367182px;}
.y10{bottom:522.246082px;}
.y70{bottom:523.927697px;}
.y98{bottom:525.034547px;}
.y191{bottom:525.222275px;}
.y1bb{bottom:525.222282px;}
.y1dd{bottom:525.227766px;}
.ydc{bottom:525.802724px;}
.y32{bottom:529.599599px;}
.y20c{bottom:532.511720px;}
.y166{bottom:537.597655px;}
.yd6{bottom:538.288218px;}
.yf{bottom:539.044908px;}
.yfb{bottom:540.263661px;}
.ybb{bottom:541.839230px;}
.y97{bottom:541.839234px;}
.y6f{bottom:542.830046px;}
.y1dc{bottom:543.180887px;}
.y1ba{bottom:543.181262px;}
.y190{bottom:543.181264px;}
.ydb{bottom:544.705073px;}
.y31{bottom:548.501948px;}
.y20b{bottom:549.451172px;}
.y165{bottom:555.550782px;}
.y96{bottom:558.638063px;}
.yfa{bottom:559.166010px;}
.ye{bottom:560.343741px;}
.y1db{bottom:561.134014px;}
.y1b9{bottom:561.134389px;}
.y18f{bottom:561.134391px;}
.y6e{bottom:561.732395px;}
.yda{bottom:563.607417px;}
.y20a{bottom:566.390625px;}
.y30{bottom:567.398433px;}
.y164{bottom:573.509766px;}
.y95{bottom:575.436891px;}
.yd5{bottom:577.739387px;}
.yf9{bottom:578.068349px;}
.y1da{bottom:579.087141px;}
.y18e{bottom:579.087514px;}
.y1b8{bottom:579.087516px;}
.y6d{bottom:580.628884px;}
.yd{bottom:581.648433px;}
.yd9{bottom:582.503907px;}
.y2f{bottom:586.300776px;}
.y163{bottom:591.462889px;}
.y210{bottom:592.201172px;}
.y94{bottom:592.235720px;}
.y209{bottom:594.451172px;}
.yd4{bottom:594.538219px;}
.yf8{bottom:596.964839px;}
.y1b7{bottom:597.040634px;}
.y18d{bottom:597.040641px;}
.y1d9{bottom:597.046116px;}
.y14d{bottom:599.531159px;}
.y6c{bottom:599.531234px;}
.yc{bottom:602.947266px;}
.y2e{bottom:605.203119px;}
.y93{bottom:609.034547px;}
.y162{bottom:609.416016px;}
.yd3{bottom:611.337045px;}
.y1d8{bottom:614.999243px;}
.y18c{bottom:614.999623px;}
.yf7{bottom:615.867161px;}
.y14c{bottom:618.427649px;}
.y6b{bottom:618.427723px;}
.y2d{bottom:624.099604px;}
.yba{bottom:625.839230px;}
.y92{bottom:625.839234px;}
.y161{bottom:627.369132px;}
.yd2{bottom:628.141734px;}
.y1d7{bottom:632.952371px;}
.y18b{bottom:632.952750px;}
.y208{bottom:634.142579px;}
.yf6{bottom:634.763651px;}
.y14b{bottom:637.329997px;}
.y6a{bottom:637.330073px;}
.yb9{bottom:642.638059px;}
.y91{bottom:642.638063px;}
.y2c{bottom:643.001931px;}
.yd1{bottom:644.940559px;}
.y160{bottom:645.328121px;}
.y18a{bottom:650.905860px;}
.y1b6{bottom:650.905866px;}
.y1d6{bottom:650.911359px;}
.y207{bottom:650.941403px;}
.yb{bottom:653.197279px;}
.yf5{bottom:653.665999px;}
.y14a{bottom:656.232346px;}
.y69{bottom:656.232417px;}
.y90{bottom:659.436891px;}
.yd0{bottom:661.739391px;}
.y2b{bottom:661.898421px;}
.y15f{bottom:663.281248px;}
.ya{bottom:666.427743px;}
.y206{bottom:667.740236px;}
.y1d5{bottom:668.864477px;}
.y189{bottom:668.864848px;}
.y1b5{bottom:668.864855px;}
.yf4{bottom:672.568348px;}
.y149{bottom:675.128837px;}
.y133{bottom:675.128874px;}
.y68{bottom:675.128880px;}
.y8f{bottom:676.235714px;}
.yb8{bottom:676.235718px;}
.ycf{bottom:678.538218px;}
.y9{bottom:679.658207px;}
.y2a{bottom:680.800770px;}
.y15e{bottom:681.234375px;}
.y205{bottom:684.679688px;}
.y1d4{bottom:686.817605px;}
.y188{bottom:686.817975px;}
.y1b4{bottom:686.817982px;}
.yf3{bottom:691.464839px;}
.y8{bottom:692.888671px;}
.y8e{bottom:693.034545px;}
.y148{bottom:694.031185px;}
.y132{bottom:694.031223px;}
.y67{bottom:694.031229px;}
.yce{bottom:695.337046px;}
.y15d{bottom:699.193355px;}
.y29{bottom:699.703119px;}
.y204{bottom:701.619141px;}
.y187{bottom:704.771102px;}
.y1b3{bottom:704.771105px;}
.y1d3{bottom:704.776593px;}
.y8d{bottom:709.839234px;}
.yf2{bottom:710.367160px;}
.ycd{bottom:712.141734px;}
.y147{bottom:712.927676px;}
.y131{bottom:712.927713px;}
.y66{bottom:712.927719px;}
.y7{bottom:713.847657px;}
.y15c{bottom:717.146482px;}
.y1c{bottom:718.347657px;}
.y28{bottom:718.599594px;}
.y1d2{bottom:722.729711px;}
.y186{bottom:722.730091px;}
.y1b2{bottom:722.730093px;}
.y8c{bottom:726.638063px;}
.y20f{bottom:727.429688px;}
.ycc{bottom:728.940562px;}
.yf1{bottom:729.263651px;}
.y203{bottom:729.679688px;}
.y146{bottom:731.830025px;}
.y130{bottom:731.830062px;}
.y65{bottom:731.830068px;}
.y15b{bottom:735.099609px;}
.y27{bottom:737.501943px;}
.y1d1{bottom:740.682838px;}
.y185{bottom:740.683218px;}
.y8b{bottom:743.436891px;}
.ycb{bottom:745.739391px;}
.yf0{bottom:748.165999px;}
.y145{bottom:750.732373px;}
.y51{bottom:750.732411px;}
.y64{bottom:750.732417px;}
.y15a{bottom:753.058591px;}
.y6{bottom:756.158206px;}
.y26{bottom:756.398433px;}
.y1b1{bottom:758.636338px;}
.y184{bottom:758.636345px;}
.y1d0{bottom:758.641826px;}
.y8a{bottom:760.235720px;}
.yca{bottom:762.538219px;}
.yef{bottom:767.068348px;}
.y144{bottom:769.628864px;}
.y63{bottom:769.628884px;}
.y50{bottom:769.628901px;}
.y159{bottom:771.011718px;}
.y25{bottom:775.300776px;}
.y202{bottom:776.390625px;}
.y1cf{bottom:776.594954px;}
.y1b0{bottom:776.595326px;}
.y183{bottom:776.595329px;}
.y89{bottom:777.034547px;}
.yc9{bottom:779.337045px;}
.yee{bottom:785.964839px;}
.y5f{bottom:786.954740px;}
.y12f{bottom:788.531213px;}
.y62{bottom:788.531233px;}
.y118{bottom:788.531240px;}
.y4f{bottom:788.531250px;}
.y5{bottom:793.710931px;}
.y88{bottom:793.839234px;}
.y24{bottom:794.203125px;}
.y1ce{bottom:794.548079px;}
.y182{bottom:794.548447px;}
.y1af{bottom:794.548454px;}
.yc8{bottom:796.141730px;}
.ye9{bottom:798.567843px;}
.yed{bottom:804.867177px;}
.y5e{bottom:805.851230px;}
.y12e{bottom:807.427703px;}
.y4e{bottom:807.427719px;}
.y61{bottom:807.427723px;}
.y117{bottom:807.427730px;}
.y158{bottom:808.523438px;}
.y87{bottom:810.638063px;}
.y181{bottom:812.501574px;}
.y1cd{bottom:812.507063px;}
.y21{bottom:812.752593px;}
.yc7{bottom:812.940562px;}
.yec{bottom:823.763667px;}
.y5d{bottom:824.753579px;}
.y23{bottom:824.853516px;}
.y116{bottom:826.330052px;}
.y4d{bottom:826.330068px;}
.y60{bottom:826.330072px;}
.y86{bottom:827.436891px;}
.ye8{bottom:829.224093px;}
.yc6{bottom:829.739391px;}
.y180{bottom:830.460563px;}
.y4{bottom:831.269532px;}
.yeb{bottom:842.666016px;}
.y115{bottom:845.232401px;}
.y4c{bottom:845.232417px;}
.yea{bottom:861.568359px;}
.y114{bottom:864.128891px;}
.y4b{bottom:864.128907px;}
.y22{bottom:880.464843px;}
.y4a{bottom:883.031239px;}
.y3{bottom:899.378907px;}
.y49{bottom:901.927730px;}
.y48{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y84{bottom:974.730452px;}
.y47{bottom:974.730470px;}
.ha{height:28.048904px;}
.h11{height:31.993163px;}
.h9{height:32.167969px;}
.h6{height:33.777938px;}
.h10{height:35.617086px;}
.h16{height:35.617157px;}
.h1{height:37.527989px;}
.h15{height:40.341797px;}
.h26{height:40.535623px;}
.h5{height:42.891933px;}
.h1d{height:45.840926px;}
.h1f{height:45.840987px;}
.h23{height:45.840990px;}
.h24{height:45.841005px;}
.h22{height:45.841016px;}
.h1e{height:45.991224px;}
.h8{height:46.796220px;}
.h14{height:48.050236px;}
.h2{height:48.251953px;}
.hc{height:48.252013px;}
.he{height:48.252019px;}
.hd{height:48.252043px;}
.h13{height:48.252061px;}
.h1b{height:48.252085px;}
.h1c{height:48.252103px;}
.h1a{height:48.252181px;}
.hf{height:48.410156px;}
.h7{height:52.443023px;}
.h4{height:68.582368px;}
.h3{height:70.420196px;}
.h25{height:440.290500px;}
.h21{height:825.931500px;}
.hb{height:836.595000px;}
.h12{height:838.887000px;}
.h17{height:840.000000px;}
.h18{height:842.302500px;}
.h20{height:843.885000px;}
.h19{height:853.066500px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x18{left:11.584593px;}
.x12{left:22.500609px;}
.xe{left:28.875609px;}
.xf{left:30.000608px;}
.x10{left:32.250614px;}
.x11{left:33.375610px;}
.x19{left:45.000609px;}
.xd{left:67.500609px;}
.x3{left:78.662109px;}
.x7{left:86.537109px;}
.x16{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.xa{left:101.162109px;}
.xb{left:107.537109px;}
.x14{left:109.037109px;}
.x17{left:123.662109px;}
.x9{left:130.289062px;}
.x8{left:138.287109px;}
.x1{left:140.308593px;}
.xc{left:146.162111px;}
.x6{left:156.287109px;}
.x15{left:160.787109px;}
.x2{left:277.664062px;}
.x1b{left:339.662109px;}
.x1a{left:465.662109px;}
.x13{left:576.791016px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.015989pt;}
.lsb{letter-spacing:0.016016pt;}
.ls8{letter-spacing:0.128004pt;}
.lsd{letter-spacing:0.775227pt;}
.lsc{letter-spacing:0.820828pt;}
.lse{letter-spacing:1.185641pt;}
.ls1{letter-spacing:1.296000pt;}
.ls5{letter-spacing:1.312000pt;}
.ls3{letter-spacing:1.344000pt;}
.ls7{letter-spacing:1.536000pt;}
.lsf{letter-spacing:1.596055pt;}
.ls10{letter-spacing:1.869664pt;}
.ls11{letter-spacing:2.261402pt;}
.lsa{letter-spacing:5.616000pt;}
.ls2{letter-spacing:18.099829pt;}
.ls9{letter-spacing:755.839102pt;}
.ls4{letter-spacing:755.839111pt;}
.ws14{word-spacing:-45.601563pt;}
.ws17{word-spacing:-42.667968pt;}
.ws1{word-spacing:-18.781930pt;}
.ws2{word-spacing:-16.759585pt;}
.ws6{word-spacing:-14.592000pt;}
.ws7{word-spacing:-14.448000pt;}
.ws5{word-spacing:-13.296000pt;}
.ws16{word-spacing:-12.843058pt;}
.ws12{word-spacing:-12.631633pt;}
.ws11{word-spacing:-11.861695pt;}
.ws9{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws15{word-spacing:-0.049492pt;}
.ws4{word-spacing:0.000000pt;}
.ws10{word-spacing:0.480000pt;}
.wsb{word-spacing:89.684007pt;}
.wsa{word-spacing:89.715880pt;}
.ws8{word-spacing:89.715881pt;}
.wsc{word-spacing:89.715895pt;}
.wse{word-spacing:89.716364pt;}
.wsd{word-spacing:89.748231pt;}
.ws13{word-spacing:90.199891pt;}
.ws3{word-spacing:266.816000pt;}
.wsf{word-spacing:719.998018pt;}
._1e{margin-left:-8.257910pt;}
._1f{margin-left:-7.110327pt;}
._3{margin-left:-5.328000pt;}
._17{margin-left:-4.320000pt;}
._6{margin-left:-2.949945pt;}
._4{margin-left:-1.898512pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._7{width:3.430074pt;}
._e{width:4.351746pt;}
._9{width:5.280000pt;}
._d{width:6.169223pt;}
._8{width:7.152070pt;}
._a{width:8.784105pt;}
._b{width:10.165590pt;}
._c{width:11.679926pt;}
._10{width:14.389555pt;}
._11{width:15.770582pt;}
._12{width:16.730184pt;}
._18{width:17.706215pt;}
._f{width:19.834305pt;}
._1a{width:20.934499pt;}
._16{width:23.221519pt;}
._15{width:24.437480pt;}
._19{width:29.275152pt;}
._1b{width:39.514059pt;}
._5{width:58.380482pt;}
._13{width:79.991846pt;}
._1d{width:102.831524pt;}
._1c{width:136.173161pt;}
._14{width:160.173161pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs8{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:49.492187pt;}
.fs6{font-size:55.679685pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.yb7{bottom:3.765083pt;}
.y1fa{bottom:4.025375pt;}
.y1ae{bottom:4.025706pt;}
.yb6{bottom:18.697374pt;}
.y1ad{bottom:19.984041pt;}
.y1f9{bottom:19.988908pt;}
.yb5{bottom:33.634871pt;}
.yc4{bottom:33.634875pt;}
.y1f8{bottom:35.947243pt;}
.y1ac{bottom:35.947584pt;}
.y1f{bottom:41.541662pt;}
.yb4{bottom:48.567167pt;}
.y1f7{bottom:51.905578pt;}
.y1ab{bottom:51.905912pt;}
.y1cb{bottom:51.905915pt;}
.y1e{bottom:52.458331pt;}
.y1d{bottom:63.380208pt;}
.yb3{bottom:63.499459pt;}
.y1aa{bottom:67.864247pt;}
.y1ca{bottom:67.864251pt;}
.y1f6{bottom:67.869123pt;}
.ye7{bottom:72.797333pt;}
.y58{bottom:76.385403pt;}
.y113{bottom:77.036372pt;}
.yb2{bottom:78.431746pt;}
.yc3{bottom:78.431749pt;}
.y17f{bottom:80.958667pt;}
.y154{bottom:82.114560pt;}
.yc5{bottom:82.365333pt;}
.y13f{bottom:83.463512pt;}
.y12a{bottom:83.630195pt;}
.y1f5{bottom:83.827459pt;}
.y1a9{bottom:83.827792pt;}
.y85{bottom:84.412000pt;}
.y5c{bottom:85.401333pt;}
.y20{bottom:87.438667pt;}
.y83{bottom:89.171875pt;}
.y46{bottom:91.677073pt;}
.y57{bottom:93.182283pt;}
.yb1{bottom:93.364041pt;}
.y112{bottom:93.838460pt;}
.y17e{bottom:94.822904pt;}
.y1cc{bottom:96.917333pt;}
.ye5{bottom:97.130213pt;}
.y153{bottom:98.916648pt;}
.y1f4{bottom:99.785775pt;}
.y1c9{bottom:99.786123pt;}
.y1a8{bottom:99.786125pt;}
.y13e{bottom:100.260392pt;}
.y129{bottom:100.427075pt;}
.y82{bottom:104.104167pt;}
.yb0{bottom:108.301541pt;}
.y45{bottom:108.473953pt;}
.y56{bottom:109.984371pt;}
.y111{bottom:110.635340pt;}
.y17d{bottom:110.786449pt;}
.ye6{bottom:115.067708pt;}
.y152{bottom:115.713528pt;}
.y1f3{bottom:115.744110pt;}
.y1a7{bottom:115.744453pt;}
.y1c8{bottom:115.744459pt;}
.ye4{bottom:116.067708pt;}
.y13d{bottom:117.062480pt;}
.y128{bottom:117.229163pt;}
.y81{bottom:119.036459pt;}
.yaf{bottom:123.233833pt;}
.y44{bottom:125.276041pt;}
.y17c{bottom:126.744784pt;}
.y55{bottom:126.781245pt;}
.y110{bottom:127.437428pt;}
.y1a6{bottom:131.702788pt;}
.y1c7{bottom:131.702792pt;}
.y1f2{bottom:131.707655pt;}
.y151{bottom:132.515616pt;}
.y13c{bottom:133.864568pt;}
.y80{bottom:133.968750pt;}
.y127{bottom:134.031221pt;}
.yae{bottom:138.166125pt;}
.y43{bottom:142.078125pt;}
.y17b{bottom:142.703120pt;}
.y54{bottom:143.583328pt;}
.y10f{bottom:144.234308pt;}
.y1f1{bottom:147.665990pt;}
.y1c6{bottom:147.666329pt;}
.y1a5{bottom:147.666333pt;}
.y7f{bottom:148.906251pt;}
.y150{bottom:149.317704pt;}
.y13b{bottom:150.661448pt;}
.y126{bottom:150.828101pt;}
.yad{bottom:153.098416pt;}
.y1b{bottom:155.411440pt;}
.y17a{bottom:158.661455pt;}
.y53{bottom:160.385416pt;}
.y10e{bottom:161.036396pt;}
.y1f0{bottom:163.624326pt;}
.y1a4{bottom:163.624661pt;}
.y1c5{bottom:163.624665pt;}
.y14f{bottom:166.114584pt;}
.y13a{bottom:167.463536pt;}
.y125{bottom:167.630189pt;}
.yc2{bottom:168.030707pt;}
.yac{bottom:168.030708pt;}
.y42{bottom:169.322917pt;}
.y1a{bottom:172.213528pt;}
.y7e{bottom:174.166667pt;}
.y179{bottom:174.625000pt;}
.y10d{bottom:177.838484pt;}
.y1a3{bottom:179.582996pt;}
.y1c4{bottom:179.583000pt;}
.y1ef{bottom:179.587871pt;}
.yc1{bottom:182.968205pt;}
.yab{bottom:182.968208pt;}
.y139{bottom:184.260416pt;}
.y124{bottom:184.427069pt;}
.y52{bottom:188.140625pt;}
.y19{bottom:189.015616pt;}
.y178{bottom:190.583333pt;}
.y14e{bottom:193.364584pt;}
.y10c{bottom:194.635364pt;}
.y1ee{bottom:195.546206pt;}
.y1a2{bottom:195.546541pt;}
.yaa{bottom:197.900500pt;}
.y138{bottom:201.062451pt;}
.y123{bottom:201.229157pt;}
.y7d{bottom:202.062500pt;}
.y18{bottom:205.812496pt;}
.y177{bottom:206.541663pt;}
.y10b{bottom:211.437452pt;}
.y1ed{bottom:211.504527pt;}
.y1a1{bottom:211.504869pt;}
.y1c3{bottom:211.504873pt;}
.ya9{bottom:212.832789pt;}
.y137{bottom:217.864539pt;}
.y122{bottom:218.031245pt;}
.y41{bottom:218.755180pt;}
.y176{bottom:222.505208pt;}
.y17{bottom:222.614584pt;}
.y1a0{bottom:227.463204pt;}
.y1c2{bottom:227.463208pt;}
.y1ec{bottom:227.468072pt;}
.ya8{bottom:227.765079pt;}
.y10a{bottom:228.234332pt;}
.y7c{bottom:231.484375pt;}
.y136{bottom:234.661419pt;}
.y121{bottom:234.828075pt;}
.y40{bottom:235.557268pt;}
.y175{bottom:238.463541pt;}
.y5a{bottom:238.520836pt;}
.ya7{bottom:242.697375pt;}
.y1eb{bottom:243.426408pt;}
.y1c1{bottom:243.426743pt;}
.y19f{bottom:243.426749pt;}
.y109{bottom:245.036420pt;}
.y135{bottom:251.463507pt;}
.y120{bottom:251.630163pt;}
.y3f{bottom:252.354148pt;}
.y156{bottom:253.322919pt;}
.y174{bottom:254.421871pt;}
.y16{bottom:256.286459pt;}
.y5b{bottom:256.453125pt;}
.y59{bottom:257.453125pt;}
.ya6{bottom:257.634875pt;}
.y1ea{bottom:259.384743pt;}
.y1c0{bottom:259.385078pt;}
.y19e{bottom:259.385083pt;}
.y108{bottom:261.838508pt;}
.y134{bottom:268.260387pt;}
.y11f{bottom:268.427043pt;}
.y3e{bottom:269.156236pt;}
.y173{bottom:270.385416pt;}
.y157{bottom:271.255208pt;}
.y155{bottom:272.255208pt;}
.yc0{bottom:272.567163pt;}
.ya5{bottom:272.567167pt;}
.y19d{bottom:275.343413pt;}
.y1e9{bottom:275.348288pt;}
.y107{bottom:278.635388pt;}
.y7b{bottom:280.916657pt;}
.y11e{bottom:285.229131pt;}
.y3d{bottom:285.958324pt;}
.y172{bottom:286.343749pt;}
.ya4{bottom:287.499459pt;}
.y1e8{bottom:291.306623pt;}
.y19c{bottom:291.306959pt;}
.y106{bottom:295.437476pt;}
.y7a{bottom:297.713537pt;}
.y201{bottom:299.634412pt;}
.y11d{bottom:302.031219pt;}
.y15{bottom:302.052079pt;}
.y171{bottom:302.302084pt;}
.ya3{bottom:302.431749pt;}
.y3c{bottom:302.755204pt;}
.y142{bottom:305.588543pt;}
.y1e7{bottom:307.264959pt;}
.y1bf{bottom:307.265284pt;}
.y19b{bottom:307.265292pt;}
.y105{bottom:312.234356pt;}
.y79{bottom:314.515620pt;}
.y200{bottom:315.592747pt;}
.ya2{bottom:317.364041pt;}
.y170{bottom:318.265618pt;}
.y11c{bottom:318.828099pt;}
.y14{bottom:318.854167pt;}
.y3b{bottom:319.557287pt;}
.y141{bottom:320.526044pt;}
.y19a{bottom:323.223620pt;}
.y1e6{bottom:323.228500pt;}
.y104{bottom:329.036444pt;}
.y78{bottom:331.317693pt;}
.y1ff{bottom:331.556292pt;}
.ya1{bottom:332.301541pt;}
.y16f{bottom:334.223953pt;}
.y11b{bottom:335.630187pt;}
.y3a{bottom:336.354163pt;}
.y143{bottom:338.458333pt;}
.y1e5{bottom:339.186813pt;}
.y199{bottom:339.187165pt;}
.y140{bottom:339.458333pt;}
.y103{bottom:345.838532pt;}
.ya0{bottom:347.233833pt;}
.y1fe{bottom:347.514620pt;}
.y77{bottom:348.114573pt;}
.ye3{bottom:349.781245pt;}
.y16e{bottom:350.182288pt;}
.y11a{bottom:352.427067pt;}
.y13{bottom:352.526041pt;}
.y39{bottom:353.156240pt;}
.y1e4{bottom:355.145149pt;}
.y198{bottom:355.145500pt;}
.ybf{bottom:362.166121pt;}
.y9f{bottom:362.166125pt;}
.y102{bottom:362.635412pt;}
.y1fd{bottom:363.472955pt;}
.y76{bottom:364.916661pt;}
.y16d{bottom:366.145824pt;}
.ye2{bottom:366.583328pt;}
.y119{bottom:369.229155pt;}
.y38{bottom:369.958328pt;}
.y197{bottom:371.103828pt;}
.y1be{bottom:371.103833pt;}
.y1e3{bottom:371.108694pt;}
.ybe{bottom:377.098413pt;}
.y9e{bottom:377.098416pt;}
.y1fc{bottom:379.436500pt;}
.y101{bottom:379.437491pt;}
.y75{bottom:381.713528pt;}
.y16c{bottom:382.104159pt;}
.ye1{bottom:383.380204pt;}
.y37{bottom:386.755195pt;}
.y1e2{bottom:387.067029pt;}
.y196{bottom:387.067373pt;}
.y12{bottom:387.864584pt;}
.y9d{bottom:392.030708pt;}
.y100{bottom:396.234371pt;}
.y16b{bottom:398.062494pt;}
.y74{bottom:398.515616pt;}
.ye0{bottom:400.182287pt;}
.y1e1{bottom:403.025364pt;}
.y195{bottom:403.025708pt;}
.y36{bottom:403.557283pt;}
.y12c{bottom:406.557295pt;}
.y9c{bottom:406.968205pt;}
.ybd{bottom:406.968208pt;}
.yff{bottom:413.036439pt;}
.y16a{bottom:414.026039pt;}
.y73{bottom:415.317704pt;}
.ydf{bottom:416.984351pt;}
.y194{bottom:418.984041pt;}
.y1e0{bottom:418.988910pt;}
.y35{bottom:420.354163pt;}
.y9b{bottom:421.900497pt;}
.ybc{bottom:421.900500pt;}
.y12d{bottom:424.489584pt;}
.y12b{bottom:425.489584pt;}
.yfe{bottom:429.838527pt;}
.y169{bottom:429.984375pt;}
.y72{bottom:432.114584pt;}
.yde{bottom:433.781231pt;}
.y1df{bottom:434.947245pt;}
.y193{bottom:434.947574pt;}
.y1bd{bottom:434.947584pt;}
.yd8{bottom:435.415912pt;}
.y9a{bottom:436.832792pt;}
.y34{bottom:437.156251pt;}
.y1fb{bottom:439.709333pt;}
.y20e{bottom:443.473959pt;}
.y168{bottom:445.942702pt;}
.yfd{bottom:446.635407pt;}
.y71{bottom:448.916628pt;}
.y11{bottom:449.286459pt;}
.ydd{bottom:450.583319pt;}
.y1de{bottom:450.905580pt;}
.y192{bottom:450.905910pt;}
.y1bc{bottom:450.905917pt;}
.y99{bottom:451.765083pt;}
.yd7{bottom:452.218000pt;}
.y33{bottom:453.958319pt;}
.y20d{bottom:458.411455pt;}
.y167{bottom:461.906247pt;}
.yfc{bottom:463.437495pt;}
.y10{bottom:464.218739pt;}
.y70{bottom:465.713508pt;}
.y98{bottom:466.697375pt;}
.y191{bottom:466.864245pt;}
.y1bb{bottom:466.864251pt;}
.y1dd{bottom:466.869125pt;}
.ydc{bottom:467.380199pt;}
.y32{bottom:470.755199pt;}
.y20c{bottom:473.343751pt;}
.y166{bottom:477.864582pt;}
.yd6{bottom:478.478416pt;}
.yf{bottom:479.151029pt;}
.yfb{bottom:480.234365pt;}
.ybb{bottom:481.634871pt;}
.y97{bottom:481.634875pt;}
.y6f{bottom:482.515596pt;}
.y1dc{bottom:482.827455pt;}
.y1ba{bottom:482.827788pt;}
.y190{bottom:482.827790pt;}
.ydb{bottom:484.182287pt;}
.y31{bottom:487.557287pt;}
.y20b{bottom:488.401042pt;}
.y165{bottom:493.822917pt;}
.y96{bottom:496.567167pt;}
.yfa{bottom:497.036453pt;}
.ye{bottom:498.083325pt;}
.y1db{bottom:498.785790pt;}
.y1b9{bottom:498.786123pt;}
.y18f{bottom:498.786125pt;}
.y6e{bottom:499.317684pt;}
.yda{bottom:500.984371pt;}
.y20a{bottom:503.458333pt;}
.y30{bottom:504.354163pt;}
.y164{bottom:509.786459pt;}
.y95{bottom:511.499459pt;}
.yd5{bottom:513.546122pt;}
.yf9{bottom:513.838532pt;}
.y1da{bottom:514.744125pt;}
.y18e{bottom:514.744457pt;}
.y1b8{bottom:514.744459pt;}
.y6d{bottom:516.114564pt;}
.yd{bottom:517.020829pt;}
.yd9{bottom:517.781251pt;}
.y2f{bottom:521.156245pt;}
.y163{bottom:525.744790pt;}
.y210{bottom:526.401041pt;}
.y94{bottom:526.431751pt;}
.y209{bottom:528.401041pt;}
.yd4{bottom:528.478417pt;}
.yf8{bottom:530.635412pt;}
.y1b7{bottom:530.702786pt;}
.y18d{bottom:530.702792pt;}
.y1d9{bottom:530.707659pt;}
.y14d{bottom:532.916585pt;}
.y6c{bottom:532.916652pt;}
.yc{bottom:535.953125pt;}
.y2e{bottom:537.958328pt;}
.y93{bottom:541.364041pt;}
.y162{bottom:541.703125pt;}
.yd3{bottom:543.410707pt;}
.y1d8{bottom:546.665994pt;}
.y18c{bottom:546.666331pt;}
.yf7{bottom:547.437476pt;}
.y14c{bottom:549.713465pt;}
.y6b{bottom:549.713532pt;}
.y2d{bottom:554.755204pt;}
.yba{bottom:556.301538pt;}
.y92{bottom:556.301541pt;}
.y161{bottom:557.661451pt;}
.yd2{bottom:558.348208pt;}
.y1d7{bottom:562.624329pt;}
.y18b{bottom:562.624667pt;}
.y208{bottom:563.682292pt;}
.yf6{bottom:564.234356pt;}
.y14b{bottom:566.515553pt;}
.y6a{bottom:566.515620pt;}
.yb9{bottom:571.233830pt;}
.y91{bottom:571.233833pt;}
.y2c{bottom:571.557272pt;}
.yd1{bottom:573.280497pt;}
.y160{bottom:573.624996pt;}
.y18a{bottom:578.582986pt;}
.y1b6{bottom:578.582992pt;}
.y1d6{bottom:578.587875pt;}
.y207{bottom:578.614581pt;}
.yb{bottom:580.619804pt;}
.yf5{bottom:581.036444pt;}
.y14a{bottom:583.317641pt;}
.y69{bottom:583.317704pt;}
.y90{bottom:586.166125pt;}
.yd0{bottom:588.212792pt;}
.y2b{bottom:588.354152pt;}
.y15f{bottom:589.583331pt;}
.ya{bottom:592.380216pt;}
.y206{bottom:593.546876pt;}
.y1d5{bottom:594.546202pt;}
.y189{bottom:594.546532pt;}
.y1b5{bottom:594.546537pt;}
.yf4{bottom:597.838532pt;}
.y149{bottom:600.114521pt;}
.y133{bottom:600.114555pt;}
.y68{bottom:600.114560pt;}
.y8f{bottom:601.098413pt;}
.yb8{bottom:601.098416pt;}
.ycf{bottom:603.145083pt;}
.y9{bottom:604.140629pt;}
.y2a{bottom:605.156240pt;}
.y15e{bottom:605.541667pt;}
.y205{bottom:608.604167pt;}
.y1d4{bottom:610.504537pt;}
.y188{bottom:610.504867pt;}
.y1b4{bottom:610.504873pt;}
.yf3{bottom:614.635412pt;}
.y8{bottom:615.901041pt;}
.y8e{bottom:616.030707pt;}
.y148{bottom:616.916609pt;}
.y132{bottom:616.916643pt;}
.y67{bottom:616.916648pt;}
.yce{bottom:618.077375pt;}
.y15d{bottom:621.505204pt;}
.y29{bottom:621.958328pt;}
.y204{bottom:623.661459pt;}
.y187{bottom:626.463202pt;}
.y1b3{bottom:626.463204pt;}
.y1d3{bottom:626.468083pt;}
.y8d{bottom:630.968208pt;}
.yf2{bottom:631.437476pt;}
.ycd{bottom:633.014875pt;}
.y147{bottom:633.713489pt;}
.y131{bottom:633.713523pt;}
.y66{bottom:633.713528pt;}
.y7{bottom:634.531251pt;}
.y15c{bottom:637.463539pt;}
.y1c{bottom:638.531251pt;}
.y28{bottom:638.755195pt;}
.y1d2{bottom:642.426410pt;}
.y186{bottom:642.426747pt;}
.y1b2{bottom:642.426749pt;}
.y8c{bottom:645.900500pt;}
.y20f{bottom:646.604167pt;}
.ycc{bottom:647.947167pt;}
.yf1{bottom:648.234356pt;}
.y203{bottom:648.604167pt;}
.y146{bottom:650.515577pt;}
.y130{bottom:650.515611pt;}
.y65{bottom:650.515616pt;}
.y15b{bottom:653.421875pt;}
.y27{bottom:655.557283pt;}
.y1d1{bottom:658.384745pt;}
.y185{bottom:658.385083pt;}
.y8b{bottom:660.832792pt;}
.ycb{bottom:662.879459pt;}
.yf0{bottom:665.036444pt;}
.y145{bottom:667.317665pt;}
.y51{bottom:667.317699pt;}
.y64{bottom:667.317704pt;}
.y15a{bottom:669.385414pt;}
.y6{bottom:672.140627pt;}
.y26{bottom:672.354163pt;}
.y1b1{bottom:674.343412pt;}
.y184{bottom:674.343417pt;}
.y1d0{bottom:674.348290pt;}
.y8a{bottom:675.765084pt;}
.yca{bottom:677.811751pt;}
.yef{bottom:681.838532pt;}
.y144{bottom:684.114545pt;}
.y63{bottom:684.114564pt;}
.y50{bottom:684.114579pt;}
.y159{bottom:685.343749pt;}
.y25{bottom:689.156245pt;}
.y202{bottom:690.125000pt;}
.y1cf{bottom:690.306625pt;}
.y1b0{bottom:690.306957pt;}
.y183{bottom:690.306959pt;}
.y89{bottom:690.697375pt;}
.yc9{bottom:692.744040pt;}
.yee{bottom:698.635412pt;}
.y5f{bottom:699.515324pt;}
.y12f{bottom:700.916633pt;}
.y62{bottom:700.916652pt;}
.y118{bottom:700.916657pt;}
.y4f{bottom:700.916667pt;}
.y5{bottom:705.520828pt;}
.y88{bottom:705.634875pt;}
.y24{bottom:705.958333pt;}
.y1ce{bottom:706.264959pt;}
.y182{bottom:706.265286pt;}
.y1af{bottom:706.265292pt;}
.yc8{bottom:707.681538pt;}
.ye9{bottom:709.838083pt;}
.yed{bottom:715.437491pt;}
.y5e{bottom:716.312204pt;}
.y12e{bottom:717.713513pt;}
.y4e{bottom:717.713528pt;}
.y61{bottom:717.713532pt;}
.y117{bottom:717.713537pt;}
.y158{bottom:718.687500pt;}
.y87{bottom:720.567167pt;}
.y181{bottom:722.223621pt;}
.y1cd{bottom:722.228500pt;}
.y21{bottom:722.446749pt;}
.yc7{bottom:722.613833pt;}
.yec{bottom:732.234371pt;}
.y5d{bottom:733.114292pt;}
.y23{bottom:733.203125pt;}
.y116{bottom:734.515601pt;}
.y4d{bottom:734.515616pt;}
.y60{bottom:734.515620pt;}
.y86{bottom:735.499459pt;}
.ye8{bottom:737.088083pt;}
.yc6{bottom:737.546125pt;}
.y180{bottom:738.187167pt;}
.y4{bottom:738.906251pt;}
.yeb{bottom:749.036459pt;}
.y115{bottom:751.317689pt;}
.y4c{bottom:751.317704pt;}
.yea{bottom:765.838541pt;}
.y114{bottom:768.114569pt;}
.y4b{bottom:768.114584pt;}
.y22{bottom:782.635416pt;}
.y4a{bottom:784.916657pt;}
.y3{bottom:799.447917pt;}
.y49{bottom:801.713537pt;}
.y48{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y84{bottom:866.427068pt;}
.y47{bottom:866.427084pt;}
.ha{height:24.932359pt;}
.h11{height:28.438367pt;}
.h9{height:28.593750pt;}
.h6{height:30.024834pt;}
.h10{height:31.659632pt;}
.h16{height:31.659695pt;}
.h1{height:33.358212pt;}
.h15{height:35.859375pt;}
.h26{height:36.031665pt;}
.h5{height:38.126163pt;}
.h1d{height:40.747490pt;}
.h1f{height:40.747544pt;}
.h23{height:40.747547pt;}
.h24{height:40.747560pt;}
.h22{height:40.747570pt;}
.h1e{height:40.881088pt;}
.h8{height:41.596640pt;}
.h14{height:42.711321pt;}
.h2{height:42.890625pt;}
.hc{height:42.890678pt;}
.he{height:42.890684pt;}
.hd{height:42.890705pt;}
.h13{height:42.890721pt;}
.h1b{height:42.890742pt;}
.h1c{height:42.890758pt;}
.h1a{height:42.890828pt;}
.hf{height:43.031250pt;}
.h7{height:46.616020pt;}
.h4{height:60.962105pt;}
.h3{height:62.595730pt;}
.h25{height:391.369333pt;}
.h21{height:734.161333pt;}
.hb{height:743.640000pt;}
.h12{height:745.677333pt;}
.h17{height:746.666667pt;}
.h18{height:748.713333pt;}
.h20{height:750.120000pt;}
.h19{height:758.281333pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x18{left:10.297416pt;}
.x12{left:20.000541pt;}
.xe{left:25.667208pt;}
.xf{left:26.667207pt;}
.x10{left:28.667212pt;}
.x11{left:29.667209pt;}
.x19{left:40.000541pt;}
.xd{left:60.000541pt;}
.x3{left:69.921875pt;}
.x7{left:76.921875pt;}
.x16{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.xa{left:89.921875pt;}
.xb{left:95.588541pt;}
.x14{left:96.921875pt;}
.x17{left:109.921874pt;}
.x9{left:115.812500pt;}
.x8{left:122.921875pt;}
.x1{left:124.718749pt;}
.xc{left:129.921876pt;}
.x6{left:138.921875pt;}
.x15{left:142.921875pt;}
.x2{left:246.812500pt;}
.x1b{left:301.921875pt;}
.x1a{left:413.921875pt;}
.x13{left:512.703125pt;}
}




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