
    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_3e909d4a415d9ec79b272206.woff')format("woff");}.ff1{font-family:ff1;line-height:1.035156;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_0114ac617185f297477476d7.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_3d832fd57dad9bf4f8fe617e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.008301;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_03b806e755a909adcc9e9864.woff')format("woff");}.ff4{font-family:ff4;line-height:1.014160;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_f46c1730f01bbbfe23a9f98a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000488;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_6eea1239277609e590436a80.woff')format("woff");}.ff6{font-family:ff6;line-height:1.008301;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_21f43d3f98ad90265380bd89.woff')format("woff");}.ff7{font-family:ff7;line-height:0.925000;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_df9fdf3584d02ab5469e7a8d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_65d8e10f924e3c9fc829fb29.woff')format("woff");}.ff9{font-family:ff9;line-height:0.929199;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_6cb746b51196454462554b53.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3bcd0ad8026fdc048286936b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6ade252fb06827a48b8b73c0.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v7{vertical-align:-358.440000px;}
.v6{vertical-align:-268.860000px;}
.v5{vertical-align:-179.280000px;}
.v4{vertical-align:-89.580000px;}
.v3{vertical-align:-37.437094px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.060000px;}
.ls12{letter-spacing:-1.422000px;}
.ls19{letter-spacing:-0.918000px;}
.ls14{letter-spacing:-0.846000px;}
.ls1d{letter-spacing:-0.756000px;}
.ls7{letter-spacing:-0.684000px;}
.ls1b{letter-spacing:-0.594000px;}
.ls8{letter-spacing:-0.540000px;}
.ls23{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.324000px;}
.ls18{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.253200px;}
.ls13{letter-spacing:-0.252000px;}
.ls1f{letter-spacing:-0.234000px;}
.lsa{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.198000px;}
.ls17{letter-spacing:-0.162000px;}
.ls1c{letter-spacing:-0.126000px;}
.ls21{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.036000px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.126000px;}
.ls24{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.315360px;}
.ls9{letter-spacing:0.360000px;}
.ls25{letter-spacing:2.268000px;}
.lsc{letter-spacing:3.060000px;}
.ls5{letter-spacing:19.683458px;}
.ls22{letter-spacing:29.628000px;}
.lsf{letter-spacing:216.528000px;}
.lse{letter-spacing:216.540000px;}
.ls10{letter-spacing:216.600000px;}
.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;}
}
.wsf{word-spacing:-234.600000px;}
.wsb{word-spacing:-54.000000px;}
.ws8{word-spacing:-30.240000px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-14.970240px;}
.ws2{word-spacing:-13.860000px;}
.ws15{word-spacing:-13.716000px;}
.ws12{word-spacing:-13.626000px;}
.ws23{word-spacing:-13.536000px;}
.wsc{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.464000px;}
.ws21{word-spacing:-13.392000px;}
.ws1b{word-spacing:-13.374000px;}
.ws16{word-spacing:-13.338000px;}
.ws1d{word-spacing:-13.302000px;}
.ws1f{word-spacing:-13.284000px;}
.ws1e{word-spacing:-13.266000px;}
.ws11{word-spacing:-13.248000px;}
.ws20{word-spacing:-13.230000px;}
.ws17{word-spacing:-13.212000px;}
.ws19{word-spacing:-13.176000px;}
.ws22{word-spacing:-13.140000px;}
.ws1a{word-spacing:-12.906000px;}
.ws1c{word-spacing:-12.744000px;}
.ws13{word-spacing:-12.654000px;}
.ws18{word-spacing:-12.582000px;}
.wsd{word-spacing:-12.078000px;}
.ws5{word-spacing:-9.036000px;}
.ws4{word-spacing:-9.000000px;}
.ws7{word-spacing:-8.153520px;}
.ws9{word-spacing:-8.136000px;}
.ws6{word-spacing:-5.220000px;}
.wsa{word-spacing:0.000000px;}
.ws10{word-spacing:79.982160px;}
.wse{word-spacing:198.480000px;}
._10{margin-left:-216.600000px;}
._11{margin-left:-2.592000px;}
._0{margin-left:-1.222560px;}
._1{width:1.692000px;}
._3{width:2.990880px;}
._4{width:4.356480px;}
._2{width:5.668080px;}
._b{width:6.827760px;}
._6{width:8.748000px;}
._7{width:9.774000px;}
._5{width:11.610000px;}
._f{width:14.526000px;}
._9{width:16.308000px;}
._8{width:17.334000px;}
._c{width:18.954000px;}
._24{width:20.302560px;}
._1a{width:21.456000px;}
._a{width:23.490000px;}
._13{width:25.218000px;}
._12{width:26.244000px;}
._1b{width:27.558000px;}
._23{width:29.212560px;}
._e{width:30.348000px;}
._d{width:31.824000px;}
._1e{width:33.121440px;}
._19{width:34.324560px;}
._18{width:35.478000px;}
._22{width:36.774000px;}
._1f{width:38.520000px;}
._21{width:39.955440px;}
._20{width:41.362560px;}
._1d{width:42.658560px;}
._1c{width:49.842000px;}
._15{width:137.826000px;}
._16{width:157.404000px;}
._17{width:206.196000px;}
._14{width:251.034000px;}
.fc8{color:transparent;}
.fc6{color:rgb(0,0,255);}
.fc9{color:rgb(31,73,125);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,167,227);}
.fcb{color:rgb(64,64,64);}
.fca{color:rgb(255,255,255);}
.fc7{color:rgb(127,127,127);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(191,191,191);}
.fc0{color:rgb(38,38,38);}
.fs8{font-size:20.880000px;}
.fs9{font-size:30.240000px;}
.fsc{font-size:35.927534px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fsa{font-size:46.494456px;}
.fs1{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fse{font-size:59.760000px;}
.fsb{font-size:63.200256px;}
.fsf{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsd{font-size:72.144000px;}
.fs6{font-size:108.000000px;}
.fs4{font-size:131.760000px;}
.y76{bottom:-11.271383px;}
.y72{bottom:-1.440000px;}
.y0{bottom:0.000000px;}
.y75{bottom:2.516248px;}
.yd2{bottom:6.660000px;}
.yce{bottom:6.705000px;}
.ycb{bottom:6.840000px;}
.ye8{bottom:6.870000px;}
.ye0{bottom:7.920000px;}
.yd5{bottom:8.100000px;}
.yda{bottom:8.130000px;}
.y101{bottom:8.145000px;}
.yee{bottom:9.720000px;}
.yb5{bottom:16.950000px;}
.yd3{bottom:17.100000px;}
.ycf{bottom:17.145000px;}
.yc9{bottom:17.280000px;}
.ye9{bottom:17.310000px;}
.ybb{bottom:17.532000px;}
.y71{bottom:20.340000px;}
.y9d{bottom:22.395000px;}
.y5{bottom:25.200000px;}
.y74{bottom:26.014755px;}
.yd1{bottom:27.540000px;}
.ycd{bottom:27.585000px;}
.yca{bottom:27.720000px;}
.ye7{bottom:27.750000px;}
.ye2{bottom:27.765000px;}
.y70{bottom:34.560000px;}
.y4{bottom:43.380000px;}
.yf3{bottom:48.600000px;}
.ye1{bottom:48.645000px;}
.y30{bottom:60.480000px;}
.y3{bottom:61.560000px;}
.y6f{bottom:77.040000px;}
.yec{bottom:87.300000px;}
.yb8{bottom:88.170000px;}
.y120{bottom:88.920000px;}
.y6e{bottom:90.900000px;}
.ybc{bottom:91.800000px;}
.yc7{bottom:94.680000px;}
.y73{bottom:95.373000px;}
.y2f{bottom:95.940000px;}
.y8c{bottom:96.120000px;}
.y10b{bottom:97.740000px;}
.yaf{bottom:98.820000px;}
.y132{bottom:102.960000px;}
.y6d{bottom:104.940000px;}
.y11f{bottom:109.980000px;}
.y8b{bottom:112.860000px;}
.yc2{bottom:115.560000px;}
.yae{bottom:115.740000px;}
.yb6{bottom:115.920000px;}
.y2e{bottom:116.820000px;}
.y10a{bottom:118.800000px;}
.y6c{bottom:118.980000px;}
.y131{bottom:123.840000px;}
.yb9{bottom:129.090000px;}
.yeb{bottom:129.960000px;}
.y99{bottom:130.860000px;}
.y6b{bottom:132.840000px;}
.yc1{bottom:136.440000px;}
.yc6{bottom:136.620000px;}
.y2d{bottom:137.880000px;}
.y109{bottom:139.680000px;}
.yb1{bottom:142.485000px;}
.y130{bottom:144.900000px;}
.y6a{bottom:146.880000px;}
.y11e{bottom:151.740000px;}
.y98{bottom:151.920000px;}
.yb2{bottom:153.750000px;}
.y108{bottom:154.620000px;}
.y9c{bottom:156.990000px;}
.yc0{bottom:157.500000px;}
.y2c{bottom:158.760000px;}
.y69{bottom:160.740000px;}
.y12f{bottom:165.780000px;}
.yea{bottom:172.620000px;}
.y97{bottom:172.800000px;}
.y68{bottom:174.810000px;}
.ybf{bottom:178.380000px;}
.yc5{bottom:178.560000px;}
.y2b{bottom:179.640000px;}
.y12e{bottom:186.660000px;}
.y67{bottom:188.670000px;}
.y11d{bottom:193.680000px;}
.y96{bottom:193.860000px;}
.y107{bottom:197.280000px;}
.ybe{bottom:199.440000px;}
.y2a{bottom:200.700000px;}
.y66{bottom:202.710000px;}
.y12d{bottom:207.720000px;}
.y11c{bottom:214.560000px;}
.y95{bottom:214.740000px;}
.ye6{bottom:215.100000px;}
.ybd{bottom:216.180000px;}
.y65{bottom:216.750000px;}
.yc4{bottom:220.320000px;}
.y29{bottom:221.610000px;}
.y12c{bottom:228.630000px;}
.y64{bottom:230.610000px;}
.yb3{bottom:233.640000px;}
.y94{bottom:235.650000px;}
.yc3{bottom:237.270000px;}
.y106{bottom:239.970000px;}
.y28{bottom:242.670000px;}
.y63{bottom:244.650000px;}
.y12b{bottom:249.510000px;}
.y11b{bottom:256.530000px;}
.y93{bottom:256.710000px;}
.ye5{bottom:257.790000px;}
.y62{bottom:258.510000px;}
.y27{bottom:263.550000px;}
.y105{bottom:264.450000px;}
.yb7{bottom:265.470000px;}
.y12a{bottom:270.570000px;}
.y61{bottom:272.550000px;}
.y92{bottom:277.590000px;}
.y26{bottom:284.430000px;}
.y60{bottom:286.410000px;}
.y129{bottom:291.450000px;}
.yba{bottom:292.755000px;}
.yb4{bottom:295.530000px;}
.y9b{bottom:295.560000px;}
.y11a{bottom:298.470000px;}
.y5f{bottom:300.450000px;}
.y25{bottom:305.490000px;}
.y104{bottom:306.930000px;}
.y91{bottom:309.810000px;}
.y9a{bottom:310.140000px;}
.y128{bottom:312.330000px;}
.y5e{bottom:314.490000px;}
.y119{bottom:319.350000px;}
.ye4{bottom:324.930000px;}
.y24{bottom:326.370000px;}
.y5d{bottom:328.350000px;}
.y127{bottom:333.390000px;}
.y118{bottom:340.410000px;}
.y5c{bottom:342.390000px;}
.y23{bottom:347.250000px;}
.y103{bottom:349.590000px;}
.y126{bottom:354.270000px;}
.y5b{bottom:356.250000px;}
.y117{bottom:361.290000px;}
.ye3{bottom:367.410000px;}
.y22{bottom:368.310000px;}
.y5a{bottom:370.290000px;}
.y125{bottom:375.330000px;}
.y59{bottom:383.835000px;}
.y116{bottom:384.510000px;}
.y21{bottom:389.190000px;}
.y102{bottom:392.250000px;}
.y124{bottom:396.210000px;}
.y58{bottom:396.435000px;}
.y57{bottom:409.035000px;}
.y20{bottom:410.070000px;}
.y123{bottom:417.090000px;}
.y56{bottom:421.815000px;}
.y1f{bottom:431.130000px;}
.y55{bottom:434.415000px;}
.y100{bottom:434.910000px;}
.y122{bottom:438.195000px;}
.yad{bottom:446.475000px;}
.y54{bottom:447.015000px;}
.y115{bottom:452.055000px;}
.y1e{bottom:454.395000px;}
.y121{bottom:459.075000px;}
.yff{bottom:459.435000px;}
.y53{bottom:459.615000px;}
.yac{bottom:467.535000px;}
.y52{bottom:470.055000px;}
.y114{bottom:473.115000px;}
.ydf{bottom:473.835000px;}
.y1d{bottom:479.955000px;}
.yab{bottom:488.415000px;}
.y113{bottom:493.995000px;}
.yde{bottom:498.135000px;}
.y1c{bottom:501.015000px;}
.yfe{bottom:501.915000px;}
.y51{bottom:502.455000px;}
.yaa{bottom:509.295000px;}
.y50{bottom:514.875000px;}
.y1b{bottom:521.895000px;}
.y4f{bottom:526.395000px;}
.ya9{bottom:530.355000px;}
.y112{bottom:535.935000px;}
.y4e{bottom:540.255000px;}
.ydd{bottom:540.795000px;}
.y1a{bottom:542.775000px;}
.yfd{bottom:544.575000px;}
.ya8{bottom:551.235000px;}
.y4d{bottom:554.295000px;}
.y111{bottom:556.815000px;}
.y19{bottom:563.835000px;}
.y4c{bottom:568.155000px;}
.ya7{bottom:572.115000px;}
.y110{bottom:577.695000px;}
.y4b{bottom:582.195000px;}
.ydc{bottom:583.455000px;}
.y18{bottom:584.715000px;}
.yfc{bottom:587.235000px;}
.ya6{bottom:593.175000px;}
.y4a{bottom:596.085000px;}
.y10f{bottom:598.755000px;}
.y17{bottom:605.775000px;}
.y49{bottom:610.125000px;}
.yfb{bottom:611.715000px;}
.ya5{bottom:614.055000px;}
.y10e{bottom:619.635000px;}
.y48{bottom:624.165000px;}
.ydb{bottom:626.115000px;}
.y16{bottom:626.655000px;}
.ya4{bottom:634.935000px;}
.y47{bottom:638.025000px;}
.y8a{bottom:640.515000px;}
.y15{bottom:647.535000px;}
.yd9{bottom:650.415000px;}
.y46{bottom:652.065000px;}
.yfa{bottom:654.405000px;}
.ya3{bottom:656.025000px;}
.y89{bottom:661.605000px;}
.y45{bottom:665.925000px;}
.y14{bottom:668.625000px;}
.yd8{bottom:674.925000px;}
.ya2{bottom:676.905000px;}
.y44{bottom:679.965000px;}
.y88{bottom:682.485000px;}
.y13{bottom:689.505000px;}
.y43{bottom:693.825000px;}
.yf9{bottom:696.885000px;}
.ya1{bottom:697.965000px;}
.y87{bottom:703.545000px;}
.y42{bottom:707.865000px;}
.y12{bottom:710.385000px;}
.yd7{bottom:717.405000px;}
.ya0{bottom:718.845000px;}
.yf8{bottom:721.365000px;}
.y41{bottom:721.905000px;}
.y86{bottom:724.425000px;}
.y11{bottom:731.445000px;}
.y40{bottom:735.765000px;}
.y9f{bottom:739.725000px;}
.y85{bottom:745.305000px;}
.y10d{bottom:747.645000px;}
.y3f{bottom:752.145000px;}
.y10{bottom:752.325000px;}
.y9e{bottom:756.645000px;}
.yb0{bottom:756.900000px;}
.yd6{bottom:760.065000px;}
.y3e{bottom:763.665000px;}
.yf7{bottom:764.025000px;}
.y84{bottom:766.365000px;}
.yf{bottom:773.205000px;}
.y3d{bottom:777.705000px;}
.y83{bottom:787.245000px;}
.yf6{bottom:788.325000px;}
.y90{bottom:789.585000px;}
.y3c{bottom:791.565000px;}
.y10c{bottom:794.265000px;}
.ye{bottom:796.605000px;}
.yd4{bottom:802.725000px;}
.y3b{bottom:805.605000px;}
.y82{bottom:808.125000px;}
.y8f{bottom:815.145000px;}
.y3a{bottom:819.690000px;}
.yd{bottom:822.165000px;}
.yd0{bottom:827.205000px;}
.y81{bottom:829.185000px;}
.yf5{bottom:830.985000px;}
.y39{bottom:833.550000px;}
.y8e{bottom:836.025000px;}
.yc{bottom:843.045000px;}
.y38{bottom:847.590000px;}
.y80{bottom:852.405000px;}
.y8d{bottom:857.085000px;}
.y37{bottom:861.450000px;}
.yb{bottom:866.265000px;}
.ycc{bottom:869.865000px;}
.yf4{bottom:873.690000px;}
.y36{bottom:875.490000px;}
.y7f{bottom:878.010000px;}
.y35{bottom:889.350000px;}
.ya{bottom:892.050000px;}
.yf2{bottom:897.990000px;}
.y7e{bottom:899.070000px;}
.y34{bottom:905.730000px;}
.yc8{bottom:912.390000px;}
.y7d{bottom:919.950000px;}
.y9{bottom:922.830000px;}
.y33{bottom:926.610000px;}
.y7c{bottom:940.830000px;}
.y32{bottom:947.670000px;}
.yf1{bottom:961.710000px;}
.y7b{bottom:961.890000px;}
.y31{bottom:968.370000px;}
.y8{bottom:974.130000px;}
.y7a{bottom:982.770000px;}
.yf0{bottom:986.010000px;}
.y79{bottom:1003.650000px;}
.yef{bottom:1010.310000px;}
.y78{bottom:1024.710000px;}
.y7{bottom:1025.250000px;}
.y77{bottom:1045.590000px;}
.yed{bottom:1052.970000px;}
.y6{bottom:1066.470000px;}
.y2{bottom:1104.840000px;}
.y1{bottom:1142.640000px;}
.he{height:16.919297px;}
.h1f{height:23.580000px;}
.h20{height:23.616000px;}
.h25{height:23.760000px;}
.hc{height:26.173828px;}
.h15{height:26.226398px;}
.hb{height:26.279297px;}
.hd{height:26.384766px;}
.h23{height:27.000000px;}
.h13{height:31.499491px;}
.hf{height:31.539375px;}
.h11{height:35.072930px;}
.h10{height:35.806641px;}
.h3{height:39.260742px;}
.h8{height:39.418945px;}
.h7{height:39.577148px;}
.h1e{height:41.760000px;}
.h1d{height:41.796000px;}
.h1c{height:41.940000px;}
.h22{height:41.976000px;}
.h14{height:46.244730px;}
.h6{height:52.347656px;}
.h5{height:52.558594px;}
.h18{height:54.421875px;}
.h26{height:55.503491px;}
.h19{height:60.226875px;}
.h24{height:62.820000px;}
.h21{height:62.856000px;}
.h1b{height:63.855000px;}
.h12{height:65.884219px;}
.h1{height:67.824844px;}
.h2{height:71.613281px;}
.h17{height:72.562500px;}
.ha{height:77.220000px;}
.h4{height:95.796211px;}
.h16{height:323.820000px;}
.h1a{height:324.000000px;}
.h9{height:994.290000px;}
.h0{height:1188.000000px;}
.wc{width:76.716000px;}
.w9{width:77.760000px;}
.wd{width:100.440000px;}
.w3{width:102.375000px;}
.wb{width:104.040000px;}
.wa{width:110.556000px;}
.w8{width:129.456000px;}
.w7{width:183.990000px;}
.w2{width:294.015000px;}
.w5{width:667.980000px;}
.w4{width:695.340000px;}
.w6{width:699.660000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x9{left:-6.290292px;}
.x0{left:0.000000px;}
.xa{left:1.258056px;}
.x20{left:7.740000px;}
.x6{left:10.800000px;}
.xf{left:35.640000px;}
.x5{left:45.000000px;}
.x1{left:53.999986px;}
.x1f{left:65.340000px;}
.xb{left:75.239986px;}
.x7{left:86.436000px;}
.x19{left:109.080000px;}
.xe{left:111.240000px;}
.x1e{left:115.890000px;}
.x13{left:124.920000px;}
.x8{left:143.850000px;}
.x18{left:226.335000px;}
.x15{left:237.600000px;}
.x21{left:250.050000px;}
.x1a{left:254.085000px;}
.x16{left:260.100000px;}
.x17{left:308.520000px;}
.x10{left:330.945000px;}
.x2{left:352.694986px;}
.x4{left:373.934986px;}
.x1b{left:380.445000px;}
.x14{left:398.490000px;}
.x22{left:458.895000px;}
.x26{left:469.694986px;}
.x27{left:490.934986px;}
.x1c{left:503.385000px;}
.x3{left:560.804986px;}
.x23{left:570.165000px;}
.x1d{left:633.135000px;}
.x24{left:674.925000px;}
.x25{left:752.370000px;}
.x11{left:793.049986px;}
.xc{left:797.549986px;}
.xd{left:806.729986px;}
.x12{left:808.889986px;}
@media print{
.v7{vertical-align:-318.613333pt;}
.v6{vertical-align:-238.986667pt;}
.v5{vertical-align:-159.360000pt;}
.v4{vertical-align:-79.626667pt;}
.v3{vertical-align:-33.277417pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.720000pt;}
.ls12{letter-spacing:-1.264000pt;}
.ls19{letter-spacing:-0.816000pt;}
.ls14{letter-spacing:-0.752000pt;}
.ls1d{letter-spacing:-0.672000pt;}
.ls7{letter-spacing:-0.608000pt;}
.ls1b{letter-spacing:-0.528000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.288000pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.225067pt;}
.ls13{letter-spacing:-0.224000pt;}
.ls1f{letter-spacing:-0.208000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.176000pt;}
.ls17{letter-spacing:-0.144000pt;}
.ls1c{letter-spacing:-0.112000pt;}
.ls21{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.032000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.112000pt;}
.ls24{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.280320pt;}
.ls9{letter-spacing:0.320000pt;}
.ls25{letter-spacing:2.016000pt;}
.lsc{letter-spacing:2.720000pt;}
.ls5{letter-spacing:17.496407pt;}
.ls22{letter-spacing:26.336000pt;}
.lsf{letter-spacing:192.469333pt;}
.lse{letter-spacing:192.480000pt;}
.ls10{letter-spacing:192.533333pt;}
.wsf{word-spacing:-208.533333pt;}
.wsb{word-spacing:-48.000000pt;}
.ws8{word-spacing:-26.880000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws2{word-spacing:-12.320000pt;}
.ws15{word-spacing:-12.192000pt;}
.ws12{word-spacing:-12.112000pt;}
.ws23{word-spacing:-12.032000pt;}
.wsc{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.968000pt;}
.ws21{word-spacing:-11.904000pt;}
.ws1b{word-spacing:-11.888000pt;}
.ws16{word-spacing:-11.856000pt;}
.ws1d{word-spacing:-11.824000pt;}
.ws1f{word-spacing:-11.808000pt;}
.ws1e{word-spacing:-11.792000pt;}
.ws11{word-spacing:-11.776000pt;}
.ws20{word-spacing:-11.760000pt;}
.ws17{word-spacing:-11.744000pt;}
.ws19{word-spacing:-11.712000pt;}
.ws22{word-spacing:-11.680000pt;}
.ws1a{word-spacing:-11.472000pt;}
.ws1c{word-spacing:-11.328000pt;}
.ws13{word-spacing:-11.248000pt;}
.ws18{word-spacing:-11.184000pt;}
.wsd{word-spacing:-10.736000pt;}
.ws5{word-spacing:-8.032000pt;}
.ws4{word-spacing:-8.000000pt;}
.ws7{word-spacing:-7.247573pt;}
.ws9{word-spacing:-7.232000pt;}
.ws6{word-spacing:-4.640000pt;}
.wsa{word-spacing:0.000000pt;}
.ws10{word-spacing:71.095253pt;}
.wse{word-spacing:176.426667pt;}
._10{margin-left:-192.533333pt;}
._11{margin-left:-2.304000pt;}
._0{margin-left:-1.086720pt;}
._1{width:1.504000pt;}
._3{width:2.658560pt;}
._4{width:3.872427pt;}
._2{width:5.038293pt;}
._b{width:6.069120pt;}
._6{width:7.776000pt;}
._7{width:8.688000pt;}
._5{width:10.320000pt;}
._f{width:12.912000pt;}
._9{width:14.496000pt;}
._8{width:15.408000pt;}
._c{width:16.848000pt;}
._24{width:18.046720pt;}
._1a{width:19.072000pt;}
._a{width:20.880000pt;}
._13{width:22.416000pt;}
._12{width:23.328000pt;}
._1b{width:24.496000pt;}
._23{width:25.966720pt;}
._e{width:26.976000pt;}
._d{width:28.288000pt;}
._1e{width:29.441280pt;}
._19{width:30.510720pt;}
._18{width:31.536000pt;}
._22{width:32.688000pt;}
._1f{width:34.240000pt;}
._21{width:35.515947pt;}
._20{width:36.766720pt;}
._1d{width:37.918720pt;}
._1c{width:44.304000pt;}
._15{width:122.512000pt;}
._16{width:139.914667pt;}
._17{width:183.285333pt;}
._14{width:223.141333pt;}
.fs8{font-size:18.560000pt;}
.fs9{font-size:26.880000pt;}
.fsc{font-size:31.935586pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fsa{font-size:41.328405pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fse{font-size:53.120000pt;}
.fsb{font-size:56.178005pt;}
.fsf{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsd{font-size:64.128000pt;}
.fs6{font-size:96.000000pt;}
.fs4{font-size:117.120000pt;}
.y76{bottom:-10.019007pt;}
.y72{bottom:-1.280000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:2.236665pt;}
.yd2{bottom:5.920000pt;}
.yce{bottom:5.960000pt;}
.ycb{bottom:6.080000pt;}
.ye8{bottom:6.106667pt;}
.ye0{bottom:7.040000pt;}
.yd5{bottom:7.200000pt;}
.yda{bottom:7.226667pt;}
.y101{bottom:7.240000pt;}
.yee{bottom:8.640000pt;}
.yb5{bottom:15.066667pt;}
.yd3{bottom:15.200000pt;}
.ycf{bottom:15.240000pt;}
.yc9{bottom:15.360000pt;}
.ye9{bottom:15.386667pt;}
.ybb{bottom:15.584000pt;}
.y71{bottom:18.080000pt;}
.y9d{bottom:19.906667pt;}
.y5{bottom:22.400000pt;}
.y74{bottom:23.124227pt;}
.yd1{bottom:24.480000pt;}
.ycd{bottom:24.520000pt;}
.yca{bottom:24.640000pt;}
.ye7{bottom:24.666667pt;}
.ye2{bottom:24.680000pt;}
.y70{bottom:30.720000pt;}
.y4{bottom:38.560000pt;}
.yf3{bottom:43.200000pt;}
.ye1{bottom:43.240000pt;}
.y30{bottom:53.760000pt;}
.y3{bottom:54.720000pt;}
.y6f{bottom:68.480000pt;}
.yec{bottom:77.600000pt;}
.yb8{bottom:78.373333pt;}
.y120{bottom:79.040000pt;}
.y6e{bottom:80.800000pt;}
.ybc{bottom:81.600000pt;}
.yc7{bottom:84.160000pt;}
.y73{bottom:84.776000pt;}
.y2f{bottom:85.280000pt;}
.y8c{bottom:85.440000pt;}
.y10b{bottom:86.880000pt;}
.yaf{bottom:87.840000pt;}
.y132{bottom:91.520000pt;}
.y6d{bottom:93.280000pt;}
.y11f{bottom:97.760000pt;}
.y8b{bottom:100.320000pt;}
.yc2{bottom:102.720000pt;}
.yae{bottom:102.880000pt;}
.yb6{bottom:103.040000pt;}
.y2e{bottom:103.840000pt;}
.y10a{bottom:105.600000pt;}
.y6c{bottom:105.760000pt;}
.y131{bottom:110.080000pt;}
.yb9{bottom:114.746667pt;}
.yeb{bottom:115.520000pt;}
.y99{bottom:116.320000pt;}
.y6b{bottom:118.080000pt;}
.yc1{bottom:121.280000pt;}
.yc6{bottom:121.440000pt;}
.y2d{bottom:122.560000pt;}
.y109{bottom:124.160000pt;}
.yb1{bottom:126.653333pt;}
.y130{bottom:128.800000pt;}
.y6a{bottom:130.560000pt;}
.y11e{bottom:134.880000pt;}
.y98{bottom:135.040000pt;}
.yb2{bottom:136.666667pt;}
.y108{bottom:137.440000pt;}
.y9c{bottom:139.546667pt;}
.yc0{bottom:140.000000pt;}
.y2c{bottom:141.120000pt;}
.y69{bottom:142.880000pt;}
.y12f{bottom:147.360000pt;}
.yea{bottom:153.440000pt;}
.y97{bottom:153.600000pt;}
.y68{bottom:155.386667pt;}
.ybf{bottom:158.560000pt;}
.yc5{bottom:158.720000pt;}
.y2b{bottom:159.680000pt;}
.y12e{bottom:165.920000pt;}
.y67{bottom:167.706667pt;}
.y11d{bottom:172.160000pt;}
.y96{bottom:172.320000pt;}
.y107{bottom:175.360000pt;}
.ybe{bottom:177.280000pt;}
.y2a{bottom:178.400000pt;}
.y66{bottom:180.186667pt;}
.y12d{bottom:184.640000pt;}
.y11c{bottom:190.720000pt;}
.y95{bottom:190.880000pt;}
.ye6{bottom:191.200000pt;}
.ybd{bottom:192.160000pt;}
.y65{bottom:192.666667pt;}
.yc4{bottom:195.840000pt;}
.y29{bottom:196.986667pt;}
.y12c{bottom:203.226667pt;}
.y64{bottom:204.986667pt;}
.yb3{bottom:207.680000pt;}
.y94{bottom:209.466667pt;}
.yc3{bottom:210.906667pt;}
.y106{bottom:213.306667pt;}
.y28{bottom:215.706667pt;}
.y63{bottom:217.466667pt;}
.y12b{bottom:221.786667pt;}
.y11b{bottom:228.026667pt;}
.y93{bottom:228.186667pt;}
.ye5{bottom:229.146667pt;}
.y62{bottom:229.786667pt;}
.y27{bottom:234.266667pt;}
.y105{bottom:235.066667pt;}
.yb7{bottom:235.973333pt;}
.y12a{bottom:240.506667pt;}
.y61{bottom:242.266667pt;}
.y92{bottom:246.746667pt;}
.y26{bottom:252.826667pt;}
.y60{bottom:254.586667pt;}
.y129{bottom:259.066667pt;}
.yba{bottom:260.226667pt;}
.yb4{bottom:262.693333pt;}
.y9b{bottom:262.720000pt;}
.y11a{bottom:265.306667pt;}
.y5f{bottom:267.066667pt;}
.y25{bottom:271.546667pt;}
.y104{bottom:272.826667pt;}
.y91{bottom:275.386667pt;}
.y9a{bottom:275.680000pt;}
.y128{bottom:277.626667pt;}
.y5e{bottom:279.546667pt;}
.y119{bottom:283.866667pt;}
.ye4{bottom:288.826667pt;}
.y24{bottom:290.106667pt;}
.y5d{bottom:291.866667pt;}
.y127{bottom:296.346667pt;}
.y118{bottom:302.586667pt;}
.y5c{bottom:304.346667pt;}
.y23{bottom:308.666667pt;}
.y103{bottom:310.746667pt;}
.y126{bottom:314.906667pt;}
.y5b{bottom:316.666667pt;}
.y117{bottom:321.146667pt;}
.ye3{bottom:326.586667pt;}
.y22{bottom:327.386667pt;}
.y5a{bottom:329.146667pt;}
.y125{bottom:333.626667pt;}
.y59{bottom:341.186667pt;}
.y116{bottom:341.786667pt;}
.y21{bottom:345.946667pt;}
.y102{bottom:348.666667pt;}
.y124{bottom:352.186667pt;}
.y58{bottom:352.386667pt;}
.y57{bottom:363.586667pt;}
.y20{bottom:364.506667pt;}
.y123{bottom:370.746667pt;}
.y56{bottom:374.946667pt;}
.y1f{bottom:383.226667pt;}
.y55{bottom:386.146667pt;}
.y100{bottom:386.586667pt;}
.y122{bottom:389.506667pt;}
.yad{bottom:396.866667pt;}
.y54{bottom:397.346667pt;}
.y115{bottom:401.826667pt;}
.y1e{bottom:403.906667pt;}
.y121{bottom:408.066667pt;}
.yff{bottom:408.386667pt;}
.y53{bottom:408.546667pt;}
.yac{bottom:415.586667pt;}
.y52{bottom:417.826667pt;}
.y114{bottom:420.546667pt;}
.ydf{bottom:421.186667pt;}
.y1d{bottom:426.626667pt;}
.yab{bottom:434.146667pt;}
.y113{bottom:439.106667pt;}
.yde{bottom:442.786667pt;}
.y1c{bottom:445.346667pt;}
.yfe{bottom:446.146667pt;}
.y51{bottom:446.626667pt;}
.yaa{bottom:452.706667pt;}
.y50{bottom:457.666667pt;}
.y1b{bottom:463.906667pt;}
.y4f{bottom:467.906667pt;}
.ya9{bottom:471.426667pt;}
.y112{bottom:476.386667pt;}
.y4e{bottom:480.226667pt;}
.ydd{bottom:480.706667pt;}
.y1a{bottom:482.466667pt;}
.yfd{bottom:484.066667pt;}
.ya8{bottom:489.986667pt;}
.y4d{bottom:492.706667pt;}
.y111{bottom:494.946667pt;}
.y19{bottom:501.186667pt;}
.y4c{bottom:505.026667pt;}
.ya7{bottom:508.546667pt;}
.y110{bottom:513.506667pt;}
.y4b{bottom:517.506667pt;}
.ydc{bottom:518.626667pt;}
.y18{bottom:519.746667pt;}
.yfc{bottom:521.986667pt;}
.ya6{bottom:527.266667pt;}
.y4a{bottom:529.853333pt;}
.y10f{bottom:532.226667pt;}
.y17{bottom:538.466667pt;}
.y49{bottom:542.333333pt;}
.yfb{bottom:543.746667pt;}
.ya5{bottom:545.826667pt;}
.y10e{bottom:550.786667pt;}
.y48{bottom:554.813333pt;}
.ydb{bottom:556.546667pt;}
.y16{bottom:557.026667pt;}
.ya4{bottom:564.386667pt;}
.y47{bottom:567.133333pt;}
.y8a{bottom:569.346667pt;}
.y15{bottom:575.586667pt;}
.yd9{bottom:578.146667pt;}
.y46{bottom:579.613333pt;}
.yfa{bottom:581.693333pt;}
.ya3{bottom:583.133333pt;}
.y89{bottom:588.093333pt;}
.y45{bottom:591.933333pt;}
.y14{bottom:594.333333pt;}
.yd8{bottom:599.933333pt;}
.ya2{bottom:601.693333pt;}
.y44{bottom:604.413333pt;}
.y88{bottom:606.653333pt;}
.y13{bottom:612.893333pt;}
.y43{bottom:616.733333pt;}
.yf9{bottom:619.453333pt;}
.ya1{bottom:620.413333pt;}
.y87{bottom:625.373333pt;}
.y42{bottom:629.213333pt;}
.y12{bottom:631.453333pt;}
.yd7{bottom:637.693333pt;}
.ya0{bottom:638.973333pt;}
.yf8{bottom:641.213333pt;}
.y41{bottom:641.693333pt;}
.y86{bottom:643.933333pt;}
.y11{bottom:650.173333pt;}
.y40{bottom:654.013333pt;}
.y9f{bottom:657.533333pt;}
.y85{bottom:662.493333pt;}
.y10d{bottom:664.573333pt;}
.y3f{bottom:668.573333pt;}
.y10{bottom:668.733333pt;}
.y9e{bottom:672.573333pt;}
.yb0{bottom:672.800000pt;}
.yd6{bottom:675.613333pt;}
.y3e{bottom:678.813333pt;}
.yf7{bottom:679.133333pt;}
.y84{bottom:681.213333pt;}
.yf{bottom:687.293333pt;}
.y3d{bottom:691.293333pt;}
.y83{bottom:699.773333pt;}
.yf6{bottom:700.733333pt;}
.y90{bottom:701.853333pt;}
.y3c{bottom:703.613333pt;}
.y10c{bottom:706.013333pt;}
.ye{bottom:708.093333pt;}
.yd4{bottom:713.533333pt;}
.y3b{bottom:716.093333pt;}
.y82{bottom:718.333333pt;}
.y8f{bottom:724.573333pt;}
.y3a{bottom:728.613333pt;}
.yd{bottom:730.813333pt;}
.yd0{bottom:735.293333pt;}
.y81{bottom:737.053333pt;}
.yf5{bottom:738.653333pt;}
.y39{bottom:740.933333pt;}
.y8e{bottom:743.133333pt;}
.yc{bottom:749.373333pt;}
.y38{bottom:753.413333pt;}
.y80{bottom:757.693333pt;}
.y8d{bottom:761.853333pt;}
.y37{bottom:765.733333pt;}
.yb{bottom:770.013333pt;}
.ycc{bottom:773.213333pt;}
.yf4{bottom:776.613333pt;}
.y36{bottom:778.213333pt;}
.y7f{bottom:780.453333pt;}
.y35{bottom:790.533333pt;}
.ya{bottom:792.933333pt;}
.yf2{bottom:798.213333pt;}
.y7e{bottom:799.173333pt;}
.y34{bottom:805.093333pt;}
.yc8{bottom:811.013333pt;}
.y7d{bottom:817.733333pt;}
.y9{bottom:820.293333pt;}
.y33{bottom:823.653333pt;}
.y7c{bottom:836.293333pt;}
.y32{bottom:842.373333pt;}
.yf1{bottom:854.853333pt;}
.y7b{bottom:855.013333pt;}
.y31{bottom:860.773333pt;}
.y8{bottom:865.893333pt;}
.y7a{bottom:873.573333pt;}
.yf0{bottom:876.453333pt;}
.y79{bottom:892.133333pt;}
.yef{bottom:898.053333pt;}
.y78{bottom:910.853333pt;}
.y7{bottom:911.333333pt;}
.y77{bottom:929.413333pt;}
.yed{bottom:935.973333pt;}
.y6{bottom:947.973333pt;}
.y2{bottom:982.080000pt;}
.y1{bottom:1015.680000pt;}
.he{height:15.039375pt;}
.h1f{height:20.960000pt;}
.h20{height:20.992000pt;}
.h25{height:21.120000pt;}
.hc{height:23.265625pt;}
.h15{height:23.312354pt;}
.hb{height:23.359375pt;}
.hd{height:23.453125pt;}
.h23{height:24.000000pt;}
.h13{height:27.999547pt;}
.hf{height:28.035000pt;}
.h11{height:31.175937pt;}
.h10{height:31.828125pt;}
.h3{height:34.898438pt;}
.h8{height:35.039062pt;}
.h7{height:35.179688pt;}
.h1e{height:37.120000pt;}
.h1d{height:37.152000pt;}
.h1c{height:37.280000pt;}
.h22{height:37.312000pt;}
.h14{height:41.106426pt;}
.h6{height:46.531250pt;}
.h5{height:46.718750pt;}
.h18{height:48.375000pt;}
.h26{height:49.336436pt;}
.h19{height:53.535000pt;}
.h24{height:55.840000pt;}
.h21{height:55.872000pt;}
.h1b{height:56.760000pt;}
.h12{height:58.563750pt;}
.h1{height:60.288750pt;}
.h2{height:63.656250pt;}
.h17{height:64.500000pt;}
.ha{height:68.640000pt;}
.h4{height:85.152187pt;}
.h16{height:287.840000pt;}
.h1a{height:288.000000pt;}
.h9{height:883.813333pt;}
.h0{height:1056.000000pt;}
.wc{width:68.192000pt;}
.w9{width:69.120000pt;}
.wd{width:89.280000pt;}
.w3{width:91.000000pt;}
.wb{width:92.480000pt;}
.wa{width:98.272000pt;}
.w8{width:115.072000pt;}
.w7{width:163.546667pt;}
.w2{width:261.346667pt;}
.w5{width:593.760000pt;}
.w4{width:618.080000pt;}
.w6{width:621.920000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x9{left:-5.591370pt;}
.x0{left:0.000000pt;}
.xa{left:1.118272pt;}
.x20{left:6.880000pt;}
.x6{left:9.600000pt;}
.xf{left:31.680000pt;}
.x5{left:40.000000pt;}
.x1{left:47.999988pt;}
.x1f{left:58.080000pt;}
.xb{left:66.879988pt;}
.x7{left:76.832000pt;}
.x19{left:96.960000pt;}
.xe{left:98.880000pt;}
.x1e{left:103.013333pt;}
.x13{left:111.040000pt;}
.x8{left:127.866667pt;}
.x18{left:201.186667pt;}
.x15{left:211.200000pt;}
.x21{left:222.266667pt;}
.x1a{left:225.853333pt;}
.x16{left:231.200000pt;}
.x17{left:274.240000pt;}
.x10{left:294.173333pt;}
.x2{left:313.506655pt;}
.x4{left:332.386655pt;}
.x1b{left:338.173333pt;}
.x14{left:354.213333pt;}
.x22{left:407.906667pt;}
.x26{left:417.506655pt;}
.x27{left:436.386655pt;}
.x1c{left:447.453333pt;}
.x3{left:498.493321pt;}
.x23{left:506.813333pt;}
.x1d{left:562.786667pt;}
.x24{left:599.933333pt;}
.x25{left:668.773333pt;}
.x11{left:704.933321pt;}
.xc{left:708.933321pt;}
.xd{left:717.093321pt;}
.x12{left:719.013321pt;}
}




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