
    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_61e78b332123f02dcfde86e8.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_552732c0a7d1ed3a55cce2fa.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_be34a925aad7d488486ef1a1.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_f7de373b9004cef10e611589.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_709fd8d4984b94a577d4e90e.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_9a5e304ffc8a5ebb37293c89.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_0fafc441530f81617e7a0406.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_48134480cdc5464de2b4ef5e.woff')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_9930d94a04814f94cf56efb5.woff')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_fadddaf2f78e93bafd796dce.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_dac82850706e1672b2d79a00.woff')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_1f1a2d9507a3df6c1a0e1235.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_3a31ad84e6e6632ed71aa49b.woff')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_0aa833e7f0d9d730f11d5ce2.woff')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_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;}
@font-face{font-family:ff15;src:url('chunks/assets/font_3d39f2bf7322051b2b88a82a.woff')format("woff");}.ff15{font-family:ff15;line-height:0.682617;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;}
.lsa{letter-spacing:-2.724000px;}
.ls1e{letter-spacing:-2.250000px;}
.ls16{letter-spacing:-1.740000px;}
.lse{letter-spacing:-1.494000px;}
.lsd{letter-spacing:-0.816000px;}
.lsb{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.780000px;}
.ls9{letter-spacing:-0.378000px;}
.ls8{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.090000px;}
.ls19{letter-spacing:0.672000px;}
.lsc{letter-spacing:0.690000px;}
.ls14{letter-spacing:0.900000px;}
.ls18{letter-spacing:1.026000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.656000px;}
.ls13{letter-spacing:1.737000px;}
.ls1a{letter-spacing:1.740000px;}
.ls2{letter-spacing:1.854000px;}
.ls3{letter-spacing:1.966500px;}
.ls4{letter-spacing:2.146500px;}
.ls17{letter-spacing:2.164500px;}
.ls5{letter-spacing:2.250000px;}
.ls1d{letter-spacing:2.310000px;}
.ls6{letter-spacing:2.370000px;}
.ls1b{letter-spacing:3.375000px;}
.ls7{letter-spacing:4.779000px;}
.ls1c{letter-spacing:15.387000px;}
.ls10{letter-spacing:46.887000px;}
.ls15{letter-spacing:55.737000px;}
.ls12{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;}
}
.ws4{word-spacing:-23.166000px;}
.ws8{word-spacing:-16.875000px;}
.wsc{word-spacing:-16.789500px;}
.wsd{word-spacing:-16.365000px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.wsb{word-spacing:-15.297000px;}
.ws7{word-spacing:-14.625000px;}
.ws6{word-spacing:-13.221000px;}
.wsa{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.wse{word-spacing:-12.375000px;}
.ws0{word-spacing:-11.826000px;}
.ws5{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._7{margin-left:-10.355100px;}
._e{margin-left:-6.739500px;}
._6{margin-left:-5.479350px;}
._8{margin-left:-4.117500px;}
._2{margin-left:-2.274000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.036000px;}
._4{width:4.218000px;}
._a{width:5.398500px;}
._12{width:7.351500px;}
._9{width:8.823000px;}
._5{width:10.944000px;}
._11{width:12.721500px;}
._14{width:15.855000px;}
._13{width:16.908000px;}
._15{width:20.320500px;}
._10{width:21.549000px;}
._f{width:25.771500px;}
._c{width:30.208500px;}
._d{width:31.269000px;}
._b{width:34.767000px;}
._17{width:35.794500px;}
._16{width:39.295500px;}
._19{width:49.044000px;}
._18{width:66.339000px;}
._1a{width:98.127000px;}
.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);}
.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;}
.y1d{bottom:1.125000px;}
.y3{bottom:3.375000px;}
.yba{bottom:3.390000px;}
.yc5{bottom:3.420000px;}
.y1b{bottom:4.500000px;}
.y4d{bottom:11.250000px;}
.ye{bottom:11.280000px;}
.y1e{bottom:12.420000px;}
.yc{bottom:13.500000px;}
.y4{bottom:16.875000px;}
.yc3{bottom:16.905000px;}
.ybb{bottom:16.920000px;}
.y2{bottom:19.125000px;}
.y4a{bottom:21.375000px;}
.y4e{bottom:22.500000px;}
.y4c{bottom:25.875000px;}
.y1a{bottom:28.170000px;}
.yb{bottom:30.405000px;}
.y49{bottom:38.280000px;}
.y19{bottom:45.045000px;}
.ya{bottom:46.155000px;}
.y48{bottom:55.155000px;}
.y5{bottom:57.412500px;}
.y18{bottom:60.795000px;}
.y47{bottom:73.155000px;}
.y9{bottom:73.200000px;}
.y17{bottom:77.700000px;}
.y1{bottom:81.075000px;}
.y46{bottom:90.075000px;}
.y8{bottom:93.450000px;}
.y16{bottom:94.575000px;}
.y45{bottom:106.950000px;}
.y15{bottom:106.995000px;}
.y7{bottom:110.355000px;}
.y14{bottom:120.495000px;}
.y44{bottom:124.995000px;}
.y153{bottom:127.237500px;}
.y58{bottom:129.487500px;}
.yd5{bottom:133.987500px;}
.y13{bottom:135.120000px;}
.yfe{bottom:139.612500px;}
.y94{bottom:140.737500px;}
.y43{bottom:141.870000px;}
.y152{bottom:145.237500px;}
.y57{bottom:146.362500px;}
.y121{bottom:147.487500px;}
.yd4{bottom:151.995000px;}
.y12{bottom:154.275000px;}
.yfd{bottom:156.480000px;}
.y93{bottom:157.620000px;}
.y42{bottom:158.775000px;}
.y151{bottom:162.150000px;}
.y56{bottom:163.275000px;}
.y120{bottom:164.400000px;}
.y162{bottom:166.650000px;}
.yd3{bottom:168.900000px;}
.yfc{bottom:174.525000px;}
.y41{bottom:176.775000px;}
.y150{bottom:179.025000px;}
.y11{bottom:180.150000px;}
.y55{bottom:181.275000px;}
.y161{bottom:183.525000px;}
.yd2{bottom:185.775000px;}
.yfb{bottom:191.400000px;}
.y40{bottom:193.650000px;}
.y14f{bottom:197.025000px;}
.y54{bottom:198.150000px;}
.y11f{bottom:199.275000px;}
.y2f{bottom:201.570000px;}
.yd1{bottom:203.820000px;}
.y10{bottom:204.945000px;}
.yfa{bottom:208.320000px;}
.y3f{bottom:210.570000px;}
.y92{bottom:211.695000px;}
.y14e{bottom:213.945000px;}
.y53{bottom:215.070000px;}
.y2e{bottom:216.180000px;}
.y11e{bottom:216.195000px;}
.y160{bottom:218.445000px;}
.yd0{bottom:220.695000px;}
.yf9{bottom:226.320000px;}
.y3e{bottom:228.570000px;}
.y91{bottom:229.695000px;}
.y14d{bottom:230.820000px;}
.y52{bottom:233.070000px;}
.y2d{bottom:234.195000px;}
.y15f{bottom:235.320000px;}
.ycf{bottom:237.570000px;}
.yf8{bottom:243.225000px;}
.y3d{bottom:245.475000px;}
.y90{bottom:246.600000px;}
.y14c{bottom:248.850000px;}
.y51{bottom:249.975000px;}
.y11d{bottom:251.100000px;}
.y2c{bottom:252.225000px;}
.y15e{bottom:253.350000px;}
.yce{bottom:255.600000px;}
.yf7{bottom:260.100000px;}
.y3c{bottom:262.350000px;}
.y8f{bottom:263.475000px;}
.y14b{bottom:265.725000px;}
.y50{bottom:266.850000px;}
.y11c{bottom:267.975000px;}
.y2b{bottom:269.100000px;}
.y15d{bottom:270.225000px;}
.ycd{bottom:272.475000px;}
.yf6{bottom:278.100000px;}
.y3b{bottom:280.350000px;}
.y8e{bottom:281.475000px;}
.y14a{bottom:282.600000px;}
.y4f{bottom:283.725000px;}
.y11b{bottom:284.895000px;}
.y15c{bottom:287.130000px;}
.y2a{bottom:287.145000px;}
.ycc{bottom:289.380000px;}
.yf5{bottom:291.630000px;}
.y3a{bottom:297.270000px;}
.y4b{bottom:298.380000px;}
.y8d{bottom:298.395000px;}
.y149{bottom:300.630000px;}
.y11a{bottom:302.880000px;}
.y29{bottom:304.020000px;}
.y15b{bottom:305.145000px;}
.ycb{bottom:307.380000px;}
.yf4{bottom:309.630000px;}
.y39{bottom:314.145000px;}
.y8c{bottom:315.270000px;}
.y148{bottom:317.505000px;}
.y119{bottom:319.755000px;}
.y28{bottom:320.895000px;}
.y15a{bottom:322.020000px;}
.yca{bottom:324.255000px;}
.yf3{bottom:327.675000px;}
.y38{bottom:332.175000px;}
.y8b{bottom:334.425000px;}
.y1f{bottom:335.550000px;}
.y118{bottom:336.675000px;}
.y27{bottom:338.925000px;}
.yc9{bottom:341.175000px;}
.yf2{bottom:345.675000px;}
.y37{bottom:349.050000px;}
.y8a{bottom:352.425000px;}
.y117{bottom:354.675000px;}
.y26{bottom:355.800000px;}
.y159{bottom:356.925000px;}
.yc8{bottom:359.175000px;}
.y36{bottom:365.925000px;}
.y89{bottom:369.345000px;}
.y116{bottom:371.580000px;}
.y158{bottom:373.830000px;}
.y25{bottom:373.845000px;}
.yc7{bottom:376.095000px;}
.y35{bottom:383.970000px;}
.yf1{bottom:385.080000px;}
.y147{bottom:386.220000px;}
.y88{bottom:387.330000px;}
.y115{bottom:388.455000px;}
.yc6{bottom:390.705000px;}
.y24{bottom:390.720000px;}
.y34{bottom:400.845000px;}
.yf0{bottom:401.955000px;}
.y146{bottom:404.205000px;}
.y87{bottom:405.330000px;}
.y114{bottom:406.470000px;}
.yc4{bottom:408.705000px;}
.y23{bottom:408.750000px;}
.y33{bottom:417.750000px;}
.yef{bottom:418.875000px;}
.y145{bottom:421.125000px;}
.y86{bottom:422.250000px;}
.y113{bottom:423.375000px;}
.y157{bottom:425.625000px;}
.y22{bottom:426.750000px;}
.y32{bottom:435.750000px;}
.yee{bottom:436.875000px;}
.y144{bottom:438.000000px;}
.y85{bottom:440.250000px;}
.y156{bottom:442.500000px;}
.yc2{bottom:444.750000px;}
.y31{bottom:452.655000px;}
.y21{bottom:453.780000px;}
.yed{bottom:453.795000px;}
.y143{bottom:456.045000px;}
.y84{bottom:458.280000px;}
.y155{bottom:460.545000px;}
.yc1{bottom:462.780000px;}
.y30{bottom:469.530000px;}
.yec{bottom:470.670000px;}
.y20{bottom:471.780000px;}
.y142{bottom:472.920000px;}
.y112{bottom:475.155000px;}
.y83{bottom:476.295000px;}
.y154{bottom:477.420000px;}
.yc0{bottom:480.780000px;}
.yeb{bottom:488.655000px;}
.y141{bottom:489.795000px;}
.y111{bottom:492.030000px;}
.y82{bottom:494.325000px;}
.ybf{bottom:498.825000px;}
.yea{bottom:505.575000px;}
.y140{bottom:507.825000px;}
.y110{bottom:510.075000px;}
.y81{bottom:512.325000px;}
.ybe{bottom:516.825000px;}
.ye9{bottom:523.575000px;}
.y13f{bottom:524.700000px;}
.y80{bottom:529.200000px;}
.ybd{bottom:534.855000px;}
.y13e{bottom:541.605000px;}
.ye8{bottom:542.745000px;}
.y7f{bottom:546.120000px;}
.ybc{bottom:552.855000px;}
.y13d{bottom:559.620000px;}
.ye7{bottom:560.745000px;}
.y7e{bottom:564.120000px;}
.yb9{bottom:570.855000px;}
.y13c{bottom:576.495000px;}
.ye6{bottom:577.650000px;}
.y7d{bottom:581.025000px;}
.yb8{bottom:588.900000px;}
.y13b{bottom:593.400000px;}
.ye5{bottom:595.650000px;}
.y7c{bottom:597.900000px;}
.yb7{bottom:606.900000px;}
.y13a{bottom:611.400000px;}
.ye4{bottom:612.525000px;}
.y7b{bottom:615.900000px;}
.yb6{bottom:624.945000px;}
.y139{bottom:628.320000px;}
.ye3{bottom:629.445000px;}
.y7a{bottom:632.820000px;}
.yb5{bottom:642.945000px;}
.y138{bottom:645.195000px;}
.ye2{bottom:647.445000px;}
.y79{bottom:649.695000px;}
.yb4{bottom:660.975000px;}
.y137{bottom:663.225000px;}
.ye1{bottom:664.350000px;}
.y78{bottom:667.725000px;}
.y136{bottom:680.100000px;}
.ye0{bottom:681.225000px;}
.yb3{bottom:682.350000px;}
.y77{bottom:684.600000px;}
.y135{bottom:696.975000px;}
.yb2{bottom:699.225000px;}
.y76{bottom:701.475000px;}
.y134{bottom:715.005000px;}
.ydf{bottom:716.145000px;}
.yb1{bottom:717.255000px;}
.y75{bottom:719.520000px;}
.y133{bottom:731.880000px;}
.yde{bottom:733.020000px;}
.yb0{bottom:734.130000px;}
.y74{bottom:736.395000px;}
.y132{bottom:748.800000px;}
.yaf{bottom:751.050000px;}
.y73{bottom:753.300000px;}
.ydd{bottom:764.550000px;}
.y131{bottom:766.800000px;}
.yae{bottom:769.050000px;}
.y72{bottom:771.300000px;}
.y130{bottom:783.675000px;}
.yad{bottom:785.955000px;}
.y71{bottom:788.205000px;}
.y12f{bottom:800.580000px;}
.yac{bottom:802.830000px;}
.y70{bottom:805.080000px;}
.y1c{bottom:818.580000px;}
.yab{bottom:820.830000px;}
.y6f{bottom:823.080000px;}
.y12e{bottom:835.500000px;}
.yaa{bottom:837.750000px;}
.y6e{bottom:840.000000px;}
.y10f{bottom:846.750000px;}
.yf{bottom:849.000000px;}
.y12d{bottom:852.375000px;}
.ya9{bottom:854.625000px;}
.y6d{bottom:856.875000px;}
.y10e{bottom:863.625000px;}
.y12c{bottom:870.420000px;}
.ya8{bottom:872.670000px;}
.y6c{bottom:874.920000px;}
.y10d{bottom:878.295000px;}
.y12b{bottom:887.295000px;}
.ya7{bottom:889.545000px;}
.y6b{bottom:891.795000px;}
.y10c{bottom:896.280000px;}
.y12a{bottom:904.170000px;}
.ya6{bottom:906.420000px;}
.y6a{bottom:908.670000px;}
.y10b{bottom:914.325000px;}
.y129{bottom:922.200000px;}
.ya5{bottom:924.450000px;}
.y69{bottom:926.700000px;}
.y10a{bottom:932.325000px;}
.y128{bottom:939.075000px;}
.ya4{bottom:941.325000px;}
.y68{bottom:943.575000px;}
.y109{bottom:950.325000px;}
.y127{bottom:955.995000px;}
.ya3{bottom:958.245000px;}
.y67{bottom:960.495000px;}
.y108{bottom:968.370000px;}
.y126{bottom:973.995000px;}
.ya2{bottom:976.245000px;}
.y66{bottom:978.495000px;}
.y107{bottom:989.745000px;}
.y125{bottom:990.870000px;}
.ya1{bottom:993.120000px;}
.y65{bottom:995.400000px;}
.y106{bottom:1007.775000px;}
.ya0{bottom:1010.025000px;}
.y64{bottom:1012.275000px;}
.y105{bottom:1024.650000px;}
.y124{bottom:1025.775000px;}
.y9f{bottom:1028.025000px;}
.y63{bottom:1030.275000px;}
.y104{bottom:1041.570000px;}
.y123{bottom:1042.695000px;}
.y9e{bottom:1044.945000px;}
.y62{bottom:1047.195000px;}
.y103{bottom:1059.570000px;}
.y9d{bottom:1061.820000px;}
.y61{bottom:1064.070000px;}
.yd{bottom:1068.570000px;}
.ydc{bottom:1076.445000px;}
.y122{bottom:1077.600000px;}
.y9c{bottom:1079.850000px;}
.y60{bottom:1082.100000px;}
.ydb{bottom:1091.100000px;}
.y102{bottom:1093.350000px;}
.y6{bottom:1094.475000px;}
.y9b{bottom:1096.725000px;}
.y5f{bottom:1098.975000px;}
.yda{bottom:1109.100000px;}
.y101{bottom:1111.350000px;}
.y9a{bottom:1113.600000px;}
.y5e{bottom:1115.850000px;}
.yd9{bottom:1127.130000px;}
.y100{bottom:1130.505000px;}
.y99{bottom:1131.630000px;}
.y5d{bottom:1133.880000px;}
.yd8{bottom:1145.130000px;}
.y98{bottom:1148.505000px;}
.y5c{bottom:1150.755000px;}
.yd7{bottom:1163.175000px;}
.y97{bottom:1165.425000px;}
.yff{bottom:1166.550000px;}
.y5b{bottom:1167.675000px;}
.yd6{bottom:1181.175000px;}
.y96{bottom:1184.550000px;}
.y5a{bottom:1185.675000px;}
.y95{bottom:1201.425000px;}
.y59{bottom:1202.580000px;}
.h1e{height:16.860000px;}
.h1d{height:16.875000px;}
.h1f{height:16.912500px;}
.h21{height:18.000000px;}
.h22{height:18.037500px;}
.hb{height:25.912500px;}
.h11{height:29.953125px;}
.h12{height:30.412500px;}
.h2{height:32.625000px;}
.h20{height:34.912500px;}
.h8{height:37.125000px;}
.h1a{height:37.162500px;}
.h18{height:39.832031px;}
.h1b{height:41.275635px;}
.h19{height:42.303955px;}
.h1c{height:42.589600px;}
.hd{height:43.075195px;}
.ha{height:43.875000px;}
.h16{height:47.074219px;}
.h17{height:48.216797px;}
.h15{height:49.234131px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:219.570000px;}
.h14{height:483.030000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w16{width:61.987500px;}
.w17{width:66.450000px;}
.w2{width:74.362500px;}
.we{width:86.700000px;}
.w1b{width:102.487500px;}
.w1c{width:107.025000px;}
.w14{width:123.900000px;}
.w15{width:136.275000px;}
.w12{width:141.937500px;}
.w18{width:147.562500px;}
.w4{width:152.055000px;}
.w11{width:165.600000px;}
.wf{width:173.430000px;}
.w10{width:176.850000px;}
.w1a{width:177.975000px;}
.wc{width:179.130000px;}
.w19{width:180.225000px;}
.wa{width:188.100000px;}
.w13{width:206.145000px;}
.w7{width:223.020000px;}
.wd{width:246.675000px;}
.wb{width:319.875000px;}
.w8{width:524.925000px;}
.w9{width:558.720000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:6.750000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.xf{left:11.250000px;}
.x16{left:12.420000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x4{left:81.112487px;}
.xe{left:95.737500px;}
.x6{left:97.987500px;}
.x11{left:100.237500px;}
.x17{left:108.149987px;}
.x18{left:135.187487px;}
.x24{left:161.100000px;}
.x19{left:162.224987px;}
.x12{left:194.857500px;}
.x23{left:197.144987px;}
.x30{left:206.144987px;}
.x1e{left:208.394987px;}
.x14{left:214.012500px;}
.x28{left:221.924987px;}
.x7{left:225.300000px;}
.x10{left:226.387500px;}
.x22{left:253.454987px;}
.x31{left:254.595000px;}
.x1a{left:265.844987px;}
.x29{left:280.500000px;}
.x2f{left:289.499987px;}
.xb{left:290.625000px;}
.x15{left:296.250000px;}
.x13{left:332.287500px;}
.x25{left:335.670000px;}
.x9{left:345.780000px;}
.xa{left:364.950000px;}
.xd{left:373.957500px;}
.x1f{left:394.245000px;}
.x2a{left:405.525000px;}
.x32{left:433.695000px;}
.x1d{left:447.194987px;}
.xc{left:453.945000px;}
.x26{left:512.520000px;}
.x2b{left:542.925000px;}
.x20{left:574.500000px;}
.x2c{left:606.030000px;}
.x33{left:610.530000px;}
.x1b{left:633.075000px;}
.x21{left:661.244987px;}
.x2e{left:669.119987px;}
.x2d{left:673.620000px;}
.x27{left:679.245000px;}
.x34{left:714.150000px;}
.x3{left:746.820000px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsa{letter-spacing:-2.421333pt;}
.ls1e{letter-spacing:-2.000000pt;}
.ls16{letter-spacing:-1.546667pt;}
.lse{letter-spacing:-1.328000pt;}
.lsd{letter-spacing:-0.725333pt;}
.lsb{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls9{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.080000pt;}
.ls19{letter-spacing:0.597333pt;}
.lsc{letter-spacing:0.613333pt;}
.ls14{letter-spacing:0.800000pt;}
.ls18{letter-spacing:0.912000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.472000pt;}
.ls13{letter-spacing:1.544000pt;}
.ls1a{letter-spacing:1.546667pt;}
.ls2{letter-spacing:1.648000pt;}
.ls3{letter-spacing:1.748000pt;}
.ls4{letter-spacing:1.908000pt;}
.ls17{letter-spacing:1.924000pt;}
.ls5{letter-spacing:2.000000pt;}
.ls1d{letter-spacing:2.053333pt;}
.ls6{letter-spacing:2.106667pt;}
.ls1b{letter-spacing:3.000000pt;}
.ls7{letter-spacing:4.248000pt;}
.ls1c{letter-spacing:13.677333pt;}
.ls10{letter-spacing:41.677333pt;}
.ls15{letter-spacing:49.544000pt;}
.ls12{letter-spacing:57.677333pt;}
.ws4{word-spacing:-20.592000pt;}
.ws8{word-spacing:-15.000000pt;}
.wsc{word-spacing:-14.924000pt;}
.wsd{word-spacing:-14.546667pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.wsb{word-spacing:-13.597333pt;}
.ws7{word-spacing:-13.000000pt;}
.ws6{word-spacing:-11.752000pt;}
.wsa{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.wse{word-spacing:-11.000000pt;}
.ws0{word-spacing:-10.512000pt;}
.ws5{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._7{margin-left:-9.204533pt;}
._e{margin-left:-5.990667pt;}
._6{margin-left:-4.870533pt;}
._8{margin-left:-3.660000pt;}
._2{margin-left:-2.021333pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:2.698667pt;}
._4{width:3.749333pt;}
._a{width:4.798667pt;}
._12{width:6.534667pt;}
._9{width:7.842667pt;}
._5{width:9.728000pt;}
._11{width:11.308000pt;}
._14{width:14.093333pt;}
._13{width:15.029333pt;}
._15{width:18.062667pt;}
._10{width:19.154667pt;}
._f{width:22.908000pt;}
._c{width:26.852000pt;}
._d{width:27.794667pt;}
._b{width:30.904000pt;}
._17{width:31.817333pt;}
._16{width:34.929333pt;}
._19{width:43.594667pt;}
._18{width:58.968000pt;}
._1a{width:87.224000pt;}
.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;}
.y1d{bottom:1.000000pt;}
.y3{bottom:3.000000pt;}
.yba{bottom:3.013333pt;}
.yc5{bottom:3.040000pt;}
.y1b{bottom:4.000000pt;}
.y4d{bottom:10.000000pt;}
.ye{bottom:10.026667pt;}
.y1e{bottom:11.040000pt;}
.yc{bottom:12.000000pt;}
.y4{bottom:15.000000pt;}
.yc3{bottom:15.026667pt;}
.ybb{bottom:15.040000pt;}
.y2{bottom:17.000000pt;}
.y4a{bottom:19.000000pt;}
.y4e{bottom:20.000000pt;}
.y4c{bottom:23.000000pt;}
.y1a{bottom:25.040000pt;}
.yb{bottom:27.026667pt;}
.y49{bottom:34.026667pt;}
.y19{bottom:40.040000pt;}
.ya{bottom:41.026667pt;}
.y48{bottom:49.026667pt;}
.y5{bottom:51.033333pt;}
.y18{bottom:54.040000pt;}
.y47{bottom:65.026667pt;}
.y9{bottom:65.066667pt;}
.y17{bottom:69.066667pt;}
.y1{bottom:72.066667pt;}
.y46{bottom:80.066667pt;}
.y8{bottom:83.066667pt;}
.y16{bottom:84.066667pt;}
.y45{bottom:95.066667pt;}
.y15{bottom:95.106667pt;}
.y7{bottom:98.093333pt;}
.y14{bottom:107.106667pt;}
.y44{bottom:111.106667pt;}
.y153{bottom:113.100000pt;}
.y58{bottom:115.100000pt;}
.yd5{bottom:119.100000pt;}
.y13{bottom:120.106667pt;}
.yfe{bottom:124.100000pt;}
.y94{bottom:125.100000pt;}
.y43{bottom:126.106667pt;}
.y152{bottom:129.100000pt;}
.y57{bottom:130.100000pt;}
.y121{bottom:131.100000pt;}
.yd4{bottom:135.106667pt;}
.y12{bottom:137.133333pt;}
.yfd{bottom:139.093333pt;}
.y93{bottom:140.106667pt;}
.y42{bottom:141.133333pt;}
.y151{bottom:144.133333pt;}
.y56{bottom:145.133333pt;}
.y120{bottom:146.133333pt;}
.y162{bottom:148.133333pt;}
.yd3{bottom:150.133333pt;}
.yfc{bottom:155.133333pt;}
.y41{bottom:157.133333pt;}
.y150{bottom:159.133333pt;}
.y11{bottom:160.133333pt;}
.y55{bottom:161.133333pt;}
.y161{bottom:163.133333pt;}
.yd2{bottom:165.133333pt;}
.yfb{bottom:170.133333pt;}
.y40{bottom:172.133333pt;}
.y14f{bottom:175.133333pt;}
.y54{bottom:176.133333pt;}
.y11f{bottom:177.133333pt;}
.y2f{bottom:179.173333pt;}
.yd1{bottom:181.173333pt;}
.y10{bottom:182.173333pt;}
.yfa{bottom:185.173333pt;}
.y3f{bottom:187.173333pt;}
.y92{bottom:188.173333pt;}
.y14e{bottom:190.173333pt;}
.y53{bottom:191.173333pt;}
.y2e{bottom:192.160000pt;}
.y11e{bottom:192.173333pt;}
.y160{bottom:194.173333pt;}
.yd0{bottom:196.173333pt;}
.yf9{bottom:201.173333pt;}
.y3e{bottom:203.173333pt;}
.y91{bottom:204.173333pt;}
.y14d{bottom:205.173333pt;}
.y52{bottom:207.173333pt;}
.y2d{bottom:208.173333pt;}
.y15f{bottom:209.173333pt;}
.ycf{bottom:211.173333pt;}
.yf8{bottom:216.200000pt;}
.y3d{bottom:218.200000pt;}
.y90{bottom:219.200000pt;}
.y14c{bottom:221.200000pt;}
.y51{bottom:222.200000pt;}
.y11d{bottom:223.200000pt;}
.y2c{bottom:224.200000pt;}
.y15e{bottom:225.200000pt;}
.yce{bottom:227.200000pt;}
.yf7{bottom:231.200000pt;}
.y3c{bottom:233.200000pt;}
.y8f{bottom:234.200000pt;}
.y14b{bottom:236.200000pt;}
.y50{bottom:237.200000pt;}
.y11c{bottom:238.200000pt;}
.y2b{bottom:239.200000pt;}
.y15d{bottom:240.200000pt;}
.ycd{bottom:242.200000pt;}
.yf6{bottom:247.200000pt;}
.y3b{bottom:249.200000pt;}
.y8e{bottom:250.200000pt;}
.y14a{bottom:251.200000pt;}
.y4f{bottom:252.200000pt;}
.y11b{bottom:253.240000pt;}
.y15c{bottom:255.226667pt;}
.y2a{bottom:255.240000pt;}
.ycc{bottom:257.226667pt;}
.yf5{bottom:259.226667pt;}
.y3a{bottom:264.240000pt;}
.y4b{bottom:265.226667pt;}
.y8d{bottom:265.240000pt;}
.y149{bottom:267.226667pt;}
.y11a{bottom:269.226667pt;}
.y29{bottom:270.240000pt;}
.y15b{bottom:271.240000pt;}
.ycb{bottom:273.226667pt;}
.yf4{bottom:275.226667pt;}
.y39{bottom:279.240000pt;}
.y8c{bottom:280.240000pt;}
.y148{bottom:282.226667pt;}
.y119{bottom:284.226667pt;}
.y28{bottom:285.240000pt;}
.y15a{bottom:286.240000pt;}
.yca{bottom:288.226667pt;}
.yf3{bottom:291.266667pt;}
.y38{bottom:295.266667pt;}
.y8b{bottom:297.266667pt;}
.y1f{bottom:298.266667pt;}
.y118{bottom:299.266667pt;}
.y27{bottom:301.266667pt;}
.yc9{bottom:303.266667pt;}
.yf2{bottom:307.266667pt;}
.y37{bottom:310.266667pt;}
.y8a{bottom:313.266667pt;}
.y117{bottom:315.266667pt;}
.y26{bottom:316.266667pt;}
.y159{bottom:317.266667pt;}
.yc8{bottom:319.266667pt;}
.y36{bottom:325.266667pt;}
.y89{bottom:328.306667pt;}
.y116{bottom:330.293333pt;}
.y158{bottom:332.293333pt;}
.y25{bottom:332.306667pt;}
.yc7{bottom:334.306667pt;}
.y35{bottom:341.306667pt;}
.yf1{bottom:342.293333pt;}
.y147{bottom:343.306667pt;}
.y88{bottom:344.293333pt;}
.y115{bottom:345.293333pt;}
.yc6{bottom:347.293333pt;}
.y24{bottom:347.306667pt;}
.y34{bottom:356.306667pt;}
.yf0{bottom:357.293333pt;}
.y146{bottom:359.293333pt;}
.y87{bottom:360.293333pt;}
.y114{bottom:361.306667pt;}
.yc4{bottom:363.293333pt;}
.y23{bottom:363.333333pt;}
.y33{bottom:371.333333pt;}
.yef{bottom:372.333333pt;}
.y145{bottom:374.333333pt;}
.y86{bottom:375.333333pt;}
.y113{bottom:376.333333pt;}
.y157{bottom:378.333333pt;}
.y22{bottom:379.333333pt;}
.y32{bottom:387.333333pt;}
.yee{bottom:388.333333pt;}
.y144{bottom:389.333333pt;}
.y85{bottom:391.333333pt;}
.y156{bottom:393.333333pt;}
.yc2{bottom:395.333333pt;}
.y31{bottom:402.360000pt;}
.y21{bottom:403.360000pt;}
.yed{bottom:403.373333pt;}
.y143{bottom:405.373333pt;}
.y84{bottom:407.360000pt;}
.y155{bottom:409.373333pt;}
.yc1{bottom:411.360000pt;}
.y30{bottom:417.360000pt;}
.yec{bottom:418.373333pt;}
.y20{bottom:419.360000pt;}
.y142{bottom:420.373333pt;}
.y112{bottom:422.360000pt;}
.y83{bottom:423.373333pt;}
.y154{bottom:424.373333pt;}
.yc0{bottom:427.360000pt;}
.yeb{bottom:434.360000pt;}
.y141{bottom:435.373333pt;}
.y111{bottom:437.360000pt;}
.y82{bottom:439.400000pt;}
.ybf{bottom:443.400000pt;}
.yea{bottom:449.400000pt;}
.y140{bottom:451.400000pt;}
.y110{bottom:453.400000pt;}
.y81{bottom:455.400000pt;}
.ybe{bottom:459.400000pt;}
.ye9{bottom:465.400000pt;}
.y13f{bottom:466.400000pt;}
.y80{bottom:470.400000pt;}
.ybd{bottom:475.426667pt;}
.y13e{bottom:481.426667pt;}
.ye8{bottom:482.440000pt;}
.y7f{bottom:485.440000pt;}
.ybc{bottom:491.426667pt;}
.y13d{bottom:497.440000pt;}
.ye7{bottom:498.440000pt;}
.y7e{bottom:501.440000pt;}
.yb9{bottom:507.426667pt;}
.y13c{bottom:512.440000pt;}
.ye6{bottom:513.466667pt;}
.y7d{bottom:516.466667pt;}
.yb8{bottom:523.466667pt;}
.y13b{bottom:527.466667pt;}
.ye5{bottom:529.466667pt;}
.y7c{bottom:531.466667pt;}
.yb7{bottom:539.466667pt;}
.y13a{bottom:543.466667pt;}
.ye4{bottom:544.466667pt;}
.y7b{bottom:547.466667pt;}
.yb6{bottom:555.506667pt;}
.y139{bottom:558.506667pt;}
.ye3{bottom:559.506667pt;}
.y7a{bottom:562.506667pt;}
.yb5{bottom:571.506667pt;}
.y138{bottom:573.506667pt;}
.ye2{bottom:575.506667pt;}
.y79{bottom:577.506667pt;}
.yb4{bottom:587.533333pt;}
.y137{bottom:589.533333pt;}
.ye1{bottom:590.533333pt;}
.y78{bottom:593.533333pt;}
.y136{bottom:604.533333pt;}
.ye0{bottom:605.533333pt;}
.yb3{bottom:606.533333pt;}
.y77{bottom:608.533333pt;}
.y135{bottom:619.533333pt;}
.yb2{bottom:621.533333pt;}
.y76{bottom:623.533333pt;}
.y134{bottom:635.560000pt;}
.ydf{bottom:636.573333pt;}
.yb1{bottom:637.560000pt;}
.y75{bottom:639.573333pt;}
.y133{bottom:650.560000pt;}
.yde{bottom:651.573333pt;}
.yb0{bottom:652.560000pt;}
.y74{bottom:654.573333pt;}
.y132{bottom:665.600000pt;}
.yaf{bottom:667.600000pt;}
.y73{bottom:669.600000pt;}
.ydd{bottom:679.600000pt;}
.y131{bottom:681.600000pt;}
.yae{bottom:683.600000pt;}
.y72{bottom:685.600000pt;}
.y130{bottom:696.600000pt;}
.yad{bottom:698.626667pt;}
.y71{bottom:700.626667pt;}
.y12f{bottom:711.626667pt;}
.yac{bottom:713.626667pt;}
.y70{bottom:715.626667pt;}
.y1c{bottom:727.626667pt;}
.yab{bottom:729.626667pt;}
.y6f{bottom:731.626667pt;}
.y12e{bottom:742.666667pt;}
.yaa{bottom:744.666667pt;}
.y6e{bottom:746.666667pt;}
.y10f{bottom:752.666667pt;}
.yf{bottom:754.666667pt;}
.y12d{bottom:757.666667pt;}
.ya9{bottom:759.666667pt;}
.y6d{bottom:761.666667pt;}
.y10e{bottom:767.666667pt;}
.y12c{bottom:773.706667pt;}
.ya8{bottom:775.706667pt;}
.y6c{bottom:777.706667pt;}
.y10d{bottom:780.706667pt;}
.y12b{bottom:788.706667pt;}
.ya7{bottom:790.706667pt;}
.y6b{bottom:792.706667pt;}
.y10c{bottom:796.693333pt;}
.y12a{bottom:803.706667pt;}
.ya6{bottom:805.706667pt;}
.y6a{bottom:807.706667pt;}
.y10b{bottom:812.733333pt;}
.y129{bottom:819.733333pt;}
.ya5{bottom:821.733333pt;}
.y69{bottom:823.733333pt;}
.y10a{bottom:828.733333pt;}
.y128{bottom:834.733333pt;}
.ya4{bottom:836.733333pt;}
.y68{bottom:838.733333pt;}
.y109{bottom:844.733333pt;}
.y127{bottom:849.773333pt;}
.ya3{bottom:851.773333pt;}
.y67{bottom:853.773333pt;}
.y108{bottom:860.773333pt;}
.y126{bottom:865.773333pt;}
.ya2{bottom:867.773333pt;}
.y66{bottom:869.773333pt;}
.y107{bottom:879.773333pt;}
.y125{bottom:880.773333pt;}
.ya1{bottom:882.773333pt;}
.y65{bottom:884.800000pt;}
.y106{bottom:895.800000pt;}
.ya0{bottom:897.800000pt;}
.y64{bottom:899.800000pt;}
.y105{bottom:910.800000pt;}
.y124{bottom:911.800000pt;}
.y9f{bottom:913.800000pt;}
.y63{bottom:915.800000pt;}
.y104{bottom:925.840000pt;}
.y123{bottom:926.840000pt;}
.y9e{bottom:928.840000pt;}
.y62{bottom:930.840000pt;}
.y103{bottom:941.840000pt;}
.y9d{bottom:943.840000pt;}
.y61{bottom:945.840000pt;}
.yd{bottom:949.840000pt;}
.ydc{bottom:956.840000pt;}
.y122{bottom:957.866667pt;}
.y9c{bottom:959.866667pt;}
.y60{bottom:961.866667pt;}
.ydb{bottom:969.866667pt;}
.y102{bottom:971.866667pt;}
.y6{bottom:972.866667pt;}
.y9b{bottom:974.866667pt;}
.y5f{bottom:976.866667pt;}
.yda{bottom:985.866667pt;}
.y101{bottom:987.866667pt;}
.y9a{bottom:989.866667pt;}
.y5e{bottom:991.866667pt;}
.yd9{bottom:1001.893333pt;}
.y100{bottom:1004.893333pt;}
.y99{bottom:1005.893333pt;}
.y5d{bottom:1007.893333pt;}
.yd8{bottom:1017.893333pt;}
.y98{bottom:1020.893333pt;}
.y5c{bottom:1022.893333pt;}
.yd7{bottom:1033.933333pt;}
.y97{bottom:1035.933333pt;}
.yff{bottom:1036.933333pt;}
.y5b{bottom:1037.933333pt;}
.yd6{bottom:1049.933333pt;}
.y96{bottom:1052.933333pt;}
.y5a{bottom:1053.933333pt;}
.y95{bottom:1067.933333pt;}
.y59{bottom:1068.960000pt;}
.h1e{height:14.986667pt;}
.h1d{height:15.000000pt;}
.h1f{height:15.033333pt;}
.h21{height:16.000000pt;}
.h22{height:16.033333pt;}
.hb{height:23.033333pt;}
.h11{height:26.625000pt;}
.h12{height:27.033333pt;}
.h2{height:29.000000pt;}
.h20{height:31.033333pt;}
.h8{height:33.000000pt;}
.h1a{height:33.033333pt;}
.h18{height:35.406250pt;}
.h1b{height:36.689453pt;}
.h19{height:37.603516pt;}
.h1c{height:37.857422pt;}
.hd{height:38.289062pt;}
.ha{height:39.000000pt;}
.h16{height:41.843750pt;}
.h17{height:42.859375pt;}
.h15{height:43.763672pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:195.173333pt;}
.h14{height:429.360000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w16{width:55.100000pt;}
.w17{width:59.066667pt;}
.w2{width:66.100000pt;}
.we{width:77.066667pt;}
.w1b{width:91.100000pt;}
.w1c{width:95.133333pt;}
.w14{width:110.133333pt;}
.w15{width:121.133333pt;}
.w12{width:126.166667pt;}
.w18{width:131.166667pt;}
.w4{width:135.160000pt;}
.w11{width:147.200000pt;}
.wf{width:154.160000pt;}
.w10{width:157.200000pt;}
.w1a{width:158.200000pt;}
.wc{width:159.226667pt;}
.w19{width:160.200000pt;}
.wa{width:167.200000pt;}
.w13{width:183.240000pt;}
.w7{width:198.240000pt;}
.wd{width:219.266667pt;}
.wb{width:284.333333pt;}
.w8{width:466.600000pt;}
.w9{width:496.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;}
.x1c{left:6.000000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.xf{left:10.000000pt;}
.x16{left:11.040000pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x4{left:72.099988pt;}
.xe{left:85.100000pt;}
.x6{left:87.100000pt;}
.x11{left:89.100000pt;}
.x17{left:96.133322pt;}
.x18{left:120.166655pt;}
.x24{left:143.200000pt;}
.x19{left:144.199988pt;}
.x12{left:173.206667pt;}
.x23{left:175.239988pt;}
.x30{left:183.239988pt;}
.x1e{left:185.239988pt;}
.x14{left:190.233333pt;}
.x28{left:197.266655pt;}
.x7{left:200.266667pt;}
.x10{left:201.233333pt;}
.x22{left:225.293322pt;}
.x31{left:226.306667pt;}
.x1a{left:236.306655pt;}
.x29{left:249.333333pt;}
.x2f{left:257.333322pt;}
.xb{left:258.333333pt;}
.x15{left:263.333333pt;}
.x13{left:295.366667pt;}
.x25{left:298.373333pt;}
.x9{left:307.360000pt;}
.xa{left:324.400000pt;}
.xd{left:332.406667pt;}
.x1f{left:350.440000pt;}
.x2a{left:360.466667pt;}
.x32{left:385.506667pt;}
.x1d{left:397.506655pt;}
.xc{left:403.506667pt;}
.x26{left:455.573333pt;}
.x2b{left:482.600000pt;}
.x20{left:510.666667pt;}
.x2c{left:538.693333pt;}
.x33{left:542.693333pt;}
.x1b{left:562.733333pt;}
.x21{left:587.773322pt;}
.x2e{left:594.773322pt;}
.x2d{left:598.773333pt;}
.x27{left:603.773333pt;}
.x34{left:634.800000pt;}
.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; }
  