
    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_9b695ce7d20f896c53238b62.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_87fe1e273b289b68180315e5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_039bd232d59afd3eca7ab8a7.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_923d8050a16dd06db09a7dd4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.059082;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_2f4f75c3a1fe8c7e12891a19.woff')format("woff");}.ff5{font-family:ff5;line-height:1.059082;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_030261dabff666ed6c229889.woff')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_640535e33ed1dbde42329163.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_28fc5da19721575075159a59.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cd0f806b7a60d4a6d31d55b7.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls16{letter-spacing:-1.926000px;}
.ls17{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-1.422000px;}
.ls9{letter-spacing:-0.972000px;}
.ls15{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.498000px;}
.ls13{letter-spacing:-0.486600px;}
.ls7{letter-spacing:-0.457800px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.017280px;}
.ls10{letter-spacing:0.020160px;}
.ls2{letter-spacing:0.423360px;}
.ls19{letter-spacing:0.449400px;}
.lsa{letter-spacing:0.466800px;}
.lsb{letter-spacing:0.486600px;}
.ls0{letter-spacing:0.498240px;}
.ls20{letter-spacing:0.506880px;}
.ls1d{letter-spacing:0.507000px;}
.ls24{letter-spacing:0.714000px;}
.ls1{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.840000px;}
.lse{letter-spacing:2.160000px;}
.ls3{letter-spacing:3.600000px;}
.ls12{letter-spacing:5.040000px;}
.ls1f{letter-spacing:6.480000px;}
.ls1a{letter-spacing:7.920000px;}
.ls1c{letter-spacing:9.360000px;}
.ls14{letter-spacing:10.800000px;}
.lsf{letter-spacing:12.240000px;}
.ls21{letter-spacing:13.680000px;}
.ls11{letter-spacing:20.880000px;}
.ls23{letter-spacing:21.905280px;}
.ls1b{letter-spacing:23.760000px;}
.ls1e{letter-spacing:45.118560px;}
.ls4{letter-spacing:46.558560px;}
.ls22{letter-spacing:55.025280px;}
.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;}
}
.ws3{word-spacing:-23.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.wsf{word-spacing:-15.627000px;}
.ws6{word-spacing:-15.606600px;}
.wsa{word-spacing:-15.586800px;}
.ws5{word-spacing:-15.543360px;}
.wsb{word-spacing:-15.140160px;}
.ws4{word-spacing:-15.120000px;}
.ws8{word-spacing:-14.633400px;}
.wse{word-spacing:-13.698000px;}
.wsd{word-spacing:-13.680000px;}
.wsc{word-spacing:-13.194000px;}
.ws2{word-spacing:-13.182000px;}
.ws10{word-spacing:-10.434000px;}
.ws9{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._24{margin-left:-5.793600px;}
._13{margin-left:-4.448640px;}
._12{margin-left:-3.448320px;}
._3{margin-left:-2.039040px;}
._0{margin-left:-1.028160px;}
._1{width:1.816800px;}
._6{width:3.287040px;}
._8{width:4.960320px;}
._15{width:6.331200px;}
._14{width:7.548960px;}
._c{width:8.639040px;}
._d{width:9.686400px;}
._b{width:10.794720px;}
._e{width:12.199680px;}
._f{width:14.031360px;}
._10{width:16.834560px;}
._11{width:18.774720px;}
._1a{width:20.690400px;}
._19{width:22.256640px;}
._1d{width:24.264960px;}
._a{width:25.710240px;}
._9{width:28.062720px;}
._1c{width:29.063520px;}
._1b{width:30.341280px;}
._23{width:36.867840px;}
._22{width:38.102400px;}
._2e{width:40.790880px;}
._2c{width:42.016320px;}
._2d{width:43.225920px;}
._2a{width:56.730240px;}
._2b{width:57.785760px;}
._21{width:65.422080px;}
._20{width:66.816480px;}
._1f{width:81.280320px;}
._1e{width:82.944000px;}
._27{width:93.990240px;}
._25{width:95.074560px;}
._26{width:96.428640px;}
._5{width:113.926560px;}
._4{width:115.668000px;}
._28{width:120.778560px;}
._29{width:122.270880px;}
._2{width:646.140000px;}
._7{width:1056.696000px;}
._18{width:1252.680000px;}
._16{width:1275.720000px;}
._17{width:1304.496000px;}
.fc7{color:rgb(112,173,71);}
.fc6{color:transparent;}
.fc5{color:rgb(118,113,113);}
.fc4{color:rgb(83,129,53);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(192,0,0);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:83.520000px;}
.fs6{font-size:96.480000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:2.880000px;}
.y8e{bottom:3.240000px;}
.y88{bottom:3.960000px;}
.y13{bottom:4.680000px;}
.y83{bottom:5.040000px;}
.y9d{bottom:5.760000px;}
.y9a{bottom:6.480000px;}
.ya5{bottom:7.920000px;}
.y7d{bottom:9.000000px;}
.yac{bottom:11.520000px;}
.ye{bottom:11.556000px;}
.y90{bottom:11.880000px;}
.y8a{bottom:12.600000px;}
.y80{bottom:14.430000px;}
.y9f{bottom:15.120000px;}
.ya2{bottom:17.280000px;}
.yd{bottom:19.836000px;}
.y8d{bottom:20.520000px;}
.y94{bottom:20.550000px;}
.ya9{bottom:20.880000px;}
.y87{bottom:21.240000px;}
.y99{bottom:23.760000px;}
.y82{bottom:23.790000px;}
.y9c{bottom:24.480000px;}
.ya4{bottom:26.640000px;}
.y96{bottom:29.190000px;}
.y89{bottom:29.880000px;}
.yab{bottom:30.240000px;}
.y8f{bottom:30.600000px;}
.y7f{bottom:31.710000px;}
.y84{bottom:32.790000px;}
.y9e{bottom:33.840000px;}
.ya1{bottom:34.560000px;}
.ya6{bottom:36.000000px;}
.y12{bottom:36.360000px;}
.y93{bottom:37.830000px;}
.y8c{bottom:37.845000px;}
.ya8{bottom:38.160000px;}
.y86{bottom:38.520000px;}
.yad{bottom:39.600000px;}
.y98{bottom:41.040000px;}
.y81{bottom:42.150000px;}
.y9b{bottom:43.200000px;}
.yf{bottom:43.560000px;}
.ya3{bottom:45.360000px;}
.y95{bottom:46.470000px;}
.yaa{bottom:48.645000px;}
.y92{bottom:55.110000px;}
.y11{bottom:68.040000px;}
.yc{bottom:68.400000px;}
.y7a{bottom:68.436000px;}
.y44{bottom:94.716000px;}
.ya{bottom:111.636000px;}
.y43{bottom:115.956000px;}
.y9{bottom:133.236000px;}
.y15e{bottom:134.316000px;}
.yb7{bottom:136.476000px;}
.yde{bottom:137.196000px;}
.y181{bottom:142.596000px;}
.y76{bottom:146.556000px;}
.y13c{bottom:147.276000px;}
.yba{bottom:150.510000px;}
.y3f{bottom:151.950000px;}
.yb6{bottom:153.750000px;}
.y15d{bottom:154.110000px;}
.y10c{bottom:155.190000px;}
.ydd{bottom:156.990000px;}
.y1a7{bottom:157.710000px;}
.yb5{bottom:159.150000px;}
.y180{bottom:162.390000px;}
.y75{bottom:165.270000px;}
.y13b{bottom:167.070000px;}
.yb9{bottom:170.310000px;}
.y74{bottom:170.670000px;}
.y3e{bottom:171.750000px;}
.y10b{bottom:172.470000px;}
.y15c{bottom:173.910000px;}
.yca{bottom:174.990000px;}
.ybe{bottom:176.070000px;}
.ydc{bottom:176.790000px;}
.y73{bottom:182.550000px;}
.y1a6{bottom:183.630000px;}
.y13a{bottom:186.870000px;}
.ybd{bottom:187.950000px;}
.y10a{bottom:189.750000px;}
.yb8{bottom:190.110000px;}
.y3d{bottom:191.550000px;}
.yc9{bottom:193.710000px;}
.ydb{bottom:196.590000px;}
.y139{bottom:206.715000px;}
.y109{bottom:207.075000px;}
.yb4{bottom:209.955000px;}
.y1a5{bottom:211.035000px;}
.y3c{bottom:211.755000px;}
.yc8{bottom:212.475000px;}
.y15b{bottom:213.555000px;}
.y17f{bottom:215.715000px;}
.yc7{bottom:217.875000px;}
.yda{bottom:222.555000px;}
.y108{bottom:224.355000px;}
.y72{bottom:225.795000px;}
.yb3{bottom:229.755000px;}
.y3b{bottom:231.555000px;}
.yc6{bottom:232.635000px;}
.y138{bottom:232.995000px;}
.y15a{bottom:233.355000px;}
.y1a4{bottom:236.595000px;}
.ybc{bottom:240.555000px;}
.y17e{bottom:241.635000px;}
.yd9{bottom:242.355000px;}
.y71{bottom:245.595000px;}
.yb2{bottom:249.555000px;}
.yc5{bottom:249.915000px;}
.y107{bottom:250.275000px;}
.y3a{bottom:251.355000px;}
.y159{bottom:253.155000px;}
.yd8{bottom:262.155000px;}
.y1a3{bottom:262.515000px;}
.y70{bottom:265.395000px;}
.yc4{bottom:267.195000px;}
.y137{bottom:267.555000px;}
.yb1{bottom:269.355000px;}
.y106{bottom:270.075000px;}
.yc3{bottom:272.595000px;}
.y158{bottom:272.955000px;}
.ya7{bottom:276.225000px;}
.yd7{bottom:281.955000px;}
.yc2{bottom:284.475000px;}
.y136{bottom:284.835000px;}
.y39{bottom:286.275000px;}
.y17d{bottom:288.435000px;}
.yb0{bottom:289.515000px;}
.y105{bottom:289.875000px;}
.y157{bottom:292.755000px;}
.y6f{bottom:300.315000px;}
.yd6{bottom:302.115000px;}
.y17c{bottom:308.235000px;}
.yaf{bottom:309.315000px;}
.y104{bottom:309.675000px;}
.y38{bottom:312.555000px;}
.y1a2{bottom:314.355000px;}
.y156{bottom:318.675000px;}
.y135{bottom:319.395000px;}
.yd5{bottom:321.915000px;}
.y6e{bottom:329.145000px;}
.y103{bottom:329.505000px;}
.y17b{bottom:329.865000px;}
.y37{bottom:332.385000px;}
.y1a1{bottom:340.305000px;}
.yd4{bottom:341.745000px;}
.y155{bottom:344.625000px;}
.y134{bottom:344.985000px;}
.y6d{bottom:348.945000px;}
.y102{bottom:349.305000px;}
.y36{bottom:349.665000px;}
.ya0{bottom:350.430000px;}
.yd3{bottom:361.545000px;}
.y133{bottom:364.785000px;}
.y1a0{bottom:366.225000px;}
.y6c{bottom:368.745000px;}
.y101{bottom:369.105000px;}
.y154{bottom:370.545000px;}
.y35{bottom:375.945000px;}
.y17a{bottom:376.665000px;}
.yd2{bottom:381.345000px;}
.y132{bottom:384.585000px;}
.y19f{bottom:387.465000px;}
.y6b{bottom:388.545000px;}
.y100{bottom:388.905000px;}
.y153{bottom:396.465000px;}
.yd1{bottom:401.145000px;}
.y34{bottom:402.225000px;}
.y179{bottom:402.585000px;}
.y131{bottom:404.385000px;}
.y6a{bottom:408.345000px;}
.yff{bottom:409.065000px;}
.yc1{bottom:413.745000px;}
.y19e{bottom:414.825000px;}
.y97{bottom:417.780000px;}
.y33{bottom:419.505000px;}
.yd0{bottom:420.945000px;}
.y152{bottom:422.385000px;}
.y130{bottom:424.545000px;}
.y69{bottom:428.145000px;}
.yfe{bottom:428.865000px;}
.y178{bottom:429.945000px;}
.y32{bottom:436.425000px;}
.y19d{bottom:440.385000px;}
.ycf{bottom:440.745000px;}
.y12f{bottom:444.345000px;}
.y68{bottom:447.945000px;}
.y151{bottom:448.305000px;}
.yfd{bottom:448.665000px;}
.ybb{bottom:453.390000px;}
.y31{bottom:453.750000px;}
.y177{bottom:455.910000px;}
.yce{bottom:460.590000px;}
.y12e{bottom:464.190000px;}
.y19c{bottom:466.350000px;}
.y67{bottom:467.790000px;}
.yfc{bottom:468.510000px;}
.y30{bottom:471.030000px;}
.yc0{bottom:473.190000px;}
.y150{bottom:473.910000px;}
.y91{bottom:480.780000px;}
.y176{bottom:481.830000px;}
.y12d{bottom:483.990000px;}
.ycd{bottom:486.870000px;}
.y66{bottom:487.950000px;}
.y2f{bottom:488.310000px;}
.y19b{bottom:493.710000px;}
.y14f{bottom:499.830000px;}
.y175{bottom:503.070000px;}
.y12c{bottom:503.790000px;}
.ycc{bottom:504.150000px;}
.y2e{bottom:505.590000px;}
.y65{bottom:507.750000px;}
.yfb{bottom:508.110000px;}
.yae{bottom:513.150000px;}
.y19a{bottom:519.630000px;}
.ycb{bottom:521.430000px;}
.y2d{bottom:522.870000px;}
.y12b{bottom:523.590000px;}
.y14e{bottom:525.750000px;}
.y64{bottom:527.550000px;}
.yfa{bottom:527.910000px;}
.y174{bottom:530.430000px;}
.y2c{bottom:540.150000px;}
.y12a{bottom:543.390000px;}
.y199{bottom:545.550000px;}
.y63{bottom:547.350000px;}
.yf9{bottom:547.710000px;}
.y14d{bottom:551.670000px;}
.y8b{bottom:554.250000px;}
.y173{bottom:555.990000px;}
.y2b{bottom:557.430000px;}
.y129{bottom:563.190000px;}
.y62{bottom:567.150000px;}
.yf8{bottom:567.510000px;}
.y198{bottom:572.910000px;}
.y2a{bottom:574.710000px;}
.y14c{bottom:577.620000px;}
.y172{bottom:581.940000px;}
.y128{bottom:583.020000px;}
.y61{bottom:586.980000px;}
.yf7{bottom:587.340000px;}
.y29{bottom:592.020000px;}
.y197{bottom:598.500000px;}
.y127{bottom:602.820000px;}
.y14b{bottom:603.540000px;}
.y60{bottom:606.780000px;}
.yf6{bottom:607.500000px;}
.y28{bottom:609.300000px;}
.y85{bottom:610.455000px;}
.y126{bottom:622.980000px;}
.y196{bottom:625.860000px;}
.y27{bottom:626.220000px;}
.y5f{bottom:626.580000px;}
.yf5{bottom:627.300000px;}
.y14a{bottom:629.460000px;}
.y171{bottom:635.220000px;}
.y125{bottom:642.780000px;}
.y26{bottom:643.500000px;}
.y5e{bottom:646.380000px;}
.yf4{bottom:647.100000px;}
.y195{bottom:653.220000px;}
.y149{bottom:655.020000px;}
.y25{bottom:660.780000px;}
.y124{bottom:662.580000px;}
.y5d{bottom:666.180000px;}
.yf3{bottom:666.900000px;}
.y7e{bottom:667.695000px;}
.y24{bottom:678.060000px;}
.y194{bottom:680.580000px;}
.y148{bottom:680.940000px;}
.y123{bottom:682.380000px;}
.y5c{bottom:686.340000px;}
.yf2{bottom:686.700000px;}
.y170{bottom:689.580000px;}
.y23{bottom:695.340000px;}
.y122{bottom:702.210000px;}
.y5a{bottom:706.170000px;}
.yf1{bottom:706.530000px;}
.y147{bottom:706.890000px;}
.y5b{bottom:711.570000px;}
.y22{bottom:712.650000px;}
.y16f{bottom:715.530000px;}
.y121{bottom:722.010000px;}
.y59{bottom:725.970000px;}
.yf0{bottom:726.330000px;}
.y193{bottom:727.770000px;}
.y7c{bottom:728.925000px;}
.y21{bottom:729.930000px;}
.y146{bottom:732.810000px;}
.y120{bottom:741.810000px;}
.y16e{bottom:742.890000px;}
.y58{bottom:745.770000px;}
.yef{bottom:746.130000px;}
.y20{bottom:747.210000px;}
.y192{bottom:747.570000px;}
.y145{bottom:758.730000px;}
.y11f{bottom:761.610000px;}
.y1f{bottom:764.490000px;}
.y57{bottom:765.570000px;}
.yee{bottom:765.930000px;}
.y16d{bottom:768.810000px;}
.y7b{bottom:772.530000px;}
.y191{bottom:774.570000px;}
.y11e{bottom:781.410000px;}
.y1e{bottom:781.770000px;}
.y144{bottom:784.650000px;}
.y56{bottom:785.370000px;}
.yed{bottom:785.730000px;}
.y79{bottom:790.170000px;}
.y16c{bottom:796.170000px;}
.y190{bottom:800.490000px;}
.y11d{bottom:801.210000px;}
.y1d{bottom:803.370000px;}
.y78{bottom:804.210000px;}
.y55{bottom:805.170000px;}
.yec{bottom:805.890000px;}
.ybf{bottom:810.570000px;}
.y11c{bottom:821.370000px;}
.y16b{bottom:821.730000px;}
.y1b1{bottom:823.170000px;}
.y54{bottom:824.970000px;}
.yeb{bottom:825.690000px;}
.y18f{bottom:826.410000px;}
.y77{bottom:831.930000px;}
.y143{bottom:836.535000px;}
.y1c{bottom:837.975000px;}
.y11b{bottom:841.215000px;}
.y1b0{bottom:843.015000px;}
.y16a{bottom:843.375000px;}
.y53{bottom:844.815000px;}
.yea{bottom:845.535000px;}
.y18e{bottom:853.815000px;}
.y1b{bottom:855.615000px;}
.y11a{bottom:861.015000px;}
.y142{bottom:862.095000px;}
.y1af{bottom:862.815000px;}
.y169{bottom:863.175000px;}
.y52{bottom:864.615000px;}
.ye9{bottom:865.335000px;}
.y18d{bottom:879.735000px;}
.y119{bottom:880.815000px;}
.y51{bottom:884.415000px;}
.y1a{bottom:884.775000px;}
.ye8{bottom:885.135000px;}
.y141{bottom:888.015000px;}
.y1ae{bottom:890.175000px;}
.y118{bottom:900.615000px;}
.y168{bottom:904.215000px;}
.y50{bottom:904.575000px;}
.ye7{bottom:904.935000px;}
.y18c{bottom:905.295000px;}
.y19{bottom:907.095000px;}
.y140{bottom:913.935000px;}
.y1ad{bottom:916.095000px;}
.y117{bottom:920.415000px;}
.y167{bottom:924.015000px;}
.y18{bottom:924.375000px;}
.ye6{bottom:924.735000px;}
.y18b{bottom:926.895000px;}
.y13f{bottom:939.855000px;}
.y116{bottom:940.215000px;}
.y1ac{bottom:942.015000px;}
.y4f{bottom:944.175000px;}
.ye5{bottom:944.535000px;}
.y166{bottom:945.255000px;}
.y18a{bottom:946.695000px;}
.y17{bottom:948.855000px;}
.y115{bottom:960.045000px;}
.y4e{bottom:964.005000px;}
.y165{bottom:965.085000px;}
.y13e{bottom:965.805000px;}
.y189{bottom:966.525000px;}
.y1ab{bottom:969.405000px;}
.ye4{bottom:970.845000px;}
.y16{bottom:973.005000px;}
.y114{bottom:979.845000px;}
.y4d{bottom:983.805000px;}
.ye3{bottom:988.125000px;}
.y164{bottom:992.445000px;}
.y188{bottom:993.885000px;}
.y13d{bottom:994.605000px;}
.y1aa{bottom:994.965000px;}
.y15{bottom:997.125000px;}
.y113{bottom:999.645000px;}
.y4c{bottom:1003.605000px;}
.ye2{bottom:1005.405000px;}
.y163{bottom:1013.685000px;}
.y187{bottom:1019.445000px;}
.y112{bottom:1019.805000px;}
.y1a9{bottom:1020.885000px;}
.y14{bottom:1021.605000px;}
.ye1{bottom:1022.685000px;}
.y4b{bottom:1023.405000px;}
.y111{bottom:1039.605000px;}
.ye0{bottom:1039.965000px;}
.y162{bottom:1040.685000px;}
.y4a{bottom:1043.205000px;}
.y186{bottom:1046.805000px;}
.y8{bottom:1047.165000px;}
.y1a8{bottom:1048.245000px;}
.ydf{bottom:1057.245000px;}
.y110{bottom:1059.405000px;}
.y161{bottom:1061.925000px;}
.y49{bottom:1063.005000px;}
.y7{bottom:1064.445000px;}
.y185{bottom:1074.165000px;}
.y10f{bottom:1079.250000px;}
.y6{bottom:1082.130000px;}
.y48{bottom:1082.850000px;}
.y160{bottom:1089.330000px;}
.y10e{bottom:1099.050000px;}
.y184{bottom:1100.130000px;}
.y47{bottom:1103.010000px;}
.y5{bottom:1104.450000px;}
.y15f{bottom:1115.250000px;}
.y10{bottom:1116.690000px;}
.y183{bottom:1121.370000px;}
.y46{bottom:1122.810000px;}
.y10d{bottom:1125.330000px;}
.y4{bottom:1128.210000px;}
.y182{bottom:1141.170000px;}
.y45{bottom:1142.610000px;}
.y3{bottom:1151.610000px;}
.y42{bottom:1160.250000px;}
.y41{bottom:1174.290000px;}
.y2{bottom:1175.370000px;}
.y1{bottom:1199.130000px;}
.y40{bottom:1202.010000px;}
.h5{height:15.480000px;}
.h11{height:15.516000px;}
.h17{height:27.720000px;}
.h13{height:32.045625px;}
.h7{height:32.436000px;}
.h14{height:34.114922px;}
.h8{height:45.101250px;}
.h6{height:48.013594px;}
.hf{height:48.601406px;}
.h19{height:49.848750px;}
.h1b{height:51.876000px;}
.h1a{height:52.920000px;}
.h4{height:53.067656px;}
.h10{height:53.717344px;}
.h12{height:55.714922px;}
.h18{height:56.556000px;}
.h3{height:58.121719px;}
.h1d{height:58.680000px;}
.h1e{height:62.676000px;}
.h2{height:63.949219px;}
.he{height:68.838750px;}
.h1c{height:69.156000px;}
.h1f{height:69.876000px;}
.hd{height:73.283906px;}
.hc{height:74.181094px;}
.hb{height:85.691953px;}
.ha{height:91.441406px;}
.h9{height:93.636000px;}
.h16{height:892.500000px;}
.h15{height:892.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:172.830000px;}
.w12{width:175.710000px;}
.w4{width:181.875000px;}
.w14{width:221.430000px;}
.w15{width:225.795000px;}
.w13{width:283.065000px;}
.w11{width:333.465000px;}
.w9{width:333.510000px;}
.wf{width:339.225000px;}
.w7{width:339.270000px;}
.we{width:341.385000px;}
.w6{width:341.430000px;}
.w10{width:347.145000px;}
.w8{width:347.190000px;}
.w3{width:498.810000px;}
.w5{width:566.130000px;}
.w1{width:892.500000px;}
.wa{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.wd{width:1262.879981px;}
.wb{width:1262.880000px;}
.wc{width:1263.000000px;}
.x0{left:0.000000px;}
.x36{left:1.080000px;}
.x48{left:2.880000px;}
.x20{left:3.960000px;}
.x38{left:5.760000px;}
.x3c{left:7.560000px;}
.x3{left:8.640000px;}
.x9{left:10.800000px;}
.x2f{left:12.240000px;}
.x42{left:13.680000px;}
.x44{left:14.760000px;}
.x2c{left:15.840000px;}
.x40{left:17.280000px;}
.x31{left:18.720000px;}
.x34{left:20.160000px;}
.x2b{left:22.680000px;}
.x2d{left:24.120000px;}
.x3d{left:26.640000px;}
.x3f{left:29.880000px;}
.x2a{left:30.960000px;}
.x28{left:32.400000px;}
.x2e{left:36.045000px;}
.x3a{left:37.080000px;}
.x37{left:41.430000px;}
.x46{left:42.480000px;}
.x29{left:43.920000px;}
.x32{left:45.750000px;}
.x35{left:47.160000px;}
.x30{left:48.594000px;}
.x24{left:50.040000px;}
.x43{left:51.474000px;}
.x22{left:52.590000px;}
.x3e{left:55.845000px;}
.x33{left:60.480000px;}
.x39{left:62.325000px;}
.x3b{left:65.550000px;}
.x47{left:73.845000px;}
.x26{left:88.605000px;}
.x45{left:94.710000px;}
.x1f{left:101.916000px;}
.x1{left:106.235987px;}
.x41{left:108.390000px;}
.x18{left:111.275987px;}
.x19{left:117.035987px;}
.x11{left:119.915987px;}
.xa{left:122.075987px;}
.x5{left:127.869000px;}
.xf{left:138.671987px;}
.x7{left:146.595000px;}
.x10{left:148.751987px;}
.xd{left:244.904987px;}
.x8{left:248.505000px;}
.x21{left:279.795000px;}
.x14{left:298.230000px;}
.x1b{left:301.755000px;}
.x6{left:308.664000px;}
.x1a{left:315.464981px;}
.x17{left:322.349987px;}
.xe{left:327.389987px;}
.xb{left:343.229987px;}
.xc{left:378.149987px;}
.x50{left:385.709973px;}
.x51{left:390.749987px;}
.x4e{left:395.429973px;}
.x4f{left:400.499987px;}
.x4c{left:421.739973px;}
.x4d{left:426.779987px;}
.x2{left:446.579987px;}
.x12{left:447.660000px;}
.x13{left:453.420000px;}
.x1e{left:484.349981px;}
.x15{left:497.369973px;}
.x16{left:502.409987px;}
.x23{left:565.380000px;}
.x49{left:600.014973px;}
.x4{left:605.055000px;}
.x1c{left:643.140000px;}
.x1d{left:648.900000px;}
.x4a{left:778.289973px;}
.x4b{left:783.329987px;}
.x25{left:788.970000px;}
.x27{left:1017.285000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls16{letter-spacing:-1.712000pt;}
.ls17{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-1.264000pt;}
.ls9{letter-spacing:-0.864000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.442667pt;}
.ls13{letter-spacing:-0.432533pt;}
.ls7{letter-spacing:-0.406933pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.015360pt;}
.ls10{letter-spacing:0.017920pt;}
.ls2{letter-spacing:0.376320pt;}
.ls19{letter-spacing:0.399467pt;}
.lsa{letter-spacing:0.414933pt;}
.lsb{letter-spacing:0.432533pt;}
.ls0{letter-spacing:0.442880pt;}
.ls20{letter-spacing:0.450560pt;}
.ls1d{letter-spacing:0.450667pt;}
.ls24{letter-spacing:0.634667pt;}
.ls1{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.746667pt;}
.lse{letter-spacing:1.920000pt;}
.ls3{letter-spacing:3.200000pt;}
.ls12{letter-spacing:4.480000pt;}
.ls1f{letter-spacing:5.760000pt;}
.ls1a{letter-spacing:7.040000pt;}
.ls1c{letter-spacing:8.320000pt;}
.ls14{letter-spacing:9.600000pt;}
.lsf{letter-spacing:10.880000pt;}
.ls21{letter-spacing:12.160000pt;}
.ls11{letter-spacing:18.560000pt;}
.ls23{letter-spacing:19.471360pt;}
.ls1b{letter-spacing:21.120000pt;}
.ls1e{letter-spacing:40.105387pt;}
.ls4{letter-spacing:41.385387pt;}
.ls22{letter-spacing:48.911360pt;}
.ws3{word-spacing:-21.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.wsf{word-spacing:-13.890667pt;}
.ws6{word-spacing:-13.872533pt;}
.wsa{word-spacing:-13.854933pt;}
.ws5{word-spacing:-13.816320pt;}
.wsb{word-spacing:-13.457920pt;}
.ws4{word-spacing:-13.440000pt;}
.ws8{word-spacing:-13.007467pt;}
.wse{word-spacing:-12.176000pt;}
.wsd{word-spacing:-12.160000pt;}
.wsc{word-spacing:-11.728000pt;}
.ws2{word-spacing:-11.717333pt;}
.ws10{word-spacing:-9.274667pt;}
.ws9{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._24{margin-left:-5.149867pt;}
._13{margin-left:-3.954347pt;}
._12{margin-left:-3.065173pt;}
._3{margin-left:-1.812480pt;}
._0{margin-left:-0.913920pt;}
._1{width:1.614933pt;}
._6{width:2.921813pt;}
._8{width:4.409173pt;}
._15{width:5.627733pt;}
._14{width:6.710187pt;}
._c{width:7.679147pt;}
._d{width:8.610133pt;}
._b{width:9.595307pt;}
._e{width:10.844160pt;}
._f{width:12.472320pt;}
._10{width:14.964053pt;}
._11{width:16.688640pt;}
._1a{width:18.391467pt;}
._19{width:19.783680pt;}
._1d{width:21.568853pt;}
._a{width:22.853547pt;}
._9{width:24.944640pt;}
._1c{width:25.834240pt;}
._1b{width:26.970027pt;}
._23{width:32.771413pt;}
._22{width:33.868800pt;}
._2e{width:36.258560pt;}
._2c{width:37.347840pt;}
._2d{width:38.423040pt;}
._2a{width:50.426880pt;}
._2b{width:51.365120pt;}
._21{width:58.152960pt;}
._20{width:59.392427pt;}
._1f{width:72.249173pt;}
._1e{width:73.728000pt;}
._27{width:83.546880pt;}
._25{width:84.510720pt;}
._26{width:85.714347pt;}
._5{width:101.268053pt;}
._4{width:102.816000pt;}
._28{width:107.358720pt;}
._29{width:108.685227pt;}
._2{width:574.346667pt;}
._7{width:939.285333pt;}
._18{width:1113.493333pt;}
._16{width:1133.973333pt;}
._17{width:1159.552000pt;}
.fs8{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.240000pt;}
.fs6{font-size:85.760000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.560000pt;}
.y8e{bottom:2.880000pt;}
.y88{bottom:3.520000pt;}
.y13{bottom:4.160000pt;}
.y83{bottom:4.480000pt;}
.y9d{bottom:5.120000pt;}
.y9a{bottom:5.760000pt;}
.ya5{bottom:7.040000pt;}
.y7d{bottom:8.000000pt;}
.yac{bottom:10.240000pt;}
.ye{bottom:10.272000pt;}
.y90{bottom:10.560000pt;}
.y8a{bottom:11.200000pt;}
.y80{bottom:12.826667pt;}
.y9f{bottom:13.440000pt;}
.ya2{bottom:15.360000pt;}
.yd{bottom:17.632000pt;}
.y8d{bottom:18.240000pt;}
.y94{bottom:18.266667pt;}
.ya9{bottom:18.560000pt;}
.y87{bottom:18.880000pt;}
.y99{bottom:21.120000pt;}
.y82{bottom:21.146667pt;}
.y9c{bottom:21.760000pt;}
.ya4{bottom:23.680000pt;}
.y96{bottom:25.946667pt;}
.y89{bottom:26.560000pt;}
.yab{bottom:26.880000pt;}
.y8f{bottom:27.200000pt;}
.y7f{bottom:28.186667pt;}
.y84{bottom:29.146667pt;}
.y9e{bottom:30.080000pt;}
.ya1{bottom:30.720000pt;}
.ya6{bottom:32.000000pt;}
.y12{bottom:32.320000pt;}
.y93{bottom:33.626667pt;}
.y8c{bottom:33.640000pt;}
.ya8{bottom:33.920000pt;}
.y86{bottom:34.240000pt;}
.yad{bottom:35.200000pt;}
.y98{bottom:36.480000pt;}
.y81{bottom:37.466667pt;}
.y9b{bottom:38.400000pt;}
.yf{bottom:38.720000pt;}
.ya3{bottom:40.320000pt;}
.y95{bottom:41.306667pt;}
.yaa{bottom:43.240000pt;}
.y92{bottom:48.986667pt;}
.y11{bottom:60.480000pt;}
.yc{bottom:60.800000pt;}
.y7a{bottom:60.832000pt;}
.y44{bottom:84.192000pt;}
.ya{bottom:99.232000pt;}
.y43{bottom:103.072000pt;}
.y9{bottom:118.432000pt;}
.y15e{bottom:119.392000pt;}
.yb7{bottom:121.312000pt;}
.yde{bottom:121.952000pt;}
.y181{bottom:126.752000pt;}
.y76{bottom:130.272000pt;}
.y13c{bottom:130.912000pt;}
.yba{bottom:133.786667pt;}
.y3f{bottom:135.066667pt;}
.yb6{bottom:136.666667pt;}
.y15d{bottom:136.986667pt;}
.y10c{bottom:137.946667pt;}
.ydd{bottom:139.546667pt;}
.y1a7{bottom:140.186667pt;}
.yb5{bottom:141.466667pt;}
.y180{bottom:144.346667pt;}
.y75{bottom:146.906667pt;}
.y13b{bottom:148.506667pt;}
.yb9{bottom:151.386667pt;}
.y74{bottom:151.706667pt;}
.y3e{bottom:152.666667pt;}
.y10b{bottom:153.306667pt;}
.y15c{bottom:154.586667pt;}
.yca{bottom:155.546667pt;}
.ybe{bottom:156.506667pt;}
.ydc{bottom:157.146667pt;}
.y73{bottom:162.266667pt;}
.y1a6{bottom:163.226667pt;}
.y13a{bottom:166.106667pt;}
.ybd{bottom:167.066667pt;}
.y10a{bottom:168.666667pt;}
.yb8{bottom:168.986667pt;}
.y3d{bottom:170.266667pt;}
.yc9{bottom:172.186667pt;}
.ydb{bottom:174.746667pt;}
.y139{bottom:183.746667pt;}
.y109{bottom:184.066667pt;}
.yb4{bottom:186.626667pt;}
.y1a5{bottom:187.586667pt;}
.y3c{bottom:188.226667pt;}
.yc8{bottom:188.866667pt;}
.y15b{bottom:189.826667pt;}
.y17f{bottom:191.746667pt;}
.yc7{bottom:193.666667pt;}
.yda{bottom:197.826667pt;}
.y108{bottom:199.426667pt;}
.y72{bottom:200.706667pt;}
.yb3{bottom:204.226667pt;}
.y3b{bottom:205.826667pt;}
.yc6{bottom:206.786667pt;}
.y138{bottom:207.106667pt;}
.y15a{bottom:207.426667pt;}
.y1a4{bottom:210.306667pt;}
.ybc{bottom:213.826667pt;}
.y17e{bottom:214.786667pt;}
.yd9{bottom:215.426667pt;}
.y71{bottom:218.306667pt;}
.yb2{bottom:221.826667pt;}
.yc5{bottom:222.146667pt;}
.y107{bottom:222.466667pt;}
.y3a{bottom:223.426667pt;}
.y159{bottom:225.026667pt;}
.yd8{bottom:233.026667pt;}
.y1a3{bottom:233.346667pt;}
.y70{bottom:235.906667pt;}
.yc4{bottom:237.506667pt;}
.y137{bottom:237.826667pt;}
.yb1{bottom:239.426667pt;}
.y106{bottom:240.066667pt;}
.yc3{bottom:242.306667pt;}
.y158{bottom:242.626667pt;}
.ya7{bottom:245.533333pt;}
.yd7{bottom:250.626667pt;}
.yc2{bottom:252.866667pt;}
.y136{bottom:253.186667pt;}
.y39{bottom:254.466667pt;}
.y17d{bottom:256.386667pt;}
.yb0{bottom:257.346667pt;}
.y105{bottom:257.666667pt;}
.y157{bottom:260.226667pt;}
.y6f{bottom:266.946667pt;}
.yd6{bottom:268.546667pt;}
.y17c{bottom:273.986667pt;}
.yaf{bottom:274.946667pt;}
.y104{bottom:275.266667pt;}
.y38{bottom:277.826667pt;}
.y1a2{bottom:279.426667pt;}
.y156{bottom:283.266667pt;}
.y135{bottom:283.906667pt;}
.yd5{bottom:286.146667pt;}
.y6e{bottom:292.573333pt;}
.y103{bottom:292.893333pt;}
.y17b{bottom:293.213333pt;}
.y37{bottom:295.453333pt;}
.y1a1{bottom:302.493333pt;}
.yd4{bottom:303.773333pt;}
.y155{bottom:306.333333pt;}
.y134{bottom:306.653333pt;}
.y6d{bottom:310.173333pt;}
.y102{bottom:310.493333pt;}
.y36{bottom:310.813333pt;}
.ya0{bottom:311.493333pt;}
.yd3{bottom:321.373333pt;}
.y133{bottom:324.253333pt;}
.y1a0{bottom:325.533333pt;}
.y6c{bottom:327.773333pt;}
.y101{bottom:328.093333pt;}
.y154{bottom:329.373333pt;}
.y35{bottom:334.173333pt;}
.y17a{bottom:334.813333pt;}
.yd2{bottom:338.973333pt;}
.y132{bottom:341.853333pt;}
.y19f{bottom:344.413333pt;}
.y6b{bottom:345.373333pt;}
.y100{bottom:345.693333pt;}
.y153{bottom:352.413333pt;}
.yd1{bottom:356.573333pt;}
.y34{bottom:357.533333pt;}
.y179{bottom:357.853333pt;}
.y131{bottom:359.453333pt;}
.y6a{bottom:362.973333pt;}
.yff{bottom:363.613333pt;}
.yc1{bottom:367.773333pt;}
.y19e{bottom:368.733333pt;}
.y97{bottom:371.360000pt;}
.y33{bottom:372.893333pt;}
.yd0{bottom:374.173333pt;}
.y152{bottom:375.453333pt;}
.y130{bottom:377.373333pt;}
.y69{bottom:380.573333pt;}
.yfe{bottom:381.213333pt;}
.y178{bottom:382.173333pt;}
.y32{bottom:387.933333pt;}
.y19d{bottom:391.453333pt;}
.ycf{bottom:391.773333pt;}
.y12f{bottom:394.973333pt;}
.y68{bottom:398.173333pt;}
.y151{bottom:398.493333pt;}
.yfd{bottom:398.813333pt;}
.ybb{bottom:403.013333pt;}
.y31{bottom:403.333333pt;}
.y177{bottom:405.253333pt;}
.yce{bottom:409.413333pt;}
.y12e{bottom:412.613333pt;}
.y19c{bottom:414.533333pt;}
.y67{bottom:415.813333pt;}
.yfc{bottom:416.453333pt;}
.y30{bottom:418.693333pt;}
.yc0{bottom:420.613333pt;}
.y150{bottom:421.253333pt;}
.y91{bottom:427.360000pt;}
.y176{bottom:428.293333pt;}
.y12d{bottom:430.213333pt;}
.ycd{bottom:432.773333pt;}
.y66{bottom:433.733333pt;}
.y2f{bottom:434.053333pt;}
.y19b{bottom:438.853333pt;}
.y14f{bottom:444.293333pt;}
.y175{bottom:447.173333pt;}
.y12c{bottom:447.813333pt;}
.ycc{bottom:448.133333pt;}
.y2e{bottom:449.413333pt;}
.y65{bottom:451.333333pt;}
.yfb{bottom:451.653333pt;}
.yae{bottom:456.133333pt;}
.y19a{bottom:461.893333pt;}
.ycb{bottom:463.493333pt;}
.y2d{bottom:464.773333pt;}
.y12b{bottom:465.413333pt;}
.y14e{bottom:467.333333pt;}
.y64{bottom:468.933333pt;}
.yfa{bottom:469.253333pt;}
.y174{bottom:471.493333pt;}
.y2c{bottom:480.133333pt;}
.y12a{bottom:483.013333pt;}
.y199{bottom:484.933333pt;}
.y63{bottom:486.533333pt;}
.yf9{bottom:486.853333pt;}
.y14d{bottom:490.373333pt;}
.y8b{bottom:492.666667pt;}
.y173{bottom:494.213333pt;}
.y2b{bottom:495.493333pt;}
.y129{bottom:500.613333pt;}
.y62{bottom:504.133333pt;}
.yf8{bottom:504.453333pt;}
.y198{bottom:509.253333pt;}
.y2a{bottom:510.853333pt;}
.y14c{bottom:513.440000pt;}
.y172{bottom:517.280000pt;}
.y128{bottom:518.240000pt;}
.y61{bottom:521.760000pt;}
.yf7{bottom:522.080000pt;}
.y29{bottom:526.240000pt;}
.y197{bottom:532.000000pt;}
.y127{bottom:535.840000pt;}
.y14b{bottom:536.480000pt;}
.y60{bottom:539.360000pt;}
.yf6{bottom:540.000000pt;}
.y28{bottom:541.600000pt;}
.y85{bottom:542.626667pt;}
.y126{bottom:553.760000pt;}
.y196{bottom:556.320000pt;}
.y27{bottom:556.640000pt;}
.y5f{bottom:556.960000pt;}
.yf5{bottom:557.600000pt;}
.y14a{bottom:559.520000pt;}
.y171{bottom:564.640000pt;}
.y125{bottom:571.360000pt;}
.y26{bottom:572.000000pt;}
.y5e{bottom:574.560000pt;}
.yf4{bottom:575.200000pt;}
.y195{bottom:580.640000pt;}
.y149{bottom:582.240000pt;}
.y25{bottom:587.360000pt;}
.y124{bottom:588.960000pt;}
.y5d{bottom:592.160000pt;}
.yf3{bottom:592.800000pt;}
.y7e{bottom:593.506667pt;}
.y24{bottom:602.720000pt;}
.y194{bottom:604.960000pt;}
.y148{bottom:605.280000pt;}
.y123{bottom:606.560000pt;}
.y5c{bottom:610.080000pt;}
.yf2{bottom:610.400000pt;}
.y170{bottom:612.960000pt;}
.y23{bottom:618.080000pt;}
.y122{bottom:624.186667pt;}
.y5a{bottom:627.706667pt;}
.yf1{bottom:628.026667pt;}
.y147{bottom:628.346667pt;}
.y5b{bottom:632.506667pt;}
.y22{bottom:633.466667pt;}
.y16f{bottom:636.026667pt;}
.y121{bottom:641.786667pt;}
.y59{bottom:645.306667pt;}
.yf0{bottom:645.626667pt;}
.y193{bottom:646.906667pt;}
.y7c{bottom:647.933333pt;}
.y21{bottom:648.826667pt;}
.y146{bottom:651.386667pt;}
.y120{bottom:659.386667pt;}
.y16e{bottom:660.346667pt;}
.y58{bottom:662.906667pt;}
.yef{bottom:663.226667pt;}
.y20{bottom:664.186667pt;}
.y192{bottom:664.506667pt;}
.y145{bottom:674.426667pt;}
.y11f{bottom:676.986667pt;}
.y1f{bottom:679.546667pt;}
.y57{bottom:680.506667pt;}
.yee{bottom:680.826667pt;}
.y16d{bottom:683.386667pt;}
.y7b{bottom:686.693333pt;}
.y191{bottom:688.506667pt;}
.y11e{bottom:694.586667pt;}
.y1e{bottom:694.906667pt;}
.y144{bottom:697.466667pt;}
.y56{bottom:698.106667pt;}
.yed{bottom:698.426667pt;}
.y79{bottom:702.373333pt;}
.y16c{bottom:707.706667pt;}
.y190{bottom:711.546667pt;}
.y11d{bottom:712.186667pt;}
.y1d{bottom:714.106667pt;}
.y78{bottom:714.853333pt;}
.y55{bottom:715.706667pt;}
.yec{bottom:716.346667pt;}
.ybf{bottom:720.506667pt;}
.y11c{bottom:730.106667pt;}
.y16b{bottom:730.426667pt;}
.y1b1{bottom:731.706667pt;}
.y54{bottom:733.306667pt;}
.yeb{bottom:733.946667pt;}
.y18f{bottom:734.586667pt;}
.y77{bottom:739.493333pt;}
.y143{bottom:743.586667pt;}
.y1c{bottom:744.866667pt;}
.y11b{bottom:747.746667pt;}
.y1b0{bottom:749.346667pt;}
.y16a{bottom:749.666667pt;}
.y53{bottom:750.946667pt;}
.yea{bottom:751.586667pt;}
.y18e{bottom:758.946667pt;}
.y1b{bottom:760.546667pt;}
.y11a{bottom:765.346667pt;}
.y142{bottom:766.306667pt;}
.y1af{bottom:766.946667pt;}
.y169{bottom:767.266667pt;}
.y52{bottom:768.546667pt;}
.ye9{bottom:769.186667pt;}
.y18d{bottom:781.986667pt;}
.y119{bottom:782.946667pt;}
.y51{bottom:786.146667pt;}
.y1a{bottom:786.466667pt;}
.ye8{bottom:786.786667pt;}
.y141{bottom:789.346667pt;}
.y1ae{bottom:791.266667pt;}
.y118{bottom:800.546667pt;}
.y168{bottom:803.746667pt;}
.y50{bottom:804.066667pt;}
.ye7{bottom:804.386667pt;}
.y18c{bottom:804.706667pt;}
.y19{bottom:806.306667pt;}
.y140{bottom:812.386667pt;}
.y1ad{bottom:814.306667pt;}
.y117{bottom:818.146667pt;}
.y167{bottom:821.346667pt;}
.y18{bottom:821.666667pt;}
.ye6{bottom:821.986667pt;}
.y18b{bottom:823.906667pt;}
.y13f{bottom:835.426667pt;}
.y116{bottom:835.746667pt;}
.y1ac{bottom:837.346667pt;}
.y4f{bottom:839.266667pt;}
.ye5{bottom:839.586667pt;}
.y166{bottom:840.226667pt;}
.y18a{bottom:841.506667pt;}
.y17{bottom:843.426667pt;}
.y115{bottom:853.373333pt;}
.y4e{bottom:856.893333pt;}
.y165{bottom:857.853333pt;}
.y13e{bottom:858.493333pt;}
.y189{bottom:859.133333pt;}
.y1ab{bottom:861.693333pt;}
.ye4{bottom:862.973333pt;}
.y16{bottom:864.893333pt;}
.y114{bottom:870.973333pt;}
.y4d{bottom:874.493333pt;}
.ye3{bottom:878.333333pt;}
.y164{bottom:882.173333pt;}
.y188{bottom:883.453333pt;}
.y13d{bottom:884.093333pt;}
.y1aa{bottom:884.413333pt;}
.y15{bottom:886.333333pt;}
.y113{bottom:888.573333pt;}
.y4c{bottom:892.093333pt;}
.ye2{bottom:893.693333pt;}
.y163{bottom:901.053333pt;}
.y187{bottom:906.173333pt;}
.y112{bottom:906.493333pt;}
.y1a9{bottom:907.453333pt;}
.y14{bottom:908.093333pt;}
.ye1{bottom:909.053333pt;}
.y4b{bottom:909.693333pt;}
.y111{bottom:924.093333pt;}
.ye0{bottom:924.413333pt;}
.y162{bottom:925.053333pt;}
.y4a{bottom:927.293333pt;}
.y186{bottom:930.493333pt;}
.y8{bottom:930.813333pt;}
.y1a8{bottom:931.773333pt;}
.ydf{bottom:939.773333pt;}
.y110{bottom:941.693333pt;}
.y161{bottom:943.933333pt;}
.y49{bottom:944.893333pt;}
.y7{bottom:946.173333pt;}
.y185{bottom:954.813333pt;}
.y10f{bottom:959.333333pt;}
.y6{bottom:961.893333pt;}
.y48{bottom:962.533333pt;}
.y160{bottom:968.293333pt;}
.y10e{bottom:976.933333pt;}
.y184{bottom:977.893333pt;}
.y47{bottom:980.453333pt;}
.y5{bottom:981.733333pt;}
.y15f{bottom:991.333333pt;}
.y10{bottom:992.613333pt;}
.y183{bottom:996.773333pt;}
.y46{bottom:998.053333pt;}
.y10d{bottom:1000.293333pt;}
.y4{bottom:1002.853333pt;}
.y182{bottom:1014.373333pt;}
.y45{bottom:1015.653333pt;}
.y3{bottom:1023.653333pt;}
.y42{bottom:1031.333333pt;}
.y41{bottom:1043.813333pt;}
.y2{bottom:1044.773333pt;}
.y1{bottom:1065.893333pt;}
.y40{bottom:1068.453333pt;}
.h5{height:13.760000pt;}
.h11{height:13.792000pt;}
.h17{height:24.640000pt;}
.h13{height:28.485000pt;}
.h7{height:28.832000pt;}
.h14{height:30.324375pt;}
.h8{height:40.090000pt;}
.h6{height:42.678750pt;}
.hf{height:43.201250pt;}
.h19{height:44.310000pt;}
.h1b{height:46.112000pt;}
.h1a{height:47.040000pt;}
.h4{height:47.171250pt;}
.h10{height:47.748750pt;}
.h12{height:49.524375pt;}
.h18{height:50.272000pt;}
.h3{height:51.663750pt;}
.h1d{height:52.160000pt;}
.h1e{height:55.712000pt;}
.h2{height:56.843750pt;}
.he{height:61.190000pt;}
.h1c{height:61.472000pt;}
.h1f{height:62.112000pt;}
.hd{height:65.141250pt;}
.hc{height:65.938750pt;}
.hb{height:76.170625pt;}
.ha{height:81.281250pt;}
.h9{height:83.232000pt;}
.h16{height:793.333333pt;}
.h15{height:793.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:153.626667pt;}
.w12{width:156.186667pt;}
.w4{width:161.666667pt;}
.w14{width:196.826667pt;}
.w15{width:200.706667pt;}
.w13{width:251.613333pt;}
.w11{width:296.413333pt;}
.w9{width:296.453333pt;}
.wf{width:301.533333pt;}
.w7{width:301.573333pt;}
.we{width:303.453333pt;}
.w6{width:303.493333pt;}
.w10{width:308.573333pt;}
.w8{width:308.613333pt;}
.w3{width:443.386667pt;}
.w5{width:503.226667pt;}
.w1{width:793.333333pt;}
.wa{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.wd{width:1122.559983pt;}
.wb{width:1122.560000pt;}
.wc{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x36{left:0.960000pt;}
.x48{left:2.560000pt;}
.x20{left:3.520000pt;}
.x38{left:5.120000pt;}
.x3c{left:6.720000pt;}
.x3{left:7.680000pt;}
.x9{left:9.600000pt;}
.x2f{left:10.880000pt;}
.x42{left:12.160000pt;}
.x44{left:13.120000pt;}
.x2c{left:14.080000pt;}
.x40{left:15.360000pt;}
.x31{left:16.640000pt;}
.x34{left:17.920000pt;}
.x2b{left:20.160000pt;}
.x2d{left:21.440000pt;}
.x3d{left:23.680000pt;}
.x3f{left:26.560000pt;}
.x2a{left:27.520000pt;}
.x28{left:28.800000pt;}
.x2e{left:32.040000pt;}
.x3a{left:32.960000pt;}
.x37{left:36.826667pt;}
.x46{left:37.760000pt;}
.x29{left:39.040000pt;}
.x32{left:40.666667pt;}
.x35{left:41.920000pt;}
.x30{left:43.194667pt;}
.x24{left:44.480000pt;}
.x43{left:45.754667pt;}
.x22{left:46.746667pt;}
.x3e{left:49.640000pt;}
.x33{left:53.760000pt;}
.x39{left:55.400000pt;}
.x3b{left:58.266667pt;}
.x47{left:65.640000pt;}
.x26{left:78.760000pt;}
.x45{left:84.186667pt;}
.x1f{left:90.592000pt;}
.x1{left:94.431988pt;}
.x41{left:96.346667pt;}
.x18{left:98.911988pt;}
.x19{left:104.031988pt;}
.x11{left:106.591988pt;}
.xa{left:108.511988pt;}
.x5{left:113.661333pt;}
.xf{left:123.263988pt;}
.x7{left:130.306667pt;}
.x10{left:132.223988pt;}
.xd{left:217.693322pt;}
.x8{left:220.893333pt;}
.x21{left:248.706667pt;}
.x14{left:265.093333pt;}
.x1b{left:268.226667pt;}
.x6{left:274.368000pt;}
.x1a{left:280.413317pt;}
.x17{left:286.533322pt;}
.xe{left:291.013322pt;}
.xb{left:305.093322pt;}
.xc{left:336.133322pt;}
.x50{left:342.853310pt;}
.x51{left:347.333322pt;}
.x4e{left:351.493310pt;}
.x4f{left:355.999988pt;}
.x4c{left:374.879976pt;}
.x4d{left:379.359988pt;}
.x2{left:396.959988pt;}
.x12{left:397.920000pt;}
.x13{left:403.040000pt;}
.x1e{left:430.533317pt;}
.x15{left:442.106643pt;}
.x16{left:446.586655pt;}
.x23{left:502.560000pt;}
.x49{left:533.346643pt;}
.x4{left:537.826667pt;}
.x1c{left:571.680000pt;}
.x1d{left:576.800000pt;}
.x4a{left:691.813310pt;}
.x4b{left:696.293322pt;}
.x25{left:701.306667pt;}
.x27{left:904.253333pt;}
}




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