
    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_524b9570c81ee26048a79cbe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_78ec42421eba97f71bfad4a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_9332ce96d32c561c44734834.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_64def8160183783293afb4d1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_c9dc2c16333cbbf1116188fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_da499426f170ebac787d807c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_c655788af93a8c543ce96dab.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_f6e0fbd31336bab014e3b053.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_f8e03529637efec054b9702e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_52dae71356bb91e1af1923a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_e3efbda2f0249490a03c3ef6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_be6710acd5ecee5ce3fbf1c3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f469aaef9af80a84c8e7197e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_dfc5e69854f7eb98e859079e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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:fff;src:url('chunks/assets/font_c90db4190736facaf93f4b79.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;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:ff10;src:url('chunks/assets/font_7809e00a12580cabccf4512b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;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:ff11;src:url('chunks/assets/font_c3140519610e33844aed886b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_cc0a92c7177ad2f2aebcaffc.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.311035;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:ff13;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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:ff14;src:url('chunks/assets/font_b80bc6e7d9a5d641f9d3cb86.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.402354;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:ff15;src:url('chunks/assets/font_2c36efb272e42c4cae85b893.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284180;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);}
.v4{vertical-align:-70.740000px;}
.v3{vertical-align:-69.120000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-4.680000px;}
.lsb{letter-spacing:-3.960000px;}
.lsf{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.127200px;}
.ls19{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.087600px;}
.ls5{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.540000px;}
.ls10{letter-spacing:0.612000px;}
.ls0{letter-spacing:0.756000px;}
.ls4{letter-spacing:0.786240px;}
.ls1c{letter-spacing:0.900000px;}
.ls1b{letter-spacing:15.786720px;}
.ls11{letter-spacing:45.306720px;}
.lsd{letter-spacing:63.450720px;}
.ls17{letter-spacing:422.220000px;}
.ls18{letter-spacing:462.540000px;}
.ls12{letter-spacing:571.980000px;}
.ls14{letter-spacing:593.580000px;}
.ls1a{letter-spacing:1245.360000px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.626360px;}
.ws1{word-spacing:-16.493760px;}
.wsc{word-spacing:-15.552000px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.wse{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.505760px;}
.ws8{word-spacing:-10.980000px;}
.ws7{word-spacing:-10.260000px;}
.wsd{word-spacing:-9.720000px;}
.ws2{word-spacing:-8.786880px;}
.ws3{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._e{margin-left:-5.762880px;}
._4{margin-left:-4.422000px;}
._2{margin-left:-3.258480px;}
._3{margin-left:-2.220720px;}
._0{margin-left:-1.122000px;}
._1{width:1.284000px;}
._6{width:3.246240px;}
._c{width:4.362480px;}
._5{width:5.731440px;}
._7{width:7.337520px;}
._8{width:8.827920px;}
._f{width:10.383600px;}
._13{width:11.759280px;}
._12{width:12.848400px;}
._18{width:13.916880px;}
._10{width:16.275840px;}
._d{width:17.399760px;}
._9{width:19.541520px;}
._11{width:20.702880px;}
._17{width:22.390560px;}
._16{width:23.605200px;}
._19{width:24.766320px;}
._1a{width:25.788240px;}
._b{width:26.869200px;}
._a{width:27.907920px;}
._14{width:30.238560px;}
._15{width:31.348080px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ybd{bottom:3.420000px;}
.y4f{bottom:3.600000px;}
.y3{bottom:3.780000px;}
.y55{bottom:4.140000px;}
.y18{bottom:4.860000px;}
.ybb{bottom:9.540000px;}
.ye{bottom:11.340000px;}
.yeb{bottom:11.880000px;}
.yfe{bottom:12.060000px;}
.yf2{bottom:12.240000px;}
.y108{bottom:12.270000px;}
.y104{bottom:12.414000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:14.040000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.ye8{bottom:20.520000px;}
.yfb{bottom:20.700000px;}
.y4e{bottom:20.880000px;}
.y107{bottom:20.910000px;}
.y103{bottom:21.054000px;}
.yed{bottom:21.060000px;}
.yee{bottom:21.090000px;}
.y54{bottom:22.500000px;}
.y52{bottom:28.974000px;}
.yea{bottom:29.160000px;}
.yfd{bottom:29.340000px;}
.y17{bottom:29.565000px;}
.yb{bottom:30.420000px;}
.y5{bottom:31.500000px;}
.ye9{bottom:37.800000px;}
.yfc{bottom:37.980000px;}
.y4d{bottom:38.160000px;}
.y53{bottom:40.854000px;}
.y51{bottom:43.734000px;}
.y16{bottom:45.945000px;}
.ya{bottom:46.800000px;}
.y1{bottom:54.000000px;}
.y4c{bottom:55.440000px;}
.y15{bottom:61.785000px;}
.y14{bottom:72.225000px;}
.y4b{bottom:72.720000px;}
.y9{bottom:73.440000px;}
.y4a{bottom:89.820000px;}
.y13{bottom:90.585000px;}
.y8{bottom:93.270000px;}
.y49{bottom:107.100000px;}
.y56{bottom:107.676000px;}
.yd2{bottom:109.116000px;}
.y12{bottom:109.125000px;}
.y7{bottom:111.450000px;}
.y93{bottom:112.176000px;}
.y14b{bottom:118.656000px;}
.y50{bottom:121.176000px;}
.yd1{bottom:123.156000px;}
.y105{bottom:123.876000px;}
.y48{bottom:124.380000px;}
.y13d{bottom:129.816000px;}
.y92{bottom:130.536000px;}
.y11{bottom:134.865000px;}
.y14a{bottom:135.936000px;}
.y47{bottom:141.660000px;}
.y102{bottom:141.876000px;}
.y13c{bottom:147.096000px;}
.y91{bottom:148.896000px;}
.y149{bottom:153.030000px;}
.y46{bottom:158.940000px;}
.y10{bottom:159.345000px;}
.y13b{bottom:164.370000px;}
.y90{bottom:166.710000px;}
.y148{bottom:170.310000px;}
.y1b{bottom:176.250000px;}
.y45{bottom:176.265000px;}
.y101{bottom:177.150000px;}
.y13a{bottom:181.650000px;}
.y8f{bottom:183.990000px;}
.y147{bottom:187.590000px;}
.y44{bottom:193.365000px;}
.y100{bottom:195.150000px;}
.y139{bottom:198.930000px;}
.y8e{bottom:201.630000px;}
.y146{bottom:204.870000px;}
.y43{bottom:210.645000px;}
.y138{bottom:216.030000px;}
.y8d{bottom:219.990000px;}
.y145{bottom:222.150000px;}
.y42{bottom:227.925000px;}
.yff{bottom:230.430000px;}
.y137{bottom:233.310000px;}
.yc9{bottom:234.750000px;}
.y8c{bottom:237.270000px;}
.y144{bottom:239.430000px;}
.y41{bottom:245.205000px;}
.y136{bottom:250.590000px;}
.yc8{bottom:252.030000px;}
.y8b{bottom:255.450000px;}
.y143{bottom:256.530000px;}
.y40{bottom:262.485000px;}
.yfa{bottom:265.530000px;}
.y135{bottom:267.870000px;}
.yc7{bottom:269.310000px;}
.y8a{bottom:273.450000px;}
.y142{bottom:273.810000px;}
.y3f{bottom:279.765000px;}
.y134{bottom:285.150000px;}
.yc6{bottom:286.590000px;}
.y89{bottom:291.090000px;}
.y3e{bottom:296.865000px;}
.yc5{bottom:300.810000px;}
.y133{bottom:302.430000px;}
.y88{bottom:308.370000px;}
.y3d{bottom:314.145000px;}
.yc4{bottom:318.810000px;}
.y132{bottom:319.530000px;}
.y87{bottom:325.650000px;}
.y3c{bottom:331.425000px;}
.yc3{bottom:336.855000px;}
.yf9{bottom:339.195000px;}
.y86{bottom:342.975000px;}
.y3b{bottom:348.705000px;}
.yf8{bottom:353.415000px;}
.y131{bottom:354.135000px;}
.yc2{bottom:354.855000px;}
.y85{bottom:359.715000px;}
.y141{bottom:360.075000px;}
.y3a{bottom:365.985000px;}
.yf7{bottom:371.415000px;}
.y2a{bottom:371.745000px;}
.yc1{bottom:372.855000px;}
.y84{bottom:377.355000px;}
.y39{bottom:383.085000px;}
.y29{bottom:387.225000px;}
.y130{bottom:388.695000px;}
.yc0{bottom:390.855000px;}
.y83{bottom:394.635000px;}
.y38{bottom:400.365000px;}
.y28{bottom:405.225000px;}
.y12f{bottom:405.975000px;}
.yf6{bottom:406.695000px;}
.ybf{bottom:408.855000px;}
.y82{bottom:411.915000px;}
.y37{bottom:417.645000px;}
.y27{bottom:422.505000px;}
.y12e{bottom:423.075000px;}
.yf5{bottom:424.695000px;}
.ybe{bottom:426.855000px;}
.y81{bottom:429.195000px;}
.y36{bottom:434.955000px;}
.y26{bottom:439.815000px;}
.y12d{bottom:440.355000px;}
.yf4{bottom:442.695000px;}
.ybc{bottom:444.855000px;}
.y80{bottom:445.935000px;}
.y140{bottom:446.295000px;}
.y35{bottom:452.235000px;}
.y25{bottom:457.095000px;}
.y12c{bottom:457.635000px;}
.yf3{bottom:460.695000px;}
.yba{bottom:462.855000px;}
.y7f{bottom:463.215000px;}
.y13f{bottom:463.575000px;}
.y34{bottom:469.515000px;}
.y24{bottom:474.555000px;}
.y12b{bottom:474.915000px;}
.yf1{bottom:478.695000px;}
.y7e{bottom:480.855000px;}
.y33{bottom:486.615000px;}
.y23{bottom:492.015000px;}
.y12a{bottom:492.195000px;}
.y7d{bottom:498.135000px;}
.y32{bottom:503.895000px;}
.y22{bottom:509.295000px;}
.yf0{bottom:513.795000px;}
.yb9{bottom:514.335000px;}
.y7c{bottom:515.415000px;}
.y31{bottom:521.175000px;}
.y129{bottom:526.575000px;}
.y21{bottom:526.755000px;}
.yb8{bottom:531.615000px;}
.y7b{bottom:532.695000px;}
.y30{bottom:538.455000px;}
.y128{bottom:543.855000px;}
.y20{bottom:544.035000px;}
.yb7{bottom:548.715000px;}
.yef{bottom:549.075000px;}
.y7a{bottom:549.795000px;}
.y2f{bottom:555.735000px;}
.y127{bottom:561.135000px;}
.y1f{bottom:561.495000px;}
.yb6{bottom:565.635000px;}
.y79{bottom:567.075000px;}
.y2e{bottom:573.015000px;}
.y126{bottom:578.415000px;}
.y1e{bottom:581.835000px;}
.yb5{bottom:582.915000px;}
.yd0{bottom:583.635000px;}
.y78{bottom:584.355000px;}
.y2d{bottom:590.115000px;}
.y125{bottom:595.695000px;}
.yb4{bottom:600.555000px;}
.ycf{bottom:600.915000px;}
.y77{bottom:601.635000px;}
.y2c{bottom:607.395000px;}
.y1d{bottom:609.375000px;}
.y124{bottom:612.825000px;}
.yb3{bottom:617.865000px;}
.yce{bottom:618.045000px;}
.y76{bottom:618.945000px;}
.yec{bottom:619.665000px;}
.y2b{bottom:624.675000px;}
.y1c{bottom:626.835000px;}
.y123{bottom:630.105000px;}
.yb2{bottom:635.145000px;}
.ycd{bottom:635.325000px;}
.y75{bottom:636.225000px;}
.y122{bottom:647.385000px;}
.yb1{bottom:651.885000px;}
.ycc{bottom:652.245000px;}
.y74{bottom:653.325000px;}
.ye7{bottom:654.945000px;}
.y121{bottom:664.665000px;}
.yb0{bottom:669.165000px;}
.ycb{bottom:669.885000px;}
.y73{bottom:670.605000px;}
.y120{bottom:681.945000px;}
.yca{bottom:683.385000px;}
.yaf{bottom:686.805000px;}
.y72{bottom:687.885000px;}
.y11f{bottom:699.225000px;}
.yae{bottom:704.085000px;}
.y71{bottom:705.165000px;}
.y11e{bottom:716.325000px;}
.yad{bottom:721.365000px;}
.y70{bottom:722.445000px;}
.ye6{bottom:728.025000px;}
.y11d{bottom:733.605000px;}
.yac{bottom:738.645000px;}
.y6f{bottom:739.725000px;}
.ye5{bottom:745.305000px;}
.y11c{bottom:750.885000px;}
.yab{bottom:755.745000px;}
.y6e{bottom:756.825000px;}
.ye4{bottom:762.945000px;}
.y11b{bottom:768.165000px;}
.yaa{bottom:773.025000px;}
.y6d{bottom:774.105000px;}
.ye3{bottom:780.225000px;}
.y11a{bottom:785.445000px;}
.ya9{bottom:790.305000px;}
.y6c{bottom:791.385000px;}
.ye2{bottom:797.325000px;}
.y119{bottom:802.545000px;}
.ya8{bottom:807.585000px;}
.y6b{bottom:808.665000px;}
.ye1{bottom:811.545000px;}
.y19{bottom:814.425000px;}
.y118{bottom:819.465000px;}
.ya7{bottom:824.865000px;}
.y6a{bottom:825.945000px;}
.ye0{bottom:829.545000px;}
.y117{bottom:837.105000px;}
.ya6{bottom:841.965000px;}
.y69{bottom:843.045000px;}
.yf{bottom:843.945000px;}
.ydf{bottom:847.545000px;}
.y116{bottom:854.385000px;}
.ya5{bottom:859.245000px;}
.y68{bottom:860.325000px;}
.yde{bottom:865.545000px;}
.y115{bottom:871.710000px;}
.ya4{bottom:876.570000px;}
.y67{bottom:877.650000px;}
.ydd{bottom:883.590000px;}
.y114{bottom:888.990000px;}
.ya3{bottom:893.850000px;}
.y66{bottom:894.930000px;}
.ydc{bottom:901.590000px;}
.y113{bottom:906.090000px;}
.ya2{bottom:911.130000px;}
.y65{bottom:912.210000px;}
.ydb{bottom:919.590000px;}
.y112{bottom:923.370000px;}
.ya1{bottom:928.410000px;}
.y64{bottom:929.490000px;}
.yda{bottom:937.590000px;}
.y111{bottom:940.650000px;}
.ya0{bottom:945.510000px;}
.y63{bottom:946.590000px;}
.yd9{bottom:955.590000px;}
.y110{bottom:957.930000px;}
.y9f{bottom:962.790000px;}
.y62{bottom:963.870000px;}
.yd8{bottom:973.590000px;}
.y10f{bottom:975.210000px;}
.y9e{bottom:980.070000px;}
.y61{bottom:981.150000px;}
.y10e{bottom:989.430000px;}
.yd7{bottom:991.590000px;}
.y9d{bottom:997.350000px;}
.y60{bottom:998.430000px;}
.y10d{bottom:1007.430000px;}
.yd6{bottom:1009.590000px;}
.y9c{bottom:1014.630000px;}
.y5f{bottom:1015.710000px;}
.yd{bottom:1018.590000px;}
.y10c{bottom:1025.430000px;}
.yd5{bottom:1027.590000px;}
.y9b{bottom:1031.910000px;}
.y5e{bottom:1032.990000px;}
.y10b{bottom:1043.430000px;}
.y6{bottom:1045.590000px;}
.y9a{bottom:1049.010000px;}
.y5d{bottom:1050.090000px;}
.y99{bottom:1066.290000px;}
.y5c{bottom:1067.370000px;}
.y10a{bottom:1078.710000px;}
.y98{bottom:1083.570000px;}
.y5b{bottom:1084.650000px;}
.y97{bottom:1100.850000px;}
.y13e{bottom:1101.570000px;}
.y5a{bottom:1101.930000px;}
.y109{bottom:1113.990000px;}
.y96{bottom:1117.770000px;}
.y59{bottom:1119.210000px;}
.y106{bottom:1131.990000px;}
.y95{bottom:1135.050000px;}
.yd4{bottom:1136.130000px;}
.y58{bottom:1136.490000px;}
.y94{bottom:1152.540000px;}
.y57{bottom:1153.260000px;}
.yd3{bottom:1153.620000px;}
.h29{height:17.100000px;}
.h23{height:17.280000px;}
.h24{height:17.316000px;}
.hb{height:26.640000px;}
.h12{height:28.968750px;}
.h13{height:29.520000px;}
.h22{height:29.700000px;}
.h2{height:32.976000px;}
.h28{height:34.380000px;}
.h2b{height:34.416000px;}
.h26{height:34.560000px;}
.h27{height:34.596000px;}
.h11{height:35.806641px;}
.h8{height:36.180000px;}
.h1a{height:38.818125px;}
.h1b{height:43.215117px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h1e{height:48.088125px;}
.h25{height:51.660000px;}
.h2a{height:51.840000px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h1d{height:55.080000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.h19{height:58.621992px;}
.h1c{height:58.651172px;}
.h21{height:59.038594px;}
.hf{height:59.439023px;}
.h1f{height:60.226875px;}
.h10{height:61.189805px;}
.h20{height:61.423863px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:174.630000px;}
.h15{height:638.175000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.wf{width:85.716000px;}
.w10{width:94.680000px;}
.w12{width:116.856000px;}
.w13{width:117.900000px;}
.we{width:146.016000px;}
.w5{width:151.950000px;}
.w11{width:164.910000px;}
.wd{width:181.830000px;}
.wc{width:182.010000px;}
.w8{width:216.075000px;}
.wb{width:242.670000px;}
.wa{width:242.895000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x12{left:12.600000px;}
.xb{left:39.096000px;}
.xc{left:52.596000px;}
.xf{left:63.036000px;}
.xe{left:74.010000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x13{left:107.855987px;}
.xd{left:111.630000px;}
.x10{left:215.175000px;}
.x1d{left:228.450000px;}
.x5{left:232.950000px;}
.x1a{left:264.450000px;}
.x8{left:272.235000px;}
.x19{left:277.994987px;}
.x17{left:285.554987px;}
.x11{left:297.075000px;}
.x1e{left:314.895000px;}
.x14{left:325.335000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x1f{left:410.295000px;}
.x9{left:439.500000px;}
.x1b{left:447.015000px;}
.x15{left:568.725000px;}
.x20{left:575.925000px;}
.x1c{left:629.565000px;}
.x21{left:693.510000px;}
.x3{left:739.050000px;}
.x16{left:760.469987px;}
.x18{left:762.629987px;}
@media print{
.v4{vertical-align:-62.880000pt;}
.v3{vertical-align:-61.440000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-4.160000pt;}
.lsb{letter-spacing:-3.520000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.113067pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.077867pt;}
.ls5{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.544000pt;}
.ls0{letter-spacing:0.672000pt;}
.ls4{letter-spacing:0.698880pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls1b{letter-spacing:14.032640pt;}
.ls11{letter-spacing:40.272640pt;}
.lsd{letter-spacing:56.400640pt;}
.ls17{letter-spacing:375.306667pt;}
.ls18{letter-spacing:411.146667pt;}
.ls12{letter-spacing:508.426667pt;}
.ls14{letter-spacing:527.626667pt;}
.ls1a{letter-spacing:1106.986667pt;}
.wsb{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.778987pt;}
.ws1{word-spacing:-14.661120pt;}
.wsc{word-spacing:-13.824000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.wse{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws8{word-spacing:-9.760000pt;}
.ws7{word-spacing:-9.120000pt;}
.wsd{word-spacing:-8.640000pt;}
.ws2{word-spacing:-7.810560pt;}
.ws3{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._e{margin-left:-5.122560pt;}
._4{margin-left:-3.930667pt;}
._2{margin-left:-2.896427pt;}
._3{margin-left:-1.973973pt;}
._0{margin-left:-0.997333pt;}
._1{width:1.141333pt;}
._6{width:2.885547pt;}
._c{width:3.877760pt;}
._5{width:5.094613pt;}
._7{width:6.522240pt;}
._8{width:7.847040pt;}
._f{width:9.229867pt;}
._13{width:10.452693pt;}
._12{width:11.420800pt;}
._18{width:12.370560pt;}
._10{width:14.467413pt;}
._d{width:15.466453pt;}
._9{width:17.370240pt;}
._11{width:18.402560pt;}
._17{width:19.902720pt;}
._16{width:20.982400pt;}
._19{width:22.014507pt;}
._1a{width:22.922880pt;}
._b{width:23.883733pt;}
._a{width:24.807040pt;}
._14{width:26.878720pt;}
._15{width:27.864960pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:3.040000pt;}
.y4f{bottom:3.200000pt;}
.y3{bottom:3.360000pt;}
.y55{bottom:3.680000pt;}
.y18{bottom:4.320000pt;}
.ybb{bottom:8.480000pt;}
.ye{bottom:10.080000pt;}
.yeb{bottom:10.560000pt;}
.yfe{bottom:10.720000pt;}
.yf2{bottom:10.880000pt;}
.y108{bottom:10.906667pt;}
.y104{bottom:11.034667pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.480000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.ye8{bottom:18.240000pt;}
.yfb{bottom:18.400000pt;}
.y4e{bottom:18.560000pt;}
.y107{bottom:18.586667pt;}
.y103{bottom:18.714667pt;}
.yed{bottom:18.720000pt;}
.yee{bottom:18.746667pt;}
.y54{bottom:20.000000pt;}
.y52{bottom:25.754667pt;}
.yea{bottom:25.920000pt;}
.yfd{bottom:26.080000pt;}
.y17{bottom:26.280000pt;}
.yb{bottom:27.040000pt;}
.y5{bottom:28.000000pt;}
.ye9{bottom:33.600000pt;}
.yfc{bottom:33.760000pt;}
.y4d{bottom:33.920000pt;}
.y53{bottom:36.314667pt;}
.y51{bottom:38.874667pt;}
.y16{bottom:40.840000pt;}
.ya{bottom:41.600000pt;}
.y1{bottom:48.000000pt;}
.y4c{bottom:49.280000pt;}
.y15{bottom:54.920000pt;}
.y14{bottom:64.200000pt;}
.y4b{bottom:64.640000pt;}
.y9{bottom:65.280000pt;}
.y4a{bottom:79.840000pt;}
.y13{bottom:80.520000pt;}
.y8{bottom:82.906667pt;}
.y49{bottom:95.200000pt;}
.y56{bottom:95.712000pt;}
.yd2{bottom:96.992000pt;}
.y12{bottom:97.000000pt;}
.y7{bottom:99.066667pt;}
.y93{bottom:99.712000pt;}
.y14b{bottom:105.472000pt;}
.y50{bottom:107.712000pt;}
.yd1{bottom:109.472000pt;}
.y105{bottom:110.112000pt;}
.y48{bottom:110.560000pt;}
.y13d{bottom:115.392000pt;}
.y92{bottom:116.032000pt;}
.y11{bottom:119.880000pt;}
.y14a{bottom:120.832000pt;}
.y47{bottom:125.920000pt;}
.y102{bottom:126.112000pt;}
.y13c{bottom:130.752000pt;}
.y91{bottom:132.352000pt;}
.y149{bottom:136.026667pt;}
.y46{bottom:141.280000pt;}
.y10{bottom:141.640000pt;}
.y13b{bottom:146.106667pt;}
.y90{bottom:148.186667pt;}
.y148{bottom:151.386667pt;}
.y1b{bottom:156.666667pt;}
.y45{bottom:156.680000pt;}
.y101{bottom:157.466667pt;}
.y13a{bottom:161.466667pt;}
.y8f{bottom:163.546667pt;}
.y147{bottom:166.746667pt;}
.y44{bottom:171.880000pt;}
.y100{bottom:173.466667pt;}
.y139{bottom:176.826667pt;}
.y8e{bottom:179.226667pt;}
.y146{bottom:182.106667pt;}
.y43{bottom:187.240000pt;}
.y138{bottom:192.026667pt;}
.y8d{bottom:195.546667pt;}
.y145{bottom:197.466667pt;}
.y42{bottom:202.600000pt;}
.yff{bottom:204.826667pt;}
.y137{bottom:207.386667pt;}
.yc9{bottom:208.666667pt;}
.y8c{bottom:210.906667pt;}
.y144{bottom:212.826667pt;}
.y41{bottom:217.960000pt;}
.y136{bottom:222.746667pt;}
.yc8{bottom:224.026667pt;}
.y8b{bottom:227.066667pt;}
.y143{bottom:228.026667pt;}
.y40{bottom:233.320000pt;}
.yfa{bottom:236.026667pt;}
.y135{bottom:238.106667pt;}
.yc7{bottom:239.386667pt;}
.y8a{bottom:243.066667pt;}
.y142{bottom:243.386667pt;}
.y3f{bottom:248.680000pt;}
.y134{bottom:253.466667pt;}
.yc6{bottom:254.746667pt;}
.y89{bottom:258.746667pt;}
.y3e{bottom:263.880000pt;}
.yc5{bottom:267.386667pt;}
.y133{bottom:268.826667pt;}
.y88{bottom:274.106667pt;}
.y3d{bottom:279.240000pt;}
.yc4{bottom:283.386667pt;}
.y132{bottom:284.026667pt;}
.y87{bottom:289.466667pt;}
.y3c{bottom:294.600000pt;}
.yc3{bottom:299.426667pt;}
.yf9{bottom:301.506667pt;}
.y86{bottom:304.866667pt;}
.y3b{bottom:309.960000pt;}
.yf8{bottom:314.146667pt;}
.y131{bottom:314.786667pt;}
.yc2{bottom:315.426667pt;}
.y85{bottom:319.746667pt;}
.y141{bottom:320.066667pt;}
.y3a{bottom:325.320000pt;}
.yf7{bottom:330.146667pt;}
.y2a{bottom:330.440000pt;}
.yc1{bottom:331.426667pt;}
.y84{bottom:335.426667pt;}
.y39{bottom:340.520000pt;}
.y29{bottom:344.200000pt;}
.y130{bottom:345.506667pt;}
.yc0{bottom:347.426667pt;}
.y83{bottom:350.786667pt;}
.y38{bottom:355.880000pt;}
.y28{bottom:360.200000pt;}
.y12f{bottom:360.866667pt;}
.yf6{bottom:361.506667pt;}
.ybf{bottom:363.426667pt;}
.y82{bottom:366.146667pt;}
.y37{bottom:371.240000pt;}
.y27{bottom:375.560000pt;}
.y12e{bottom:376.066667pt;}
.yf5{bottom:377.506667pt;}
.ybe{bottom:379.426667pt;}
.y81{bottom:381.506667pt;}
.y36{bottom:386.626667pt;}
.y26{bottom:390.946667pt;}
.y12d{bottom:391.426667pt;}
.yf4{bottom:393.506667pt;}
.ybc{bottom:395.426667pt;}
.y80{bottom:396.386667pt;}
.y140{bottom:396.706667pt;}
.y35{bottom:401.986667pt;}
.y25{bottom:406.306667pt;}
.y12c{bottom:406.786667pt;}
.yf3{bottom:409.506667pt;}
.yba{bottom:411.426667pt;}
.y7f{bottom:411.746667pt;}
.y13f{bottom:412.066667pt;}
.y34{bottom:417.346667pt;}
.y24{bottom:421.826667pt;}
.y12b{bottom:422.146667pt;}
.yf1{bottom:425.506667pt;}
.y7e{bottom:427.426667pt;}
.y33{bottom:432.546667pt;}
.y23{bottom:437.346667pt;}
.y12a{bottom:437.506667pt;}
.y7d{bottom:442.786667pt;}
.y32{bottom:447.906667pt;}
.y22{bottom:452.706667pt;}
.yf0{bottom:456.706667pt;}
.yb9{bottom:457.186667pt;}
.y7c{bottom:458.146667pt;}
.y31{bottom:463.266667pt;}
.y129{bottom:468.066667pt;}
.y21{bottom:468.226667pt;}
.yb8{bottom:472.546667pt;}
.y7b{bottom:473.506667pt;}
.y30{bottom:478.626667pt;}
.y128{bottom:483.426667pt;}
.y20{bottom:483.586667pt;}
.yb7{bottom:487.746667pt;}
.yef{bottom:488.066667pt;}
.y7a{bottom:488.706667pt;}
.y2f{bottom:493.986667pt;}
.y127{bottom:498.786667pt;}
.y1f{bottom:499.106667pt;}
.yb6{bottom:502.786667pt;}
.y79{bottom:504.066667pt;}
.y2e{bottom:509.346667pt;}
.y126{bottom:514.146667pt;}
.y1e{bottom:517.186667pt;}
.yb5{bottom:518.146667pt;}
.yd0{bottom:518.786667pt;}
.y78{bottom:519.426667pt;}
.y2d{bottom:524.546667pt;}
.y125{bottom:529.506667pt;}
.yb4{bottom:533.826667pt;}
.ycf{bottom:534.146667pt;}
.y77{bottom:534.786667pt;}
.y2c{bottom:539.906667pt;}
.y1d{bottom:541.666667pt;}
.y124{bottom:544.733333pt;}
.yb3{bottom:549.213333pt;}
.yce{bottom:549.373333pt;}
.y76{bottom:550.173333pt;}
.yec{bottom:550.813333pt;}
.y2b{bottom:555.266667pt;}
.y1c{bottom:557.186667pt;}
.y123{bottom:560.093333pt;}
.yb2{bottom:564.573333pt;}
.ycd{bottom:564.733333pt;}
.y75{bottom:565.533333pt;}
.y122{bottom:575.453333pt;}
.yb1{bottom:579.453333pt;}
.ycc{bottom:579.773333pt;}
.y74{bottom:580.733333pt;}
.ye7{bottom:582.173333pt;}
.y121{bottom:590.813333pt;}
.yb0{bottom:594.813333pt;}
.ycb{bottom:595.453333pt;}
.y73{bottom:596.093333pt;}
.y120{bottom:606.173333pt;}
.yca{bottom:607.453333pt;}
.yaf{bottom:610.493333pt;}
.y72{bottom:611.453333pt;}
.y11f{bottom:621.533333pt;}
.yae{bottom:625.853333pt;}
.y71{bottom:626.813333pt;}
.y11e{bottom:636.733333pt;}
.yad{bottom:641.213333pt;}
.y70{bottom:642.173333pt;}
.ye6{bottom:647.133333pt;}
.y11d{bottom:652.093333pt;}
.yac{bottom:656.573333pt;}
.y6f{bottom:657.533333pt;}
.ye5{bottom:662.493333pt;}
.y11c{bottom:667.453333pt;}
.yab{bottom:671.773333pt;}
.y6e{bottom:672.733333pt;}
.ye4{bottom:678.173333pt;}
.y11b{bottom:682.813333pt;}
.yaa{bottom:687.133333pt;}
.y6d{bottom:688.093333pt;}
.ye3{bottom:693.533333pt;}
.y11a{bottom:698.173333pt;}
.ya9{bottom:702.493333pt;}
.y6c{bottom:703.453333pt;}
.ye2{bottom:708.733333pt;}
.y119{bottom:713.373333pt;}
.ya8{bottom:717.853333pt;}
.y6b{bottom:718.813333pt;}
.ye1{bottom:721.373333pt;}
.y19{bottom:723.933333pt;}
.y118{bottom:728.413333pt;}
.ya7{bottom:733.213333pt;}
.y6a{bottom:734.173333pt;}
.ye0{bottom:737.373333pt;}
.y117{bottom:744.093333pt;}
.ya6{bottom:748.413333pt;}
.y69{bottom:749.373333pt;}
.yf{bottom:750.173333pt;}
.ydf{bottom:753.373333pt;}
.y116{bottom:759.453333pt;}
.ya5{bottom:763.773333pt;}
.y68{bottom:764.733333pt;}
.yde{bottom:769.373333pt;}
.y115{bottom:774.853333pt;}
.ya4{bottom:779.173333pt;}
.y67{bottom:780.133333pt;}
.ydd{bottom:785.413333pt;}
.y114{bottom:790.213333pt;}
.ya3{bottom:794.533333pt;}
.y66{bottom:795.493333pt;}
.ydc{bottom:801.413333pt;}
.y113{bottom:805.413333pt;}
.ya2{bottom:809.893333pt;}
.y65{bottom:810.853333pt;}
.ydb{bottom:817.413333pt;}
.y112{bottom:820.773333pt;}
.ya1{bottom:825.253333pt;}
.y64{bottom:826.213333pt;}
.yda{bottom:833.413333pt;}
.y111{bottom:836.133333pt;}
.ya0{bottom:840.453333pt;}
.y63{bottom:841.413333pt;}
.yd9{bottom:849.413333pt;}
.y110{bottom:851.493333pt;}
.y9f{bottom:855.813333pt;}
.y62{bottom:856.773333pt;}
.yd8{bottom:865.413333pt;}
.y10f{bottom:866.853333pt;}
.y9e{bottom:871.173333pt;}
.y61{bottom:872.133333pt;}
.y10e{bottom:879.493333pt;}
.yd7{bottom:881.413333pt;}
.y9d{bottom:886.533333pt;}
.y60{bottom:887.493333pt;}
.y10d{bottom:895.493333pt;}
.yd6{bottom:897.413333pt;}
.y9c{bottom:901.893333pt;}
.y5f{bottom:902.853333pt;}
.yd{bottom:905.413333pt;}
.y10c{bottom:911.493333pt;}
.yd5{bottom:913.413333pt;}
.y9b{bottom:917.253333pt;}
.y5e{bottom:918.213333pt;}
.y10b{bottom:927.493333pt;}
.y6{bottom:929.413333pt;}
.y9a{bottom:932.453333pt;}
.y5d{bottom:933.413333pt;}
.y99{bottom:947.813333pt;}
.y5c{bottom:948.773333pt;}
.y10a{bottom:958.853333pt;}
.y98{bottom:963.173333pt;}
.y5b{bottom:964.133333pt;}
.y97{bottom:978.533333pt;}
.y13e{bottom:979.173333pt;}
.y5a{bottom:979.493333pt;}
.y109{bottom:990.213333pt;}
.y96{bottom:993.573333pt;}
.y59{bottom:994.853333pt;}
.y106{bottom:1006.213333pt;}
.y95{bottom:1008.933333pt;}
.yd4{bottom:1009.893333pt;}
.y58{bottom:1010.213333pt;}
.y94{bottom:1024.480000pt;}
.y57{bottom:1025.120000pt;}
.yd3{bottom:1025.440000pt;}
.h29{height:15.200000pt;}
.h23{height:15.360000pt;}
.h24{height:15.392000pt;}
.hb{height:23.680000pt;}
.h12{height:25.750000pt;}
.h13{height:26.240000pt;}
.h22{height:26.400000pt;}
.h2{height:29.312000pt;}
.h28{height:30.560000pt;}
.h2b{height:30.592000pt;}
.h26{height:30.720000pt;}
.h27{height:30.752000pt;}
.h11{height:31.828125pt;}
.h8{height:32.160000pt;}
.h1a{height:34.505000pt;}
.h1b{height:38.413438pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1e{height:42.745000pt;}
.h25{height:45.920000pt;}
.h2a{height:46.080000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h1d{height:48.960000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.h19{height:52.108438pt;}
.h1c{height:52.134375pt;}
.h21{height:52.478750pt;}
.hf{height:52.834688pt;}
.h1f{height:53.535000pt;}
.h10{height:54.390938pt;}
.h20{height:54.598989pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:155.226667pt;}
.h15{height:567.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.wf{width:76.192000pt;}
.w10{width:84.160000pt;}
.w12{width:103.872000pt;}
.w13{width:104.800000pt;}
.we{width:129.792000pt;}
.w5{width:135.066667pt;}
.w11{width:146.586667pt;}
.wd{width:161.626667pt;}
.wc{width:161.786667pt;}
.w8{width:192.066667pt;}
.wb{width:215.706667pt;}
.wa{width:215.906667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x12{left:11.200000pt;}
.xb{left:34.752000pt;}
.xc{left:46.752000pt;}
.xf{left:56.032000pt;}
.xe{left:65.786667pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x13{left:95.871988pt;}
.xd{left:99.226667pt;}
.x10{left:191.266667pt;}
.x1d{left:203.066667pt;}
.x5{left:207.066667pt;}
.x1a{left:235.066667pt;}
.x8{left:241.986667pt;}
.x19{left:247.106655pt;}
.x17{left:253.826655pt;}
.x11{left:264.066667pt;}
.x1e{left:279.906667pt;}
.x14{left:289.186667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x1f{left:364.706667pt;}
.x9{left:390.666667pt;}
.x1b{left:397.346667pt;}
.x15{left:505.533333pt;}
.x20{left:511.933333pt;}
.x1c{left:559.613333pt;}
.x21{left:616.453333pt;}
.x3{left:656.933333pt;}
.x16{left:675.973322pt;}
.x18{left:677.893322pt;}
}




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