
    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_f6fee16a13848fc89c6e343c.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_e65b10d54c965297b7ca7486.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_c005d4be4aa43ada6b507ce7.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_cf57da844c8569f350dd97ed.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_9555f3d3271594c8ed0ca7be.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_b87444467a102aee52b375a9.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_d74b4ace65817fba3430d716.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_5632a2273a4f3c85ca8534f1.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_e87e636427d40a83818072b3.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_f5e09f375bf2a4b84196fcdb.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_77a3fdbf8bc32d4265e6c36b.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_a95935be41f3414edef4575c.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_319ba6ac53243cb6823b0cbe.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0a66bbf0c832f24037d82174.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_454ca0ac893baf8abf7435a9.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;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_385495d46470f676789ea345.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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_1ee75da99657bffaaf6c57e5.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_57b8fb32a4a5f50b8e1dae5e.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.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_6193fc93719873dbca485474.woff2')format("woff");}.ff14{font-family:ff14;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;}
.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;}
.v1{vertical-align:15.120000px;}
.lsa{letter-spacing:-0.774000px;}
.ls15{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.127200px;}
.ls10{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.174240px;}
.ls13{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.379920px;}
.lse{letter-spacing:0.439920px;}
.ls3{letter-spacing:0.786240px;}
.lsc{letter-spacing:0.979920px;}
.ls14{letter-spacing:16.506720px;}
.ls12{letter-spacing:46.026720px;}
.lsd{letter-spacing:64.026720px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws4{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.166000px;}
.ws8{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws9{word-spacing:0.000000px;}
._16{margin-left:-8.028000px;}
._18{margin-left:-6.800880px;}
._17{margin-left:-5.677200px;}
._14{margin-left:-4.482000px;}
._2{margin-left:-2.939520px;}
._0{margin-left:-1.104000px;}
._1{width:1.128000px;}
._3{width:2.155440px;}
._6{width:3.176400px;}
._11{width:4.648800px;}
._12{width:5.829120px;}
._f{width:7.238400px;}
._10{width:8.844480px;}
._7{width:9.920160px;}
._c{width:11.063040px;}
._b{width:12.915600px;}
._13{width:13.931520px;}
._d{width:15.963360px;}
._e{width:17.152800px;}
._a{width:19.014960px;}
._15{width:20.651520px;}
._9{width:21.840720px;}
._8{width:22.947840px;}
._5{width:23.971200px;}
._4{width:30.566880px;}
.fc6{color:transparent;}
.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);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{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;}
.y3d{bottom:3.240000px;}
.y3{bottom:3.636000px;}
.y42{bottom:3.960000px;}
.y16{bottom:4.860000px;}
.ye{bottom:9.540000px;}
.y40{bottom:10.620000px;}
.y18{bottom:12.465000px;}
.yc{bottom:13.860000px;}
.y96{bottom:17.280000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.y3c{bottom:20.520000px;}
.y41{bottom:22.140000px;}
.y3f{bottom:25.200000px;}
.y15{bottom:25.560000px;}
.yb{bottom:30.240000px;}
.y3b{bottom:37.800000px;}
.y14{bottom:41.760000px;}
.y5{bottom:46.260000px;}
.ya{bottom:46.440000px;}
.y3a{bottom:55.080000px;}
.y13{bottom:57.060000px;}
.y1{bottom:68.760000px;}
.y39{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y12{bottom:76.140000px;}
.y38{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y11{bottom:101.880000px;}
.y37{bottom:106.740000px;}
.y7{bottom:111.270000px;}
.y91{bottom:113.436000px;}
.yd4{bottom:115.956000px;}
.ye6{bottom:117.756000px;}
.y54{bottom:122.436000px;}
.y36{bottom:124.020000px;}
.y10{bottom:126.180000px;}
.yef{bottom:126.396000px;}
.y90{bottom:130.716000px;}
.y116{bottom:132.876000px;}
.yd3{bottom:133.956000px;}
.ye5{bottom:135.036000px;}
.y53{bottom:139.716000px;}
.yee{bottom:140.436000px;}
.y35{bottom:141.330000px;}
.y8f{bottom:147.996000px;}
.ye4{bottom:149.076000px;}
.y115{bottom:149.976000px;}
.yd2{bottom:151.950000px;}
.y52{bottom:156.810000px;}
.y34{bottom:158.430000px;}
.y8e{bottom:165.090000px;}
.y114{bottom:167.250000px;}
.y26{bottom:168.870000px;}
.yd1{bottom:173.190000px;}
.y51{bottom:174.090000px;}
.y33{bottom:175.710000px;}
.y8d{bottom:182.370000px;}
.y25{bottom:183.450000px;}
.y113{bottom:184.530000px;}
.yd0{bottom:190.470000px;}
.y50{bottom:191.370000px;}
.y32{bottom:192.990000px;}
.y8c{bottom:199.650000px;}
.y24{bottom:200.730000px;}
.y112{bottom:201.810000px;}
.ycf{bottom:207.750000px;}
.y4f{bottom:208.650000px;}
.y31{bottom:210.270000px;}
.yb2{bottom:213.690000px;}
.y8b{bottom:216.930000px;}
.y23{bottom:218.010000px;}
.y111{bottom:219.090000px;}
.yce{bottom:222.510000px;}
.y4e{bottom:225.930000px;}
.y30{bottom:227.550000px;}
.yb1{bottom:228.450000px;}
.y8a{bottom:234.210000px;}
.y22{bottom:235.650000px;}
.y110{bottom:236.370000px;}
.ycd{bottom:240.510000px;}
.y4d{bottom:243.210000px;}
.y2f{bottom:244.830000px;}
.yb0{bottom:246.450000px;}
.y89{bottom:251.490000px;}
.y21{bottom:253.110000px;}
.y10f{bottom:253.470000px;}
.ycc{bottom:258.510000px;}
.y4c{bottom:260.310000px;}
.y2e{bottom:261.930000px;}
.yaf{bottom:264.450000px;}
.y88{bottom:268.590000px;}
.y20{bottom:270.570000px;}
.y10e{bottom:270.750000px;}
.ycb{bottom:276.510000px;}
.y4b{bottom:277.590000px;}
.y2d{bottom:279.210000px;}
.yae{bottom:282.450000px;}
.y87{bottom:285.870000px;}
.y1f{bottom:287.850000px;}
.y10d{bottom:288.030000px;}
.y4a{bottom:294.870000px;}
.y2c{bottom:296.490000px;}
.yca{bottom:297.750000px;}
.yad{bottom:300.450000px;}
.y86{bottom:303.150000px;}
.y1e{bottom:305.310000px;}
.y49{bottom:312.150000px;}
.y2b{bottom:313.770000px;}
.yc9{bottom:315.030000px;}
.yac{bottom:318.450000px;}
.y85{bottom:321.510000px;}
.y10c{bottom:322.590000px;}
.y1d{bottom:322.770000px;}
.y48{bottom:329.430000px;}
.y2a{bottom:331.050000px;}
.yc8{bottom:332.310000px;}
.yab{bottom:336.495000px;}
.y84{bottom:339.915000px;}
.y1c{bottom:340.230000px;}
.y47{bottom:346.755000px;}
.yc7{bottom:347.115000px;}
.y29{bottom:348.330000px;}
.yaa{bottom:354.495000px;}
.y10b{bottom:357.015000px;}
.y83{bottom:358.095000px;}
.y46{bottom:363.855000px;}
.yc6{bottom:365.115000px;}
.y28{bottom:365.430000px;}
.y1b{bottom:367.770000px;}
.ya9{bottom:372.495000px;}
.y10a{bottom:374.295000px;}
.y82{bottom:376.455000px;}
.y45{bottom:381.135000px;}
.y27{bottom:382.710000px;}
.yc5{bottom:383.115000px;}
.y1a{bottom:385.410000px;}
.y109{bottom:391.575000px;}
.ya8{bottom:393.735000px;}
.y81{bottom:394.815000px;}
.y44{bottom:398.415000px;}
.yc4{bottom:401.115000px;}
.y108{bottom:408.855000px;}
.ya7{bottom:411.015000px;}
.y80{bottom:413.175000px;}
.y43{bottom:416.415000px;}
.yc3{bottom:422.355000px;}
.y107{bottom:426.135000px;}
.ya6{bottom:428.295000px;}
.y7f{bottom:430.455000px;}
.y3e{bottom:430.815000px;}
.yc2{bottom:439.455000px;}
.ya5{bottom:442.335000px;}
.y106{bottom:443.415000px;}
.y7e{bottom:447.735000px;}
.yc1{bottom:456.735000px;}
.yed{bottom:459.075000px;}
.y105{bottom:460.515000px;}
.y7d{bottom:464.835000px;}
.y19{bottom:467.355000px;}
.yc0{bottom:471.495000px;}
.yec{bottom:476.355000px;}
.y104{bottom:477.795000px;}
.y7c{bottom:483.195000px;}
.ybf{bottom:489.495000px;}
.yeb{bottom:490.215000px;}
.y103{bottom:495.075000px;}
.y7b{bottom:501.555000px;}
.ybe{bottom:507.495000px;}
.y102{bottom:512.355000px;}
.y7a{bottom:519.915000px;}
.ybd{bottom:525.495000px;}
.ye3{bottom:525.855000px;}
.y101{bottom:529.635000px;}
.y79{bottom:538.275000px;}
.ye2{bottom:543.135000px;}
.ybc{bottom:546.735000px;}
.y78{bottom:555.375000px;}
.ye1{bottom:556.995000px;}
.ybb{bottom:564.015000px;}
.y77{bottom:572.655000px;}
.yba{bottom:578.775000px;}
.y100{bottom:581.295000px;}
.y76{bottom:589.935000px;}
.yb9{bottom:596.775000px;}
.yff{bottom:598.575000px;}
.y75{bottom:607.245000px;}
.yb8{bottom:614.805000px;}
.yfe{bottom:615.885000px;}
.y74{bottom:624.525000px;}
.yb7{bottom:632.805000px;}
.yfd{bottom:633.165000px;}
.y73{bottom:641.805000px;}
.yfc{bottom:650.265000px;}
.yb6{bottom:654.045000px;}
.y72{bottom:658.905000px;}
.yfb{bottom:667.545000px;}
.yb5{bottom:671.325000px;}
.y71{bottom:676.185000px;}
.yfa{bottom:684.825000px;}
.yb4{bottom:688.605000px;}
.y70{bottom:694.545000px;}
.yf9{bottom:702.105000px;}
.yb3{bottom:702.465000px;}
.y6f{bottom:711.825000px;}
.yf8{bottom:719.385000px;}
.y6e{bottom:730.185000px;}
.yf7{bottom:736.665000px;}
.y6d{bottom:748.365000px;}
.yf6{bottom:753.765000px;}
.y6c{bottom:765.645000px;}
.yf5{bottom:771.045000px;}
.y6b{bottom:782.925000px;}
.yf4{bottom:788.325000px;}
.yea{bottom:793.185000px;}
.y6a{bottom:801.285000px;}
.yf3{bottom:805.605000px;}
.ye9{bottom:810.465000px;}
.y69{bottom:819.645000px;}
.yf2{bottom:822.885000px;}
.ye8{bottom:827.745000px;}
.ye0{bottom:828.105000px;}
.y68{bottom:838.005000px;}
.yf1{bottom:839.985000px;}
.ye7{bottom:841.605000px;}
.ydf{bottom:842.865000px;}
.ya4{bottom:844.485000px;}
.y67{bottom:856.185000px;}
.yf0{bottom:857.265000px;}
.ya3{bottom:859.245000px;}
.yde{bottom:860.865000px;}
.y17{bottom:864.105000px;}
.y66{bottom:874.590000px;}
.ya2{bottom:877.290000px;}
.ydd{bottom:878.910000px;}
.y65{bottom:891.870000px;}
.yf{bottom:893.670000px;}
.ya1{bottom:895.290000px;}
.ydc{bottom:896.910000px;}
.y64{bottom:909.150000px;}
.ya0{bottom:913.290000px;}
.ydb{bottom:914.910000px;}
.y63{bottom:926.430000px;}
.y9f{bottom:931.290000px;}
.yda{bottom:936.150000px;}
.y62{bottom:943.530000px;}
.y9e{bottom:949.290000px;}
.yd9{bottom:953.430000px;}
.y61{bottom:960.810000px;}
.y9d{bottom:970.530000px;}
.y60{bottom:978.090000px;}
.y9c{bottom:987.810000px;}
.y5f{bottom:995.370000px;}
.y9b{bottom:1002.570000px;}
.y5e{bottom:1012.650000px;}
.y9a{bottom:1020.570000px;}
.y5d{bottom:1029.930000px;}
.yd{bottom:1034.970000px;}
.y99{bottom:1038.570000px;}
.y5c{bottom:1047.030000px;}
.y98{bottom:1056.570000px;}
.y6{bottom:1060.350000px;}
.y5b{bottom:1064.310000px;}
.y97{bottom:1074.570000px;}
.y5a{bottom:1081.590000px;}
.y95{bottom:1092.570000px;}
.y59{bottom:1098.870000px;}
.y94{bottom:1110.570000px;}
.yd8{bottom:1113.810000px;}
.y58{bottom:1116.150000px;}
.y93{bottom:1128.570000px;}
.yd7{bottom:1131.090000px;}
.y57{bottom:1133.430000px;}
.yd6{bottom:1145.880000px;}
.y92{bottom:1146.600000px;}
.y56{bottom:1150.560000px;}
.yd5{bottom:1163.880000px;}
.y55{bottom:1167.840000px;}
.h21{height:17.100000px;}
.h1f{height:17.280000px;}
.h20{height:17.316000px;}
.hb{height:25.020000px;}
.h12{height:29.556000px;}
.h2{height:33.156000px;}
.h8{height:36.180000px;}
.h1c{height:36.540000px;}
.h19{height:38.818125px;}
.h1b{height:41.726953px;}
.h1a{height:42.164648px;}
.h11{height:43.453125px;}
.h1e{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1d{height:48.088125px;}
.h18{height:49.255313px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:141.300000px;}
.h14{height:396.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:68.940000px;}
.w3{width:74.880000px;}
.w27{width:109.440000px;}
.w1c{width:126.720000px;}
.w5{width:151.950000px;}
.w15{width:175.530000px;}
.w1a{width:188.850000px;}
.w10{width:192.270000px;}
.w1e{width:192.630000px;}
.w11{width:201.990000px;}
.w1f{width:202.350000px;}
.w26{width:205.275000px;}
.wd{width:209.370000px;}
.w29{width:212.430000px;}
.w1b{width:214.050000px;}
.w13{width:214.410000px;}
.w19{width:214.635000px;}
.w28{width:217.290000px;}
.we{width:219.990000px;}
.w8{width:223.275000px;}
.w21{width:224.310000px;}
.w14{width:225.210000px;}
.w24{width:230.250000px;}
.w22{width:235.650000px;}
.w23{width:240.735000px;}
.w17{width:247.170000px;}
.w16{width:252.795000px;}
.w25{width:274.170000px;}
.w20{width:285.015000px;}
.w12{width:305.355000px;}
.wc{width:315.615000px;}
.w1d{width:349.995000px;}
.wf{width:350.895000px;}
.wb{width:354.135000px;}
.wa{width:391.755000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:7.560000px;}
.x2{left:8.640000px;}
.x11{left:12.600000px;}
.xc{left:33.876000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x32{left:84.059987px;}
.x5{left:98.130000px;}
.x27{left:106.235987px;}
.x12{left:108.035987px;}
.x23{left:130.175987px;}
.x13{left:135.035987px;}
.x2c{left:163.289987px;}
.x3a{left:174.269987px;}
.x38{left:183.989987px;}
.xf{left:189.570000px;}
.x29{left:203.069987px;}
.xd{left:215.355000px;}
.x6{left:224.850000px;}
.x2d{left:245.369987px;}
.x24{left:249.510000px;}
.x34{left:257.789987px;}
.x1b{left:261.929987px;}
.x16{left:267.509987px;}
.x1e{left:269.129987px;}
.x1a{left:274.709987px;}
.x1f{left:276.689987px;}
.x35{left:279.255000px;}
.x9{left:288.435000px;}
.x14{left:289.694987px;}
.x10{left:296.175000px;}
.x30{left:314.715000px;}
.xe{left:331.995000px;}
.x7{left:348.195000px;}
.x2e{left:358.995000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x20{left:379.335000px;}
.x17{left:389.595000px;}
.x33{left:416.594987px;}
.x1c{left:424.875000px;}
.x28{left:446.474987px;}
.xa{left:455.700000px;}
.x15{left:465.735000px;}
.x2a{left:478.185000px;}
.x25{left:503.025000px;}
.x31{left:545.685000px;}
.x2f{left:584.205000px;}
.x21{left:594.645000px;}
.x18{left:599.865000px;}
.x36{left:607.425000px;}
.x1d{left:617.865000px;}
.x39{left:633.704987px;}
.x37{left:638.204987px;}
.x2b{left:693.150000px;}
.x3{left:745.890000px;}
.x26{left:750.930000px;}
.x19{left:752.549987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.688000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.113067pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.154880pt;}
.ls13{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.337707pt;}
.lse{letter-spacing:0.391040pt;}
.ls3{letter-spacing:0.698880pt;}
.lsc{letter-spacing:0.871040pt;}
.ls14{letter-spacing:14.672640pt;}
.ls12{letter-spacing:40.912640pt;}
.lsd{letter-spacing:56.912640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws4{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.592000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws9{word-spacing:0.000000pt;}
._16{margin-left:-7.136000pt;}
._18{margin-left:-6.045227pt;}
._17{margin-left:-5.046400pt;}
._14{margin-left:-3.984000pt;}
._2{margin-left:-2.612907pt;}
._0{margin-left:-0.981333pt;}
._1{width:1.002667pt;}
._3{width:1.915947pt;}
._6{width:2.823467pt;}
._11{width:4.132267pt;}
._12{width:5.181440pt;}
._f{width:6.434133pt;}
._10{width:7.861760pt;}
._7{width:8.817920pt;}
._c{width:9.833813pt;}
._b{width:11.480533pt;}
._13{width:12.383573pt;}
._d{width:14.189653pt;}
._e{width:15.246933pt;}
._a{width:16.902187pt;}
._15{width:18.356907pt;}
._9{width:19.413973pt;}
._8{width:20.398080pt;}
._5{width:21.307733pt;}
._4{width:27.170560pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{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;}
.y3d{bottom:2.880000pt;}
.y3{bottom:3.232000pt;}
.y42{bottom:3.520000pt;}
.y16{bottom:4.320000pt;}
.ye{bottom:8.480000pt;}
.y40{bottom:9.440000pt;}
.y18{bottom:11.080000pt;}
.yc{bottom:12.320000pt;}
.y96{bottom:15.360000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.y3c{bottom:18.240000pt;}
.y41{bottom:19.680000pt;}
.y3f{bottom:22.400000pt;}
.y15{bottom:22.720000pt;}
.yb{bottom:26.880000pt;}
.y3b{bottom:33.600000pt;}
.y14{bottom:37.120000pt;}
.y5{bottom:41.120000pt;}
.ya{bottom:41.280000pt;}
.y3a{bottom:48.960000pt;}
.y13{bottom:50.720000pt;}
.y1{bottom:61.120000pt;}
.y39{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y12{bottom:67.680000pt;}
.y38{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y11{bottom:90.560000pt;}
.y37{bottom:94.880000pt;}
.y7{bottom:98.906667pt;}
.y91{bottom:100.832000pt;}
.yd4{bottom:103.072000pt;}
.ye6{bottom:104.672000pt;}
.y54{bottom:108.832000pt;}
.y36{bottom:110.240000pt;}
.y10{bottom:112.160000pt;}
.yef{bottom:112.352000pt;}
.y90{bottom:116.192000pt;}
.y116{bottom:118.112000pt;}
.yd3{bottom:119.072000pt;}
.ye5{bottom:120.032000pt;}
.y53{bottom:124.192000pt;}
.yee{bottom:124.832000pt;}
.y35{bottom:125.626667pt;}
.y8f{bottom:131.552000pt;}
.ye4{bottom:132.512000pt;}
.y115{bottom:133.312000pt;}
.yd2{bottom:135.066667pt;}
.y52{bottom:139.386667pt;}
.y34{bottom:140.826667pt;}
.y8e{bottom:146.746667pt;}
.y114{bottom:148.666667pt;}
.y26{bottom:150.106667pt;}
.yd1{bottom:153.946667pt;}
.y51{bottom:154.746667pt;}
.y33{bottom:156.186667pt;}
.y8d{bottom:162.106667pt;}
.y25{bottom:163.066667pt;}
.y113{bottom:164.026667pt;}
.yd0{bottom:169.306667pt;}
.y50{bottom:170.106667pt;}
.y32{bottom:171.546667pt;}
.y8c{bottom:177.466667pt;}
.y24{bottom:178.426667pt;}
.y112{bottom:179.386667pt;}
.ycf{bottom:184.666667pt;}
.y4f{bottom:185.466667pt;}
.y31{bottom:186.906667pt;}
.yb2{bottom:189.946667pt;}
.y8b{bottom:192.826667pt;}
.y23{bottom:193.786667pt;}
.y111{bottom:194.746667pt;}
.yce{bottom:197.786667pt;}
.y4e{bottom:200.826667pt;}
.y30{bottom:202.266667pt;}
.yb1{bottom:203.066667pt;}
.y8a{bottom:208.186667pt;}
.y22{bottom:209.466667pt;}
.y110{bottom:210.106667pt;}
.ycd{bottom:213.786667pt;}
.y4d{bottom:216.186667pt;}
.y2f{bottom:217.626667pt;}
.yb0{bottom:219.066667pt;}
.y89{bottom:223.546667pt;}
.y21{bottom:224.986667pt;}
.y10f{bottom:225.306667pt;}
.ycc{bottom:229.786667pt;}
.y4c{bottom:231.386667pt;}
.y2e{bottom:232.826667pt;}
.yaf{bottom:235.066667pt;}
.y88{bottom:238.746667pt;}
.y20{bottom:240.506667pt;}
.y10e{bottom:240.666667pt;}
.ycb{bottom:245.786667pt;}
.y4b{bottom:246.746667pt;}
.y2d{bottom:248.186667pt;}
.yae{bottom:251.066667pt;}
.y87{bottom:254.106667pt;}
.y1f{bottom:255.866667pt;}
.y10d{bottom:256.026667pt;}
.y4a{bottom:262.106667pt;}
.y2c{bottom:263.546667pt;}
.yca{bottom:264.666667pt;}
.yad{bottom:267.066667pt;}
.y86{bottom:269.466667pt;}
.y1e{bottom:271.386667pt;}
.y49{bottom:277.466667pt;}
.y2b{bottom:278.906667pt;}
.yc9{bottom:280.026667pt;}
.yac{bottom:283.066667pt;}
.y85{bottom:285.786667pt;}
.y10c{bottom:286.746667pt;}
.y1d{bottom:286.906667pt;}
.y48{bottom:292.826667pt;}
.y2a{bottom:294.266667pt;}
.yc8{bottom:295.386667pt;}
.yab{bottom:299.106667pt;}
.y84{bottom:302.146667pt;}
.y1c{bottom:302.426667pt;}
.y47{bottom:308.226667pt;}
.yc7{bottom:308.546667pt;}
.y29{bottom:309.626667pt;}
.yaa{bottom:315.106667pt;}
.y10b{bottom:317.346667pt;}
.y83{bottom:318.306667pt;}
.y46{bottom:323.426667pt;}
.yc6{bottom:324.546667pt;}
.y28{bottom:324.826667pt;}
.y1b{bottom:326.906667pt;}
.ya9{bottom:331.106667pt;}
.y10a{bottom:332.706667pt;}
.y82{bottom:334.626667pt;}
.y45{bottom:338.786667pt;}
.y27{bottom:340.186667pt;}
.yc5{bottom:340.546667pt;}
.y1a{bottom:342.586667pt;}
.y109{bottom:348.066667pt;}
.ya8{bottom:349.986667pt;}
.y81{bottom:350.946667pt;}
.y44{bottom:354.146667pt;}
.yc4{bottom:356.546667pt;}
.y108{bottom:363.426667pt;}
.ya7{bottom:365.346667pt;}
.y80{bottom:367.266667pt;}
.y43{bottom:370.146667pt;}
.yc3{bottom:375.426667pt;}
.y107{bottom:378.786667pt;}
.ya6{bottom:380.706667pt;}
.y7f{bottom:382.626667pt;}
.y3e{bottom:382.946667pt;}
.yc2{bottom:390.626667pt;}
.ya5{bottom:393.186667pt;}
.y106{bottom:394.146667pt;}
.y7e{bottom:397.986667pt;}
.yc1{bottom:405.986667pt;}
.yed{bottom:408.066667pt;}
.y105{bottom:409.346667pt;}
.y7d{bottom:413.186667pt;}
.y19{bottom:415.426667pt;}
.yc0{bottom:419.106667pt;}
.yec{bottom:423.426667pt;}
.y104{bottom:424.706667pt;}
.y7c{bottom:429.506667pt;}
.ybf{bottom:435.106667pt;}
.yeb{bottom:435.746667pt;}
.y103{bottom:440.066667pt;}
.y7b{bottom:445.826667pt;}
.ybe{bottom:451.106667pt;}
.y102{bottom:455.426667pt;}
.y7a{bottom:462.146667pt;}
.ybd{bottom:467.106667pt;}
.ye3{bottom:467.426667pt;}
.y101{bottom:470.786667pt;}
.y79{bottom:478.466667pt;}
.ye2{bottom:482.786667pt;}
.ybc{bottom:485.986667pt;}
.y78{bottom:493.666667pt;}
.ye1{bottom:495.106667pt;}
.ybb{bottom:501.346667pt;}
.y77{bottom:509.026667pt;}
.yba{bottom:514.466667pt;}
.y100{bottom:516.706667pt;}
.y76{bottom:524.386667pt;}
.yb9{bottom:530.466667pt;}
.yff{bottom:532.066667pt;}
.y75{bottom:539.773333pt;}
.yb8{bottom:546.493333pt;}
.yfe{bottom:547.453333pt;}
.y74{bottom:555.133333pt;}
.yb7{bottom:562.493333pt;}
.yfd{bottom:562.813333pt;}
.y73{bottom:570.493333pt;}
.yfc{bottom:578.013333pt;}
.yb6{bottom:581.373333pt;}
.y72{bottom:585.693333pt;}
.yfb{bottom:593.373333pt;}
.yb5{bottom:596.733333pt;}
.y71{bottom:601.053333pt;}
.yfa{bottom:608.733333pt;}
.yb4{bottom:612.093333pt;}
.y70{bottom:617.373333pt;}
.yf9{bottom:624.093333pt;}
.yb3{bottom:624.413333pt;}
.y6f{bottom:632.733333pt;}
.yf8{bottom:639.453333pt;}
.y6e{bottom:649.053333pt;}
.yf7{bottom:654.813333pt;}
.y6d{bottom:665.213333pt;}
.yf6{bottom:670.013333pt;}
.y6c{bottom:680.573333pt;}
.yf5{bottom:685.373333pt;}
.y6b{bottom:695.933333pt;}
.yf4{bottom:700.733333pt;}
.yea{bottom:705.053333pt;}
.y6a{bottom:712.253333pt;}
.yf3{bottom:716.093333pt;}
.ye9{bottom:720.413333pt;}
.y69{bottom:728.573333pt;}
.yf2{bottom:731.453333pt;}
.ye8{bottom:735.773333pt;}
.ye0{bottom:736.093333pt;}
.y68{bottom:744.893333pt;}
.yf1{bottom:746.653333pt;}
.ye7{bottom:748.093333pt;}
.ydf{bottom:749.213333pt;}
.ya4{bottom:750.653333pt;}
.y67{bottom:761.053333pt;}
.yf0{bottom:762.013333pt;}
.ya3{bottom:763.773333pt;}
.yde{bottom:765.213333pt;}
.y17{bottom:768.093333pt;}
.y66{bottom:777.413333pt;}
.ya2{bottom:779.813333pt;}
.ydd{bottom:781.253333pt;}
.y65{bottom:792.773333pt;}
.yf{bottom:794.373333pt;}
.ya1{bottom:795.813333pt;}
.ydc{bottom:797.253333pt;}
.y64{bottom:808.133333pt;}
.ya0{bottom:811.813333pt;}
.ydb{bottom:813.253333pt;}
.y63{bottom:823.493333pt;}
.y9f{bottom:827.813333pt;}
.yda{bottom:832.133333pt;}
.y62{bottom:838.693333pt;}
.y9e{bottom:843.813333pt;}
.yd9{bottom:847.493333pt;}
.y61{bottom:854.053333pt;}
.y9d{bottom:862.693333pt;}
.y60{bottom:869.413333pt;}
.y9c{bottom:878.053333pt;}
.y5f{bottom:884.773333pt;}
.y9b{bottom:891.173333pt;}
.y5e{bottom:900.133333pt;}
.y9a{bottom:907.173333pt;}
.y5d{bottom:915.493333pt;}
.yd{bottom:919.973333pt;}
.y99{bottom:923.173333pt;}
.y5c{bottom:930.693333pt;}
.y98{bottom:939.173333pt;}
.y6{bottom:942.533333pt;}
.y5b{bottom:946.053333pt;}
.y97{bottom:955.173333pt;}
.y5a{bottom:961.413333pt;}
.y95{bottom:971.173333pt;}
.y59{bottom:976.773333pt;}
.y94{bottom:987.173333pt;}
.yd8{bottom:990.053333pt;}
.y58{bottom:992.133333pt;}
.y93{bottom:1003.173333pt;}
.yd7{bottom:1005.413333pt;}
.y57{bottom:1007.493333pt;}
.yd6{bottom:1018.560000pt;}
.y92{bottom:1019.200000pt;}
.y56{bottom:1022.720000pt;}
.yd5{bottom:1034.560000pt;}
.y55{bottom:1038.080000pt;}
.h21{height:15.200000pt;}
.h1f{height:15.360000pt;}
.h20{height:15.392000pt;}
.hb{height:22.240000pt;}
.h12{height:26.272000pt;}
.h2{height:29.472000pt;}
.h8{height:32.160000pt;}
.h1c{height:32.480000pt;}
.h19{height:34.505000pt;}
.h1b{height:37.090625pt;}
.h1a{height:37.479688pt;}
.h11{height:38.625000pt;}
.h1e{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1d{height:42.745000pt;}
.h18{height:43.782500pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:125.600000pt;}
.h14{height:352.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:61.280000pt;}
.w3{width:66.560000pt;}
.w27{width:97.280000pt;}
.w1c{width:112.640000pt;}
.w5{width:135.066667pt;}
.w15{width:156.026667pt;}
.w1a{width:167.866667pt;}
.w10{width:170.906667pt;}
.w1e{width:171.226667pt;}
.w11{width:179.546667pt;}
.w1f{width:179.866667pt;}
.w26{width:182.466667pt;}
.wd{width:186.106667pt;}
.w29{width:188.826667pt;}
.w1b{width:190.266667pt;}
.w13{width:190.586667pt;}
.w19{width:190.786667pt;}
.w28{width:193.146667pt;}
.we{width:195.546667pt;}
.w8{width:198.466667pt;}
.w21{width:199.386667pt;}
.w14{width:200.186667pt;}
.w24{width:204.666667pt;}
.w22{width:209.466667pt;}
.w23{width:213.986667pt;}
.w17{width:219.706667pt;}
.w16{width:224.706667pt;}
.w25{width:243.706667pt;}
.w20{width:253.346667pt;}
.w12{width:271.426667pt;}
.wc{width:280.546667pt;}
.w1d{width:311.106667pt;}
.wf{width:311.906667pt;}
.wb{width:314.786667pt;}
.wa{width:348.226667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.720000pt;}
.x2{left:7.680000pt;}
.x11{left:11.200000pt;}
.xc{left:30.112000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x32{left:74.719988pt;}
.x5{left:87.226667pt;}
.x27{left:94.431988pt;}
.x12{left:96.031988pt;}
.x23{left:115.711988pt;}
.x13{left:120.031988pt;}
.x2c{left:145.146655pt;}
.x3a{left:154.906655pt;}
.x38{left:163.546655pt;}
.xf{left:168.506667pt;}
.x29{left:180.506655pt;}
.xd{left:191.426667pt;}
.x6{left:199.866667pt;}
.x2d{left:218.106655pt;}
.x24{left:221.786667pt;}
.x34{left:229.146655pt;}
.x1b{left:232.826655pt;}
.x16{left:237.786655pt;}
.x1e{left:239.226655pt;}
.x1a{left:244.186655pt;}
.x1f{left:245.946655pt;}
.x35{left:248.226667pt;}
.x9{left:256.386667pt;}
.x14{left:257.506655pt;}
.x10{left:263.266667pt;}
.x30{left:279.746667pt;}
.xe{left:295.106667pt;}
.x7{left:309.506667pt;}
.x2e{left:319.106667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x20{left:337.186667pt;}
.x17{left:346.306667pt;}
.x33{left:370.306655pt;}
.x1c{left:377.666667pt;}
.x28{left:396.866655pt;}
.xa{left:405.066667pt;}
.x15{left:413.986667pt;}
.x2a{left:425.053333pt;}
.x25{left:447.133333pt;}
.x31{left:485.053333pt;}
.x2f{left:519.293333pt;}
.x21{left:528.573333pt;}
.x18{left:533.213333pt;}
.x36{left:539.933333pt;}
.x1d{left:549.213333pt;}
.x39{left:563.293322pt;}
.x37{left:567.293322pt;}
.x2b{left:616.133333pt;}
.x3{left:663.013333pt;}
.x26{left:667.493333pt;}
.x19{left:668.933322pt;}
}




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