
    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_7a39e39f11667d08574641a3.woff')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_603226b01c64208551fd9315.woff')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_f728b62e47b02d8022653555.woff')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_b13c1068a96fecbe421e4ef1.woff')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_d0c7cbf13512a2d9c24f43b0.woff')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_014c7e9aad8360bf67fa4078.woff')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_e28ea8b608fba66ac762a553.woff')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_5f2d09a0c585ffac71973771.woff')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_4722b28c09e8474c87d2ef73.woff')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_42a995e39605513f6379e1b4.woff')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_a33a236934f4f82c7e192be5.woff')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_8b6e593d098dd27c2b1d0971.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_bd3968f50e76be358f23688d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_521240961f43439b559ef130.woff')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_f65abe976202fc0c33de2e81.woff')format("woff");}.fff{font-family:fff;line-height:1.112305;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_d2654a08432f864685a9b6b5.woff')format("woff");}.ff10{font-family:ff10;line-height:1.112305;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_f5641027d7071b7edaf2e910.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_bd96b6e1c08b65b7dcd2e752.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.739746;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff14{font-family:ff14;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;}
.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);}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsc{letter-spacing:-2.724000px;}
.ls18{letter-spacing:-2.250000px;}
.ls12{letter-spacing:-1.482000px;}
.ls13{letter-spacing:-1.128000px;}
.lsf{letter-spacing:-0.852000px;}
.lsd{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.780000px;}
.lsb{letter-spacing:-0.378000px;}
.lsa{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.090000px;}
.ls8{letter-spacing:0.099000px;}
.ls9{letter-spacing:0.279000px;}
.lse{letter-spacing:0.690000px;}
.ls17{letter-spacing:0.889500px;}
.ls19{letter-spacing:1.026000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.626000px;}
.ls16{letter-spacing:1.740000px;}
.ls2{letter-spacing:1.854000px;}
.ls3{letter-spacing:1.966500px;}
.ls4{letter-spacing:2.026500px;}
.ls6{letter-spacing:2.164500px;}
.ls5{letter-spacing:2.250000px;}
.ls7{letter-spacing:4.779000px;}
.ls1a{letter-spacing:15.387000px;}
.ls11{letter-spacing:46.887000px;}
.ls15{letter-spacing:64.887000px;}
.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;}
}
.ws7{word-spacing:-16.875000px;}
.ws8{word-spacing:-16.789500px;}
.wsc{word-spacing:-16.365000px;}
.ws3{word-spacing:-16.146000px;}
.wse{word-spacing:-15.651000px;}
.ws2{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.ws9{word-spacing:-13.221000px;}
.wsb{word-spacing:-13.143000px;}
.ws1{word-spacing:-12.531000px;}
.wsd{word-spacing:-12.375000px;}
.ws4{word-spacing:-12.369000px;}
.ws0{word-spacing:-11.826000px;}
.ws5{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._6{margin-left:-10.227600px;}
._15{margin-left:-7.624500px;}
._13{margin-left:-6.292200px;}
._7{margin-left:-5.209800px;}
._8{margin-left:-4.046400px;}
._2{margin-left:-2.862000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.168000px;}
._4{width:5.070000px;}
._e{width:6.930000px;}
._9{width:8.697000px;}
._1d{width:9.792000px;}
._5{width:10.914000px;}
._a{width:12.117000px;}
._b{width:13.212000px;}
._c{width:16.308000px;}
._d{width:17.586000px;}
._1c{width:20.299500px;}
._f{width:21.366000px;}
._17{width:22.704000px;}
._16{width:23.760000px;}
._12{width:25.591500px;}
._1b{width:26.608500px;}
._11{width:30.217500px;}
._14{width:34.065000px;}
._10{width:35.766000px;}
._19{width:66.024000px;}
._18{width:70.834500px;}
._1a{width:850.425000px;}
.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:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y53{bottom:3.375000px;}
.ye9{bottom:3.382500px;}
.yd8{bottom:3.390000px;}
.y100{bottom:3.405000px;}
.y4{bottom:3.412500px;}
.yed{bottom:3.420000px;}
.y10e{bottom:4.500000px;}
.y18{bottom:6.750000px;}
.y6{bottom:9.000000px;}
.yf{bottom:11.250000px;}
.yd{bottom:13.530000px;}
.y3{bottom:19.162500px;}
.y10c{bottom:20.265000px;}
.y52{bottom:20.280000px;}
.y109{bottom:21.420000px;}
.y17{bottom:22.500000px;}
.y56{bottom:22.545000px;}
.y55{bottom:25.920000px;}
.yc{bottom:30.405000px;}
.y1{bottom:32.625000px;}
.y5{bottom:33.787500px;}
.y2{bottom:36.037500px;}
.y51{bottom:38.280000px;}
.yb{bottom:46.185000px;}
.y16{bottom:47.280000px;}
.y50{bottom:55.155000px;}
.y15{bottom:61.905000px;}
.y4f{bottom:72.060000px;}
.ya{bottom:73.185000px;}
.y14{bottom:81.075000px;}
.y4e{bottom:90.075000px;}
.yea{bottom:93.450000px;}
.y9{bottom:93.480000px;}
.y9a{bottom:94.575000px;}
.y12d{bottom:101.325000px;}
.y13{bottom:106.950000px;}
.y4d{bottom:106.980000px;}
.y8{bottom:110.355000px;}
.y99{bottom:111.450000px;}
.y12c{bottom:118.237500px;}
.y5a{bottom:122.737500px;}
.y4c{bottom:123.855000px;}
.yd7{bottom:126.112500px;}
.y98{bottom:129.487500px;}
.y12{bottom:132.855000px;}
.y12b{bottom:136.237500px;}
.y59{bottom:139.612500px;}
.y4b{bottom:141.855000px;}
.yd6{bottom:142.987500px;}
.y97{bottom:146.362500px;}
.ye8{bottom:147.487500px;}
.y12a{bottom:153.105000px;}
.y11{bottom:157.605000px;}
.y58{bottom:157.620000px;}
.y4a{bottom:158.760000px;}
.yd5{bottom:161.025000px;}
.y96{bottom:163.275000px;}
.ye7{bottom:165.525000px;}
.y129{bottom:170.025000px;}
.y57{bottom:174.525000px;}
.y49{bottom:175.635000px;}
.yd4{bottom:177.900000px;}
.y95{bottom:181.275000px;}
.ye6{bottom:186.900000px;}
.y54{bottom:188.025000px;}
.y48{bottom:193.680000px;}
.yd3{bottom:194.775000px;}
.y94{bottom:198.150000px;}
.ye5{bottom:203.820000px;}
.y128{bottom:204.945000px;}
.y47{bottom:210.555000px;}
.yd2{bottom:212.820000px;}
.y93{bottom:215.070000px;}
.ye4{bottom:218.445000px;}
.y127{bottom:221.820000px;}
.y1a{bottom:225.195000px;}
.y46{bottom:227.475000px;}
.yd1{bottom:229.695000px;}
.y92{bottom:233.070000px;}
.ye3{bottom:236.445000px;}
.y126{bottom:239.820000px;}
.y45{bottom:245.475000px;}
.yd0{bottom:246.600000px;}
.y91{bottom:249.975000px;}
.y2f{bottom:253.335000px;}
.ye2{bottom:254.475000px;}
.y125{bottom:256.725000px;}
.y44{bottom:262.350000px;}
.ycf{bottom:264.600000px;}
.y90{bottom:266.850000px;}
.y2e{bottom:269.130000px;}
.ye1{bottom:272.475000px;}
.y124{bottom:273.600000px;}
.y43{bottom:279.255000px;}
.yce{bottom:281.475000px;}
.y8f{bottom:284.895000px;}
.y2d{bottom:286.005000px;}
.ye0{bottom:290.505000px;}
.y123{bottom:291.645000px;}
.y42{bottom:297.255000px;}
.ycd{bottom:298.395000px;}
.y8e{bottom:301.770000px;}
.y2c{bottom:302.880000px;}
.ydf{bottom:308.505000px;}
.y122{bottom:308.520000px;}
.y41{bottom:314.175000px;}
.ycc{bottom:316.380000px;}
.y8d{bottom:318.645000px;}
.y2b{bottom:320.925000px;}
.y117{bottom:322.020000px;}
.y121{bottom:325.395000px;}
.yde{bottom:326.550000px;}
.y40{bottom:331.050000px;}
.ycb{bottom:333.300000px;}
.y8c{bottom:336.675000px;}
.y2a{bottom:337.800000px;}
.y116{bottom:338.925000px;}
.y120{bottom:343.425000px;}
.ydd{bottom:344.550000px;}
.y3f{bottom:349.050000px;}
.yca{bottom:350.175000px;}
.y8b{bottom:353.550000px;}
.y29{bottom:355.830000px;}
.y11f{bottom:360.300000px;}
.ydc{bottom:362.550000px;}
.y3e{bottom:365.955000px;}
.yc9{bottom:368.205000px;}
.y8a{bottom:370.455000px;}
.y115{bottom:371.580000px;}
.y28{bottom:372.705000px;}
.y11e{bottom:373.830000px;}
.ydb{bottom:380.580000px;}
.y3d{bottom:382.830000px;}
.yc8{bottom:385.080000px;}
.y89{bottom:388.455000px;}
.y114{bottom:389.580000px;}
.y27{bottom:390.705000px;}
.yda{bottom:398.580000px;}
.y3c{bottom:400.875000px;}
.yc7{bottom:401.955000px;}
.y88{bottom:405.330000px;}
.y113{bottom:407.580000px;}
.y26{bottom:407.625000px;}
.yd9{bottom:416.625000px;}
.y3b{bottom:417.750000px;}
.yc6{bottom:420.000000px;}
.y87{bottom:422.250000px;}
.y25{bottom:425.625000px;}
.y3a{bottom:434.625000px;}
.yc5{bottom:436.875000px;}
.y86{bottom:440.250000px;}
.y24{bottom:442.530000px;}
.y112{bottom:443.625000px;}
.y39{bottom:452.655000px;}
.yc4{bottom:453.795000px;}
.y85{bottom:457.170000px;}
.y23{bottom:459.405000px;}
.y111{bottom:465.030000px;}
.y38{bottom:469.530000px;}
.yc3{bottom:471.780000px;}
.y84{bottom:474.045000px;}
.y22{bottom:477.450000px;}
.y110{bottom:483.045000px;}
.y37{bottom:486.435000px;}
.yc2{bottom:488.655000px;}
.y83{bottom:492.030000px;}
.y21{bottom:494.325000px;}
.y10f{bottom:496.575000px;}
.y36{bottom:504.450000px;}
.yc1{bottom:505.575000px;}
.y82{bottom:508.950000px;}
.y20{bottom:512.310000px;}
.y10d{bottom:514.575000px;}
.y35{bottom:521.355000px;}
.yc0{bottom:523.575000px;}
.y81{bottom:525.825000px;}
.y1f{bottom:529.230000px;}
.y34{bottom:538.230000px;}
.ybf{bottom:540.495000px;}
.y80{bottom:543.870000px;}
.y1e{bottom:547.230000px;}
.y10b{bottom:550.605000px;}
.y33{bottom:556.230000px;}
.ybe{bottom:557.370000px;}
.y7f{bottom:560.745000px;}
.y1d{bottom:564.135000px;}
.y32{bottom:573.135000px;}
.ybd{bottom:575.355000px;}
.y7e{bottom:577.650000px;}
.y10a{bottom:585.525000px;}
.y31{bottom:590.010000px;}
.y1c{bottom:591.135000px;}
.ybc{bottom:592.275000px;}
.y7d{bottom:595.650000px;}
.y108{bottom:603.525000px;}
.y30{bottom:608.055000px;}
.ybb{bottom:609.150000px;}
.y1b{bottom:610.305000px;}
.y7c{bottom:612.525000px;}
.yba{bottom:627.195000px;}
.y7b{bottom:629.445000px;}
.y107{bottom:642.945000px;}
.yb9{bottom:644.070000px;}
.y7a{bottom:647.445000px;}
.y106{bottom:659.820000px;}
.yb8{bottom:660.975000px;}
.y79{bottom:664.350000px;}
.y105{bottom:674.475000px;}
.yb7{bottom:677.850000px;}
.y78{bottom:681.225000px;}
.y104{bottom:692.475000px;}
.yb6{bottom:695.850000px;}
.y77{bottom:699.225000px;}
.y103{bottom:710.505000px;}
.yb5{bottom:712.770000px;}
.y76{bottom:716.145000px;}
.y102{bottom:728.505000px;}
.yb4{bottom:729.645000px;}
.y75{bottom:733.020000px;}
.y11d{bottom:744.300000px;}
.y101{bottom:746.550000px;}
.yb3{bottom:747.675000px;}
.y74{bottom:751.050000px;}
.y11c{bottom:762.300000px;}
.yb2{bottom:764.550000px;}
.y73{bottom:767.925000px;}
.y11b{bottom:779.175000px;}
.yb1{bottom:781.425000px;}
.yff{bottom:782.550000px;}
.y72{bottom:784.800000px;}
.y11a{bottom:796.080000px;}
.yb0{bottom:799.455000px;}
.yfe{bottom:800.580000px;}
.y71{bottom:802.830000px;}
.y119{bottom:814.080000px;}
.yaf{bottom:816.330000px;}
.yfd{bottom:818.580000px;}
.y70{bottom:819.705000px;}
.y118{bottom:827.625000px;}
.yae{bottom:833.250000px;}
.y6f{bottom:836.625000px;}
.y19{bottom:846.750000px;}
.yad{bottom:851.250000px;}
.y6e{bottom:854.625000px;}
.yac{bottom:868.125000px;}
.y6d{bottom:871.545000px;}
.y10{bottom:876.045000px;}
.yab{bottom:885.045000px;}
.y6c{bottom:888.420000px;}
.yfc{bottom:892.920000px;}
.yaa{bottom:903.045000px;}
.y6b{bottom:906.420000px;}
.yfb{bottom:907.530000px;}
.ya9{bottom:919.950000px;}
.y6a{bottom:923.325000px;}
.yfa{bottom:925.575000px;}
.ya8{bottom:936.825000px;}
.y69{bottom:940.200000px;}
.yf9{bottom:943.575000px;}
.ya7{bottom:954.870000px;}
.y68{bottom:958.245000px;}
.yf8{bottom:961.620000px;}
.ya6{bottom:971.745000px;}
.y67{bottom:975.120000px;}
.yf7{bottom:979.605000px;}
.ya5{bottom:988.620000px;}
.y66{bottom:991.995000px;}
.yf6{bottom:997.650000px;}
.ya4{bottom:1006.650000px;}
.y65{bottom:1010.025000px;}
.yf5{bottom:1015.650000px;}
.ya3{bottom:1023.525000px;}
.y64{bottom:1026.900000px;}
.yf4{bottom:1033.650000px;}
.ya2{bottom:1040.445000px;}
.y63{bottom:1043.820000px;}
.ye{bottom:1048.320000px;}
.yf3{bottom:1051.695000px;}
.ya1{bottom:1058.445000px;}
.y62{bottom:1061.820000px;}
.yf2{bottom:1069.695000px;}
.y7{bottom:1074.195000px;}
.ya0{bottom:1076.445000px;}
.y61{bottom:1078.725000px;}
.yf1{bottom:1087.725000px;}
.y9f{bottom:1093.350000px;}
.y60{bottom:1095.600000px;}
.yf0{bottom:1105.725000px;}
.y9e{bottom:1111.350000px;}
.y5f{bottom:1113.600000px;}
.yef{bottom:1123.755000px;}
.y9d{bottom:1128.255000px;}
.y5e{bottom:1130.505000px;}
.yee{bottom:1141.755000px;}
.y9c{bottom:1146.255000px;}
.y5d{bottom:1147.380000px;}
.yec{bottom:1159.755000px;}
.y9b{bottom:1164.300000px;}
.y5c{bottom:1165.425000px;}
.yeb{bottom:1177.800000px;}
.y5b{bottom:1182.300000px;}
.h1f{height:16.860000px;}
.h1d{height:16.875000px;}
.h1e{height:16.912500px;}
.h22{height:18.000000px;}
.hc{height:25.875000px;}
.h13{height:29.287500px;}
.h12{height:29.953125px;}
.h21{height:33.787500px;}
.h20{height:34.912500px;}
.h9{height:37.125000px;}
.h1b{height:37.162500px;}
.h19{height:39.832031px;}
.h1c{height:41.275635px;}
.h18{height:41.389893px;}
.he{height:43.075195px;}
.h5{height:43.453125px;}
.hb{height:43.875000px;}
.h17{height:47.074219px;}
.h16{height:49.234131px;}
.h2{height:49.575000px;}
.h1a{height:52.444336px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h10{height:58.185791px;}
.h11{height:59.899658px;}
.hf{height:64.237500px;}
.h6{height:69.114990px;}
.h7{height:71.613281px;}
.h14{height:73.722656px;}
.h8{height:121.612500px;}
.hd{height:172.275000px;}
.h15{height:621.555000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.wc{width:70.987500px;}
.w2{width:74.362500px;}
.w12{width:75.450000px;}
.wd{width:92.362500px;}
.w4{width:152.055000px;}
.w16{width:174.600000px;}
.we{width:203.850000px;}
.w15{width:210.645000px;}
.w7{width:223.020000px;}
.w10{width:257.970000px;}
.w11{width:270.345000px;}
.wf{width:285.000000px;}
.w9{width:297.375000px;}
.w14{width:360.450000px;}
.w17{width:386.370000px;}
.w13{width:401.025000px;}
.wa{width:449.445000px;}
.w8{width:524.925000px;}
.wb{width:582.345000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:6.750000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x14{left:12.420000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x4{left:81.112487px;}
.x6{left:97.987500px;}
.x10{left:100.237500px;}
.x11{left:102.487500px;}
.x15{left:108.149987px;}
.x16{left:135.187487px;}
.x1a{left:180.224987px;}
.x2a{left:186.974987px;}
.x1d{left:209.519987px;}
.x12{left:214.012500px;}
.x7{left:225.300000px;}
.x23{left:228.674987px;}
.x20{left:229.799987px;}
.x17{left:236.549987px;}
.x27{left:239.924987px;}
.xf{left:251.167500px;}
.xd{left:257.917500px;}
.x1e{left:278.220000px;}
.xb{left:290.625000px;}
.x13{left:296.250000px;}
.x21{left:344.700000px;}
.x9{left:345.780000px;}
.xa{left:364.950000px;}
.x18{left:371.745000px;}
.xe{left:373.957500px;}
.x22{left:420.150000px;}
.x24{left:434.820000px;}
.x28{left:447.194987px;}
.xc{left:453.945000px;}
.x1f{left:563.220000px;}
.x25{left:646.575000px;}
.x1b{left:656.700000px;}
.x29{left:711.899987px;}
.x26{left:713.024987px;}
.x1c{left:728.820000px;}
.x3{left:746.820000px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsc{letter-spacing:-2.421333pt;}
.ls18{letter-spacing:-2.000000pt;}
.ls12{letter-spacing:-1.317333pt;}
.ls13{letter-spacing:-1.002667pt;}
.lsf{letter-spacing:-0.757333pt;}
.lsd{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.693333pt;}
.lsb{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.080000pt;}
.ls8{letter-spacing:0.088000pt;}
.ls9{letter-spacing:0.248000pt;}
.lse{letter-spacing:0.613333pt;}
.ls17{letter-spacing:0.790667pt;}
.ls19{letter-spacing:0.912000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.445333pt;}
.ls16{letter-spacing:1.546667pt;}
.ls2{letter-spacing:1.648000pt;}
.ls3{letter-spacing:1.748000pt;}
.ls4{letter-spacing:1.801333pt;}
.ls6{letter-spacing:1.924000pt;}
.ls5{letter-spacing:2.000000pt;}
.ls7{letter-spacing:4.248000pt;}
.ls1a{letter-spacing:13.677333pt;}
.ls11{letter-spacing:41.677333pt;}
.ls15{letter-spacing:57.677333pt;}
.ws7{word-spacing:-15.000000pt;}
.ws8{word-spacing:-14.924000pt;}
.wsc{word-spacing:-14.546667pt;}
.ws3{word-spacing:-14.352000pt;}
.wse{word-spacing:-13.912000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.ws9{word-spacing:-11.752000pt;}
.wsb{word-spacing:-11.682667pt;}
.ws1{word-spacing:-11.138667pt;}
.wsd{word-spacing:-11.000000pt;}
.ws4{word-spacing:-10.994667pt;}
.ws0{word-spacing:-10.512000pt;}
.ws5{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._6{margin-left:-9.091200pt;}
._15{margin-left:-6.777333pt;}
._13{margin-left:-5.593067pt;}
._7{margin-left:-4.630933pt;}
._8{margin-left:-3.596800pt;}
._2{margin-left:-2.544000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:2.816000pt;}
._4{width:4.506667pt;}
._e{width:6.160000pt;}
._9{width:7.730667pt;}
._1d{width:8.704000pt;}
._5{width:9.701333pt;}
._a{width:10.770667pt;}
._b{width:11.744000pt;}
._c{width:14.496000pt;}
._d{width:15.632000pt;}
._1c{width:18.044000pt;}
._f{width:18.992000pt;}
._17{width:20.181333pt;}
._16{width:21.120000pt;}
._12{width:22.748000pt;}
._1b{width:23.652000pt;}
._11{width:26.860000pt;}
._14{width:30.280000pt;}
._10{width:31.792000pt;}
._19{width:58.688000pt;}
._18{width:62.964000pt;}
._1a{width:755.933333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:3.000000pt;}
.ye9{bottom:3.006667pt;}
.yd8{bottom:3.013333pt;}
.y100{bottom:3.026667pt;}
.y4{bottom:3.033333pt;}
.yed{bottom:3.040000pt;}
.y10e{bottom:4.000000pt;}
.y18{bottom:6.000000pt;}
.y6{bottom:8.000000pt;}
.yf{bottom:10.000000pt;}
.yd{bottom:12.026667pt;}
.y3{bottom:17.033333pt;}
.y10c{bottom:18.013333pt;}
.y52{bottom:18.026667pt;}
.y109{bottom:19.040000pt;}
.y17{bottom:20.000000pt;}
.y56{bottom:20.040000pt;}
.y55{bottom:23.040000pt;}
.yc{bottom:27.026667pt;}
.y1{bottom:29.000000pt;}
.y5{bottom:30.033333pt;}
.y2{bottom:32.033333pt;}
.y51{bottom:34.026667pt;}
.yb{bottom:41.053333pt;}
.y16{bottom:42.026667pt;}
.y50{bottom:49.026667pt;}
.y15{bottom:55.026667pt;}
.y4f{bottom:64.053333pt;}
.ya{bottom:65.053333pt;}
.y14{bottom:72.066667pt;}
.y4e{bottom:80.066667pt;}
.yea{bottom:83.066667pt;}
.y9{bottom:83.093333pt;}
.y9a{bottom:84.066667pt;}
.y12d{bottom:90.066667pt;}
.y13{bottom:95.066667pt;}
.y4d{bottom:95.093333pt;}
.y8{bottom:98.093333pt;}
.y99{bottom:99.066667pt;}
.y12c{bottom:105.100000pt;}
.y5a{bottom:109.100000pt;}
.y4c{bottom:110.093333pt;}
.yd7{bottom:112.100000pt;}
.y98{bottom:115.100000pt;}
.y12{bottom:118.093333pt;}
.y12b{bottom:121.100000pt;}
.y59{bottom:124.100000pt;}
.y4b{bottom:126.093333pt;}
.yd6{bottom:127.100000pt;}
.y97{bottom:130.100000pt;}
.ye8{bottom:131.100000pt;}
.y12a{bottom:136.093333pt;}
.y11{bottom:140.093333pt;}
.y58{bottom:140.106667pt;}
.y4a{bottom:141.120000pt;}
.yd5{bottom:143.133333pt;}
.y96{bottom:145.133333pt;}
.ye7{bottom:147.133333pt;}
.y129{bottom:151.133333pt;}
.y57{bottom:155.133333pt;}
.y49{bottom:156.120000pt;}
.yd4{bottom:158.133333pt;}
.y95{bottom:161.133333pt;}
.ye6{bottom:166.133333pt;}
.y54{bottom:167.133333pt;}
.y48{bottom:172.160000pt;}
.yd3{bottom:173.133333pt;}
.y94{bottom:176.133333pt;}
.ye5{bottom:181.173333pt;}
.y128{bottom:182.173333pt;}
.y47{bottom:187.160000pt;}
.yd2{bottom:189.173333pt;}
.y93{bottom:191.173333pt;}
.ye4{bottom:194.173333pt;}
.y127{bottom:197.173333pt;}
.y1a{bottom:200.173333pt;}
.y46{bottom:202.200000pt;}
.yd1{bottom:204.173333pt;}
.y92{bottom:207.173333pt;}
.ye3{bottom:210.173333pt;}
.y126{bottom:213.173333pt;}
.y45{bottom:218.200000pt;}
.yd0{bottom:219.200000pt;}
.y91{bottom:222.200000pt;}
.y2f{bottom:225.186667pt;}
.ye2{bottom:226.200000pt;}
.y125{bottom:228.200000pt;}
.y44{bottom:233.200000pt;}
.ycf{bottom:235.200000pt;}
.y90{bottom:237.200000pt;}
.y2e{bottom:239.226667pt;}
.ye1{bottom:242.200000pt;}
.y124{bottom:243.200000pt;}
.y43{bottom:248.226667pt;}
.yce{bottom:250.200000pt;}
.y8f{bottom:253.240000pt;}
.y2d{bottom:254.226667pt;}
.ye0{bottom:258.226667pt;}
.y123{bottom:259.240000pt;}
.y42{bottom:264.226667pt;}
.ycd{bottom:265.240000pt;}
.y8e{bottom:268.240000pt;}
.y2c{bottom:269.226667pt;}
.ydf{bottom:274.226667pt;}
.y122{bottom:274.240000pt;}
.y41{bottom:279.266667pt;}
.ycc{bottom:281.226667pt;}
.y8d{bottom:283.240000pt;}
.y2b{bottom:285.266667pt;}
.y117{bottom:286.240000pt;}
.y121{bottom:289.240000pt;}
.yde{bottom:290.266667pt;}
.y40{bottom:294.266667pt;}
.ycb{bottom:296.266667pt;}
.y8c{bottom:299.266667pt;}
.y2a{bottom:300.266667pt;}
.y116{bottom:301.266667pt;}
.y120{bottom:305.266667pt;}
.ydd{bottom:306.266667pt;}
.y3f{bottom:310.266667pt;}
.yca{bottom:311.266667pt;}
.y8b{bottom:314.266667pt;}
.y29{bottom:316.293333pt;}
.y11f{bottom:320.266667pt;}
.ydc{bottom:322.266667pt;}
.y3e{bottom:325.293333pt;}
.yc9{bottom:327.293333pt;}
.y8a{bottom:329.293333pt;}
.y115{bottom:330.293333pt;}
.y28{bottom:331.293333pt;}
.y11e{bottom:332.293333pt;}
.ydb{bottom:338.293333pt;}
.y3d{bottom:340.293333pt;}
.yc8{bottom:342.293333pt;}
.y89{bottom:345.293333pt;}
.y114{bottom:346.293333pt;}
.y27{bottom:347.293333pt;}
.yda{bottom:354.293333pt;}
.y3c{bottom:356.333333pt;}
.yc7{bottom:357.293333pt;}
.y88{bottom:360.293333pt;}
.y113{bottom:362.293333pt;}
.y26{bottom:362.333333pt;}
.yd9{bottom:370.333333pt;}
.y3b{bottom:371.333333pt;}
.yc6{bottom:373.333333pt;}
.y87{bottom:375.333333pt;}
.y25{bottom:378.333333pt;}
.y3a{bottom:386.333333pt;}
.yc5{bottom:388.333333pt;}
.y86{bottom:391.333333pt;}
.y24{bottom:393.360000pt;}
.y112{bottom:394.333333pt;}
.y39{bottom:402.360000pt;}
.yc4{bottom:403.373333pt;}
.y85{bottom:406.373333pt;}
.y23{bottom:408.360000pt;}
.y111{bottom:413.360000pt;}
.y38{bottom:417.360000pt;}
.yc3{bottom:419.360000pt;}
.y84{bottom:421.373333pt;}
.y22{bottom:424.400000pt;}
.y110{bottom:429.373333pt;}
.y37{bottom:432.386667pt;}
.yc2{bottom:434.360000pt;}
.y83{bottom:437.360000pt;}
.y21{bottom:439.400000pt;}
.y10f{bottom:441.400000pt;}
.y36{bottom:448.400000pt;}
.yc1{bottom:449.400000pt;}
.y82{bottom:452.400000pt;}
.y20{bottom:455.386667pt;}
.y10d{bottom:457.400000pt;}
.y35{bottom:463.426667pt;}
.yc0{bottom:465.400000pt;}
.y81{bottom:467.400000pt;}
.y1f{bottom:470.426667pt;}
.y34{bottom:478.426667pt;}
.ybf{bottom:480.440000pt;}
.y80{bottom:483.440000pt;}
.y1e{bottom:486.426667pt;}
.y10b{bottom:489.426667pt;}
.y33{bottom:494.426667pt;}
.ybe{bottom:495.440000pt;}
.y7f{bottom:498.440000pt;}
.y1d{bottom:501.453333pt;}
.y32{bottom:509.453333pt;}
.ybd{bottom:511.426667pt;}
.y7e{bottom:513.466667pt;}
.y10a{bottom:520.466667pt;}
.y31{bottom:524.453333pt;}
.y1c{bottom:525.453333pt;}
.ybc{bottom:526.466667pt;}
.y7d{bottom:529.466667pt;}
.y108{bottom:536.466667pt;}
.y30{bottom:540.493333pt;}
.ybb{bottom:541.466667pt;}
.y1b{bottom:542.493333pt;}
.y7c{bottom:544.466667pt;}
.yba{bottom:557.506667pt;}
.y7b{bottom:559.506667pt;}
.y107{bottom:571.506667pt;}
.yb9{bottom:572.506667pt;}
.y7a{bottom:575.506667pt;}
.y106{bottom:586.506667pt;}
.yb8{bottom:587.533333pt;}
.y79{bottom:590.533333pt;}
.y105{bottom:599.533333pt;}
.yb7{bottom:602.533333pt;}
.y78{bottom:605.533333pt;}
.y104{bottom:615.533333pt;}
.yb6{bottom:618.533333pt;}
.y77{bottom:621.533333pt;}
.y103{bottom:631.560000pt;}
.yb5{bottom:633.573333pt;}
.y76{bottom:636.573333pt;}
.y102{bottom:647.560000pt;}
.yb4{bottom:648.573333pt;}
.y75{bottom:651.573333pt;}
.y11d{bottom:661.600000pt;}
.y101{bottom:663.600000pt;}
.yb3{bottom:664.600000pt;}
.y74{bottom:667.600000pt;}
.y11c{bottom:677.600000pt;}
.yb2{bottom:679.600000pt;}
.y73{bottom:682.600000pt;}
.y11b{bottom:692.600000pt;}
.yb1{bottom:694.600000pt;}
.yff{bottom:695.600000pt;}
.y72{bottom:697.600000pt;}
.y11a{bottom:707.626667pt;}
.yb0{bottom:710.626667pt;}
.yfe{bottom:711.626667pt;}
.y71{bottom:713.626667pt;}
.y119{bottom:723.626667pt;}
.yaf{bottom:725.626667pt;}
.yfd{bottom:727.626667pt;}
.y70{bottom:728.626667pt;}
.y118{bottom:735.666667pt;}
.yae{bottom:740.666667pt;}
.y6f{bottom:743.666667pt;}
.y19{bottom:752.666667pt;}
.yad{bottom:756.666667pt;}
.y6e{bottom:759.666667pt;}
.yac{bottom:771.666667pt;}
.y6d{bottom:774.706667pt;}
.y10{bottom:778.706667pt;}
.yab{bottom:786.706667pt;}
.y6c{bottom:789.706667pt;}
.yfc{bottom:793.706667pt;}
.yaa{bottom:802.706667pt;}
.y6b{bottom:805.706667pt;}
.yfb{bottom:806.693333pt;}
.ya9{bottom:817.733333pt;}
.y6a{bottom:820.733333pt;}
.yfa{bottom:822.733333pt;}
.ya8{bottom:832.733333pt;}
.y69{bottom:835.733333pt;}
.yf9{bottom:838.733333pt;}
.ya7{bottom:848.773333pt;}
.y68{bottom:851.773333pt;}
.yf8{bottom:854.773333pt;}
.ya6{bottom:863.773333pt;}
.y67{bottom:866.773333pt;}
.yf7{bottom:870.760000pt;}
.ya5{bottom:878.773333pt;}
.y66{bottom:881.773333pt;}
.yf6{bottom:886.800000pt;}
.ya4{bottom:894.800000pt;}
.y65{bottom:897.800000pt;}
.yf5{bottom:902.800000pt;}
.ya3{bottom:909.800000pt;}
.y64{bottom:912.800000pt;}
.yf4{bottom:918.800000pt;}
.ya2{bottom:924.840000pt;}
.y63{bottom:927.840000pt;}
.ye{bottom:931.840000pt;}
.yf3{bottom:934.840000pt;}
.ya1{bottom:940.840000pt;}
.y62{bottom:943.840000pt;}
.yf2{bottom:950.840000pt;}
.y7{bottom:954.840000pt;}
.ya0{bottom:956.840000pt;}
.y61{bottom:958.866667pt;}
.yf1{bottom:966.866667pt;}
.y9f{bottom:971.866667pt;}
.y60{bottom:973.866667pt;}
.yf0{bottom:982.866667pt;}
.y9e{bottom:987.866667pt;}
.y5f{bottom:989.866667pt;}
.yef{bottom:998.893333pt;}
.y9d{bottom:1002.893333pt;}
.y5e{bottom:1004.893333pt;}
.yee{bottom:1014.893333pt;}
.y9c{bottom:1018.893333pt;}
.y5d{bottom:1019.893333pt;}
.yec{bottom:1030.893333pt;}
.y9b{bottom:1034.933333pt;}
.y5c{bottom:1035.933333pt;}
.yeb{bottom:1046.933333pt;}
.y5b{bottom:1050.933333pt;}
.h1f{height:14.986667pt;}
.h1d{height:15.000000pt;}
.h1e{height:15.033333pt;}
.h22{height:16.000000pt;}
.hc{height:23.000000pt;}
.h13{height:26.033333pt;}
.h12{height:26.625000pt;}
.h21{height:30.033333pt;}
.h20{height:31.033333pt;}
.h9{height:33.000000pt;}
.h1b{height:33.033333pt;}
.h19{height:35.406250pt;}
.h1c{height:36.689453pt;}
.h18{height:36.791016pt;}
.he{height:38.289062pt;}
.h5{height:38.625000pt;}
.hb{height:39.000000pt;}
.h17{height:41.843750pt;}
.h16{height:43.763672pt;}
.h2{height:44.066667pt;}
.h1a{height:46.617188pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h10{height:51.720703pt;}
.h11{height:53.244141pt;}
.hf{height:57.100000pt;}
.h6{height:61.435547pt;}
.h7{height:63.656250pt;}
.h14{height:65.531250pt;}
.h8{height:108.100000pt;}
.hd{height:153.133333pt;}
.h15{height:552.493333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.wc{width:63.100000pt;}
.w2{width:66.100000pt;}
.w12{width:67.066667pt;}
.wd{width:82.100000pt;}
.w4{width:135.160000pt;}
.w16{width:155.200000pt;}
.we{width:181.200000pt;}
.w15{width:187.240000pt;}
.w7{width:198.240000pt;}
.w10{width:229.306667pt;}
.w11{width:240.306667pt;}
.wf{width:253.333333pt;}
.w9{width:264.333333pt;}
.w14{width:320.400000pt;}
.w17{width:343.440000pt;}
.w13{width:356.466667pt;}
.wa{width:399.506667pt;}
.w8{width:466.600000pt;}
.wb{width:517.640000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.000000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x14{left:11.040000pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x4{left:72.099988pt;}
.x6{left:87.100000pt;}
.x10{left:89.100000pt;}
.x11{left:91.100000pt;}
.x15{left:96.133322pt;}
.x16{left:120.166655pt;}
.x1a{left:160.199988pt;}
.x2a{left:166.199988pt;}
.x1d{left:186.239988pt;}
.x12{left:190.233333pt;}
.x7{left:200.266667pt;}
.x23{left:203.266655pt;}
.x20{left:204.266655pt;}
.x17{left:210.266655pt;}
.x27{left:213.266655pt;}
.xf{left:223.260000pt;}
.xd{left:229.260000pt;}
.x1e{left:247.306667pt;}
.xb{left:258.333333pt;}
.x13{left:263.333333pt;}
.x21{left:306.400000pt;}
.x9{left:307.360000pt;}
.xa{left:324.400000pt;}
.x18{left:330.440000pt;}
.xe{left:332.406667pt;}
.x22{left:373.466667pt;}
.x24{left:386.506667pt;}
.x28{left:397.506655pt;}
.xc{left:403.506667pt;}
.x1f{left:500.640000pt;}
.x25{left:574.733333pt;}
.x1b{left:583.733333pt;}
.x29{left:632.799988pt;}
.x26{left:633.799988pt;}
.x1c{left:647.840000pt;}
.x3{left:663.840000pt;}
}




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