
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f5b02f979aa9ef066048e696.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_c99cefa9c81dd5252b3f6e7c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_3343252917aea7168649ea39.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_07e649e1ecf67e0fab2a2a77.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_92704aadf2006bb4bee385e1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_016d74591736aa88d89af467.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_9e37509e498e5d675758568c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_bcf1d8340fbfef0110268ae3.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_491952c01fce45a82a1b9d68.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.m2{transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250477,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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.160800px;}
.ls9{letter-spacing:-0.135000px;}
.ls11{letter-spacing:-0.121200px;}
.ls21{letter-spacing:-0.117600px;}
.ls8{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls20{letter-spacing:-0.063600px;}
.ls23{letter-spacing:-0.031680px;}
.lsb{letter-spacing:-0.008400px;}
.ls1b{letter-spacing:-0.006120px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.ls17{letter-spacing:0.048960px;}
.ls1c{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lsd{letter-spacing:0.074160px;}
.ls22{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.099063px;}
.ls13{letter-spacing:0.116400px;}
.ls7{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.275400px;}
.ls1a{letter-spacing:0.292800px;}
.ls25{letter-spacing:0.296400px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.405000px;}
.ls4{letter-spacing:0.425520px;}
.ls18{letter-spacing:0.453600px;}
.ls15{letter-spacing:1.173600px;}
.ls5{letter-spacing:9.453600px;}
.ls16{letter-spacing:22.413600px;}
.ls1f{letter-spacing:47.726640px;}
.ls1d{letter-spacing:63.566640px;}
.ls1e{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.399800px;}
.ws8{word-spacing:-13.342800px;}
.wsd{word-spacing:-13.300800px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.220280px;}
.wsc{word-spacing:-13.162800px;}
.ws9{word-spacing:-13.065600px;}
.ws6{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.266400px;}
.ws4{word-spacing:0.000000px;}
._b{margin-left:-4.088160px;}
._6{margin-left:-2.705400px;}
._0{margin-left:-1.110000px;}
._2{width:1.015764px;}
._4{width:2.597394px;}
._3{width:4.158000px;}
._5{width:5.591400px;}
._9{width:6.613200px;}
._a{width:7.843801px;}
._7{width:9.378600px;}
._8{width:10.733161px;}
._d{width:12.059160px;}
._e{width:14.855520px;}
._11{width:15.893040px;}
._13{width:17.855640px;}
._16{width:19.298640px;}
._f{width:21.643200px;}
._10{width:23.025960px;}
._1{width:24.241236px;}
._17{width:25.338648px;}
._c{width:28.196280px;}
._14{width:68.139720px;}
._15{width:69.336480px;}
._12{width:202.773600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs9{font-size:43.816233px;}
.fs3{font-size:45.000000px;}
.fsa{font-size:47.626340px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs7{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.yfc{bottom:-5.953288px;}
.y0{bottom:0.000000px;}
.ye8{bottom:2.619453px;}
.yff{bottom:4.286373px;}
.yf1{bottom:5.357966px;}
.ydc{bottom:6.191426px;}
.ye1{bottom:7.620217px;}
.yfb{bottom:7.739287px;}
.ycf{bottom:7.830000px;}
.yd3{bottom:7.920000px;}
.yde{bottom:8.334612px;}
.y144{bottom:9.720000px;}
.y148{bottom:9.750000px;}
.ye3{bottom:9.763403px;}
.y154{bottom:10.710000px;}
.yf6{bottom:11.430324px;}
.yee{bottom:13.712420px;}
.yec{bottom:13.950552px;}
.yea{bottom:14.645103px;}
.ye7{bottom:17.383618px;}
.yfe{bottom:19.070383px;}
.yf0{bottom:20.241196px;}
.ydb{bottom:20.955591px;}
.yfa{bottom:21.431860px;}
.ye0{bottom:22.503449px;}
.yf5{bottom:26.194490px;}
.ye6{bottom:32.266849px;}
.yf9{bottom:35.124433px;}
.yf4{bottom:40.958656px;}
.ye5{bottom:47.031014px;}
.yf8{bottom:48.817005px;}
.yf3{bottom:55.722820px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y5d{bottom:113.340000px;}
.y118{bottom:113.430000px;}
.y11d{bottom:115.050000px;}
.y8d{bottom:115.680000px;}
.yc7{bottom:130.170000px;}
.y5c{bottom:130.980000px;}
.y12b{bottom:133.050000px;}
.y8c{bottom:133.320000px;}
.y1d0{bottom:133.680000px;}
.y16a{bottom:135.660000px;}
.y1b6{bottom:141.870000px;}
.ya2{bottom:145.830000px;}
.y11c{bottom:147.270000px;}
.y5b{bottom:148.530000px;}
.y117{bottom:148.980000px;}
.y8b{bottom:150.870000px;}
.y1cf{bottom:151.320000px;}
.y195{bottom:153.210000px;}
.yd7{bottom:159.420000px;}
.y1b5{bottom:159.510000px;}
.yc6{bottom:165.720000px;}
.y5a{bottom:166.170000px;}
.y12a{bottom:168.690000px;}
.y1ce{bottom:168.870000px;}
.y194{bottom:170.850000px;}
.y169{bottom:171.210000px;}
.y142{bottom:172.470000px;}
.y116{bottom:181.200000px;}
.ya1{bottom:181.470000px;}
.yd6{bottom:182.640000px;}
.yc5{bottom:183.270000px;}
.y59{bottom:183.720000px;}
.yd8{bottom:185.840074px;}
.y1b4{bottom:186.060000px;}
.y8a{bottom:186.510000px;}
.y1cd{bottom:195.510000px;}
.y193{bottom:197.400000px;}
.y27{bottom:199.290000px;}
.yc4{bottom:200.910000px;}
.y1b3{bottom:203.610000px;}
.y89{bottom:204.060000px;}
.y168{bottom:206.760000px;}
.y141{bottom:208.020000px;}
.y1cc{bottom:213.060000px;}
.ya0{bottom:213.690000px;}
.yf7{bottom:214.892189px;}
.y192{bottom:214.950000px;}
.yc3{bottom:218.460000px;}
.y58{bottom:219.270000px;}
.y1b2{bottom:221.250000px;}
.y140{bottom:225.660000px;}
.yc2{bottom:236.100000px;}
.y26{bottom:236.280000px;}
.y57{bottom:236.910000px;}
.y88{bottom:239.610000px;}
.y191{bottom:241.590000px;}
.y167{bottom:242.400000px;}
.y13f{bottom:243.210000px;}
.y1b1{bottom:247.800000px;}
.yc1{bottom:253.650000px;}
.y25{bottom:253.920000px;}
.y56{bottom:254.460000px;}
.y87{bottom:257.250000px;}
.y190{bottom:259.140000px;}
.y166{bottom:259.950000px;}
.y13e{bottom:260.760000px;}
.y1b0{bottom:265.440000px;}
.y55{bottom:272.100000px;}
.y86{bottom:274.800000px;}
.y165{bottom:277.590000px;}
.y13d{bottom:278.400000px;}
.y18f{bottom:285.690000px;}
.yc0{bottom:289.200000px;}
.y24{bottom:289.470000px;}
.y1af{bottom:291.990000px;}
.y13c{bottom:295.950000px;}
.y1cb{bottom:301.440000px;}
.y18e{bottom:303.330000px;}
.ybf{bottom:306.840000px;}
.y23{bottom:307.020000px;}
.y54{bottom:307.650000px;}
.y1ae{bottom:309.540000px;}
.y85{bottom:310.440000px;}
.y164{bottom:313.140000px;}
.y13b{bottom:313.500000px;}
.y1ca{bottom:318.990000px;}
.ybe{bottom:324.390000px;}
.y22{bottom:324.660000px;}
.y53{bottom:325.200000px;}
.y84{bottom:327.990000px;}
.y18d{bottom:329.880000px;}
.y163{bottom:330.690000px;}
.y13a{bottom:331.140000px;}
.y1ad{bottom:336.180000px;}
.y1c9{bottom:336.540000px;}
.y127{bottom:337.440000px;}
.ybd{bottom:341.940000px;}
.y21{bottom:342.210000px;}
.y52{bottom:342.840000px;}
.y124{bottom:343.830000px;}
.y83{bottom:345.540000px;}
.y18c{bottom:347.520000px;}
.y162{bottom:348.330000px;}
.y139{bottom:348.690000px;}
.y1ac{bottom:353.730000px;}
.ybc{bottom:359.580000px;}
.y20{bottom:359.850000px;}
.y51{bottom:360.390000px;}
.yf2{bottom:363.156956px;}
.y1c8{bottom:363.180000px;}
.y161{bottom:365.880000px;}
.y138{bottom:366.330000px;}
.y126{bottom:372.990000px;}
.y18b{bottom:374.070000px;}
.ybb{bottom:377.130000px;}
.y1f{bottom:377.400000px;}
.y50{bottom:377.940000px;}
.y123{bottom:379.380000px;}
.y1ab{bottom:380.370000px;}
.y1c7{bottom:380.730000px;}
.y82{bottom:381.180000px;}
.y160{bottom:383.520000px;}
.y137{bottom:383.880000px;}
.ydf{bottom:390.899293px;}
.y18a{bottom:391.620000px;}
.yba{bottom:394.770000px;}
.y1e{bottom:394.950000px;}
.y4f{bottom:395.580000px;}
.y81{bottom:398.730000px;}
.y15f{bottom:401.070000px;}
.y125{bottom:405.210000px;}
.y1aa{bottom:406.920000px;}
.y1c6{bottom:407.370000px;}
.y122{bottom:411.600000px;}
.yb9{bottom:412.320000px;}
.y1d{bottom:412.590000px;}
.y4e{bottom:413.130000px;}
.y80{bottom:416.370000px;}
.y189{bottom:418.260000px;}
.y15e{bottom:418.620000px;}
.y136{bottom:419.430000px;}
.y1c5{bottom:424.920000px;}
.y1c{bottom:430.140000px;}
.y4d{bottom:430.770000px;}
.y1a9{bottom:433.470000px;}
.y7f{bottom:433.920000px;}
.y15d{bottom:436.260000px;}
.y135{bottom:437.070000px;}
.yb8{bottom:438.870000px;}
.y1c4{bottom:442.470000px;}
.y188{bottom:444.810000px;}
.y1b{bottom:447.780000px;}
.y4c{bottom:448.320000px;}
.y1a8{bottom:451.110000px;}
.y15c{bottom:453.810000px;}
.y134{bottom:454.620000px;}
.y187{bottom:462.450000px;}
.ye4{bottom:463.073042px;}
.y1a{bottom:465.330000px;}
.y4b{bottom:465.870000px;}
.y1c3{bottom:469.110000px;}
.y7e{bottom:469.470000px;}
.y133{bottom:472.290000px;}
.yb7{bottom:474.540000px;}
.y1a7{bottom:477.690000px;}
.y19{bottom:482.910000px;}
.y4a{bottom:483.540000px;}
.y1c2{bottom:486.690000px;}
.y7d{bottom:487.140000px;}
.y186{bottom:489.030000px;}
.y15b{bottom:489.480000px;}
.y132{bottom:489.840000px;}
.yb6{bottom:492.090000px;}
.y1a6{bottom:495.330000px;}
.ye9{bottom:498.078408px;}
.y18{bottom:500.550000px;}
.y49{bottom:501.090000px;}
.y1c1{bottom:504.330000px;}
.y7c{bottom:504.690000px;}
.y15a{bottom:507.030000px;}
.y131{bottom:507.390000px;}
.yb5{bottom:509.730000px;}
.y185{bottom:515.580000px;}
.y17{bottom:518.100000px;}
.y48{bottom:518.730000px;}
.y1a5{bottom:521.880000px;}
.y7b{bottom:522.330000px;}
.y159{bottom:524.580000px;}
.y130{bottom:525.030000px;}
.yb4{bottom:527.280000px;}
.y1c0{bottom:530.880000px;}
.y184{bottom:533.220000px;}
.y16{bottom:535.740000px;}
.y47{bottom:536.280000px;}
.y1a4{bottom:539.430000px;}
.y7a{bottom:539.880000px;}
.y158{bottom:542.220000px;}
.y12f{bottom:542.580000px;}
.yb3{bottom:544.830000px;}
.y1bf{bottom:548.430000px;}
.y15{bottom:553.290000px;}
.y79{bottom:557.430000px;}
.y157{bottom:559.770000px;}
.yef{bottom:559.873590px;}
.y12e{bottom:560.220000px;}
.yb2{bottom:562.470000px;}
.y1a3{bottom:566.070000px;}
.y14{bottom:570.840000px;}
.y46{bottom:571.830000px;}
.y1be{bottom:575.070000px;}
.y156{bottom:577.410000px;}
.yfd{bottom:579.043175px;}
.yb1{bottom:580.020000px;}
.y1a2{bottom:583.620000px;}
.yeb{bottom:584.877406px;}
.yed{bottom:585.472741px;}
.y183{bottom:586.410000px;}
.y13{bottom:588.480000px;}
.y45{bottom:589.470000px;}
.y1bd{bottom:592.620000px;}
.y78{bottom:593.070000px;}
.y12d{bottom:595.770000px;}
.yb0{bottom:597.660000px;}
.y182{bottom:603.960000px;}
.y155{bottom:604.230000px;}
.yd9{bottom:604.475549px;}
.y12{bottom:606.030000px;}
.y44{bottom:607.020000px;}
.y1a1{bottom:610.260000px;}
.y77{bottom:610.620000px;}
.y1bc{bottom:619.260000px;}
.y11{bottom:623.670000px;}
.yaf{bottom:624.210000px;}
.y43{bottom:624.660000px;}
.y1a0{bottom:627.810000px;}
.y12c{bottom:627.990000px;}
.y76{bottom:628.260000px;}
.y181{bottom:630.870000px;}
.y115{bottom:632.400000px;}
.y11b{bottom:634.470000px;}
.y1bb{bottom:636.810000px;}
.y10{bottom:641.220000px;}
.y42{bottom:642.210000px;}
.y75{bottom:645.810000px;}
.y114{bottom:649.950000px;}
.y19f{bottom:654.360000px;}
.y41{bottom:659.760000px;}
.y74{bottom:663.360000px;}
.y113{bottom:667.590000px;}
.yf{bottom:668.130000px;}
.y11a{bottom:670.020000px;}
.y19e{bottom:672.000000px;}
.y129{bottom:672.270000px;}
.ydd{bottom:676.697032px;}
.yae{bottom:677.400000px;}
.ye2{bottom:677.530482px;}
.y180{bottom:679.110000px;}
.y153{bottom:680.190000px;}
.y1ba{bottom:681.000000px;}
.y112{bottom:685.140000px;}
.yad{bottom:694.950000px;}
.y40{bottom:695.400000px;}
.y19d{bottom:698.550000px;}
.y73{bottom:699.000000px;}
.y119{bottom:702.240000px;}
.y111{bottom:702.690000px;}
.y128{bottom:704.490000px;}
.y17f{bottom:706.020000px;}
.y9f{bottom:707.550000px;}
.y152{bottom:709.440000px;}
.yac{bottom:712.590000px;}
.y3f{bottom:712.950000px;}
.ye{bottom:714.930000px;}
.y72{bottom:716.550000px;}
.y110{bottom:720.330000px;}
.y9e{bottom:725.190000px;}
.yab{bottom:730.140000px;}
.y3e{bottom:730.590000px;}
.y71{bottom:734.190000px;}
.y151{bottom:738.690000px;}
.y9d{bottom:742.740000px;}
.y17e{bottom:743.370000px;}
.y10f{bottom:746.880000px;}
.yaa{bottom:747.690000px;}
.y3d{bottom:748.140000px;}
.yd{bottom:750.750000px;}
.y1b9{bottom:751.740000px;}
.y9c{bottom:760.290000px;}
.yda{bottom:765.311786px;}
.ya9{bottom:765.330000px;}
.y3c{bottom:765.690000px;}
.y150{bottom:767.940000px;}
.y19c{bottom:769.290000px;}
.y70{bottom:769.740000px;}
.y10e{bottom:782.520000px;}
.ya8{bottom:782.880000px;}
.y3b{bottom:783.330000px;}
.yc{bottom:786.750000px;}
.y19b{bottom:786.930000px;}
.y6f{bottom:787.290000px;}
.y17d{bottom:791.700000px;}
.y9b{bottom:795.930000px;}
.y14f{bottom:797.190000px;}
.y10d{bottom:800.070000px;}
.ya7{bottom:800.520000px;}
.y6e{bottom:804.930000px;}
.y17c{bottom:809.250000px;}
.y9a{bottom:813.480000px;}
.y10c{bottom:817.620000px;}
.ya6{bottom:818.070000px;}
.y3a{bottom:818.880000px;}
.yd5{bottom:822.390000px;}
.y14e{bottom:826.440000px;}
.yb{bottom:826.530000px;}
.y17b{bottom:826.800000px;}
.y99{bottom:831.030000px;}
.y10b{bottom:835.260000px;}
.ya5{bottom:835.620000px;}
.y39{bottom:836.520000px;}
.y1b8{bottom:840.030000px;}
.y6d{bottom:840.480000px;}
.y17a{bottom:844.350000px;}
.ya{bottom:844.530000px;}
.y98{bottom:848.670000px;}
.yd4{bottom:849.750000px;}
.y10a{bottom:852.810000px;}
.y38{bottom:854.070000px;}
.y14d{bottom:855.690000px;}
.y19a{bottom:857.670000px;}
.y6c{bottom:858.030000px;}
.ya4{bottom:862.260000px;}
.y9{bottom:862.530000px;}
.y179{bottom:862.800000px;}
.y97{bottom:866.220000px;}
.y109{bottom:870.450000px;}
.y37{bottom:871.620000px;}
.y199{bottom:875.220000px;}
.y6b{bottom:875.670000px;}
.yd2{bottom:877.020000px;}
.y178{bottom:880.440000px;}
.y96{bottom:883.860000px;}
.y1b7{bottom:884.220000px;}
.y14c{bottom:884.940000px;}
.y6a{bottom:893.220000px;}
.y8{bottom:894.660000px;}
.y108{bottom:897.000000px;}
.y177{bottom:897.990000px;}
.ya3{bottom:898.170000px;}
.y198{bottom:901.860000px;}
.yd1{bottom:904.380000px;}
.y36{bottom:907.260000px;}
.y95{bottom:910.410000px;}
.y69{bottom:910.860000px;}
.y7{bottom:913.110000px;}
.y14b{bottom:914.190000px;}
.y176{bottom:915.540000px;}
.y197{bottom:919.410000px;}
.y35{bottom:924.810000px;}
.y6{bottom:931.560000px;}
.yd0{bottom:931.740000px;}
.y107{bottom:932.550000px;}
.y175{bottom:933.990000px;}
.y34{bottom:942.450000px;}
.y14a{bottom:943.440000px;}
.y94{bottom:945.960000px;}
.y68{bottom:946.410000px;}
.y5{bottom:950.010000px;}
.y106{bottom:950.190000px;}
.y174{bottom:951.630000px;}
.yce{bottom:959.100000px;}
.y33{bottom:960.000000px;}
.y93{bottom:963.600000px;}
.y67{bottom:963.960000px;}
.y105{bottom:967.740000px;}
.y173{bottom:969.180000px;}
.y149{bottom:972.690000px;}
.y121{bottom:972.960000px;}
.y32{bottom:977.550000px;}
.y92{bottom:981.150000px;}
.y66{bottom:981.600000px;}
.y172{bottom:986.730000px;}
.y4{bottom:987.630000px;}
.y196{bottom:990.150000px;}
.y120{bottom:990.600000px;}
.y104{bottom:994.290000px;}
.y31{bottom:995.190000px;}
.y91{bottom:998.790000px;}
.y65{bottom:999.150000px;}
.y147{bottom:1001.940000px;}
.y171{bottom:1005.180000px;}
.ycd{bottom:1007.790000px;}
.y11f{bottom:1008.150000px;}
.y3{bottom:1012.320000px;}
.y30{bottom:1012.770000px;}
.y64{bottom:1016.820000px;}
.y170{bottom:1022.760000px;}
.y11e{bottom:1025.820000px;}
.y103{bottom:1029.960000px;}
.y2f{bottom:1030.320000px;}
.y146{bottom:1031.220000px;}
.y63{bottom:1034.370000px;}
.y16f{bottom:1040.400000px;}
.ycc{bottom:1043.370000px;}
.y102{bottom:1047.510000px;}
.y2e{bottom:1047.960000px;}
.y90{bottom:1051.920000px;}
.y16e{bottom:1057.950000px;}
.y145{bottom:1060.470000px;}
.ycb{bottom:1060.920000px;}
.y101{bottom:1065.150000px;}
.y2d{bottom:1065.510000px;}
.y8f{bottom:1069.560000px;}
.y62{bottom:1069.920000px;}
.yca{bottom:1078.560000px;}
.y2c{bottom:1083.150000px;}
.y8e{bottom:1087.110000px;}
.y61{bottom:1087.560000px;}
.y143{bottom:1089.720000px;}
.y100{bottom:1091.700000px;}
.y16d{bottom:1094.400000px;}
.yc9{bottom:1096.110000px;}
.y2b{bottom:1100.700000px;}
.y60{bottom:1105.110000px;}
.y16c{bottom:1111.950000px;}
.yc8{bottom:1113.750000px;}
.y5f{bottom:1122.750000px;}
.y2a{bottom:1127.610000px;}
.y16b{bottom:1138.860000px;}
.y5e{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h13{height:19.407738px;}
.h15{height:20.836528px;}
.hb{height:26.550000px;}
.hd{height:26.640000px;}
.h19{height:26.813634px;}
.h18{height:27.408963px;}
.h1e{height:28.440000px;}
.h1f{height:28.470000px;}
.h17{height:28.694874px;}
.h20{height:29.430000px;}
.h2{height:30.022383px;}
.h1d{height:30.147476px;}
.h1a{height:31.338135px;}
.h11{height:32.028716px;}
.h14{height:33.576574px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h10{height:46.742648px;}
.h12{height:47.998421px;}
.hc{height:50.902383px;}
.h7{height:52.311445px;}
.h5{height:54.817383px;}
.h8{height:55.779258px;}
.h16{height:58.104139px;}
.h1c{height:59.890131px;}
.h21{height:61.793886px;}
.ha{height:62.585859px;}
.h1b{height:66.795945px;}
.h9{height:68.582109px;}
.he{height:71.824219px;}
.h4{height:72.985430px;}
.hf{height:615.548673px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:52.751425px;}
.w4{width:58.410000px;}
.w13{width:64.203566px;}
.w10{width:72.315499px;}
.w5{width:74.970000px;}
.w6{width:79.290000px;}
.w11{width:86.272796px;}
.w17{width:87.300000px;}
.w16{width:93.900000px;}
.we{width:97.844230px;}
.w18{width:98.280000px;}
.wc{width:99.629651px;}
.wb{width:99.748944px;}
.wf{width:103.327738px;}
.wd{width:113.825534px;}
.w15{width:119.070000px;}
.w8{width:159.390000px;}
.w3{width:163.110000px;}
.w7{width:194.520000px;}
.w12{width:199.597299px;}
.w14{width:224.850000px;}
.w9{width:486.745819px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:3.870000px;}
.x21{left:7.276881px;}
.x2a{left:8.708399px;}
.x10{left:9.782037px;}
.x2b{left:12.525779px;}
.xf{left:14.076590px;}
.x19{left:17.058918px;}
.x1a{left:18.729022px;}
.x18{left:21.114885px;}
.x14{left:22.188523px;}
.x24{left:23.858627px;}
.x20{left:25.170852px;}
.x23{left:26.483076px;}
.x12{left:28.272473px;}
.x1e{left:31.731974px;}
.x26{left:33.040222px;}
.x15{left:35.907234px;}
.x27{left:40.078517px;}
.x1{left:68.040000px;}
.x5{left:79.920000px;}
.x40{left:95.039987px;}
.x28{left:99.725085px;}
.x42{left:111.239987px;}
.x41{left:122.039987px;}
.x3b{left:133.470000px;}
.xe{left:203.595000px;}
.x2{left:211.079987px;}
.x11{left:216.001486px;}
.x33{left:228.629987px;}
.x1f{left:230.435956px;}
.x7{left:243.750000px;}
.x25{left:289.152037px;}
.x2d{left:298.739987px;}
.x8{left:302.880000px;}
.x2f{left:315.119987px;}
.x3a{left:332.759987px;}
.x31{left:334.379987px;}
.xd{left:340.769987px;}
.x22{left:350.226146px;}
.x1d{left:352.134837px;}
.x1b{left:353.208475px;}
.x3c{left:359.040000px;}
.x4{left:365.879987px;}
.x36{left:367.499987px;}
.x38{left:374.879987px;}
.x9{left:378.570000px;}
.xa{left:458.580000px;}
.x16{left:477.780332px;}
.x3d{left:478.830000px;}
.x17{left:481.478419px;}
.x1c{left:492.334095px;}
.x13{left:498.656631px;}
.x3e{left:573.450000px;}
.x29{left:621.548443px;}
.xb{left:653.910000px;}
.x3f{left:661.470000px;}
.xc{left:691.889987px;}
.x2c{left:732.389987px;}
.x2e{left:747.059987px;}
.x30{left:762.809987px;}
.x39{left:797.639987px;}
.x3{left:800.339987px;}
.x32{left:805.559987px;}
.x37{left:806.639987px;}
.x35{left:811.139987px;}
.x34{left:816.809987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.142933pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls11{letter-spacing:-0.107733pt;}
.ls21{letter-spacing:-0.104533pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls20{letter-spacing:-0.056533pt;}
.ls23{letter-spacing:-0.028160pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls1b{letter-spacing:-0.005440pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.ls17{letter-spacing:0.043520pt;}
.ls1c{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lsd{letter-spacing:0.065920pt;}
.ls22{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.088056pt;}
.ls13{letter-spacing:0.103467pt;}
.ls7{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.244800pt;}
.ls1a{letter-spacing:0.260267pt;}
.ls25{letter-spacing:0.263467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.360000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls18{letter-spacing:0.403200pt;}
.ls15{letter-spacing:1.043200pt;}
.ls5{letter-spacing:8.403200pt;}
.ls16{letter-spacing:19.923200pt;}
.ls1f{letter-spacing:42.423680pt;}
.ls1d{letter-spacing:56.503680pt;}
.ls1e{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.ws8{word-spacing:-11.860267pt;}
.wsd{word-spacing:-11.822933pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.751360pt;}
.wsc{word-spacing:-11.700267pt;}
.ws9{word-spacing:-11.613867pt;}
.ws6{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.236800pt;}
.ws4{word-spacing:0.000000pt;}
._b{margin-left:-3.633920pt;}
._6{margin-left:-2.404800pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.902901pt;}
._4{width:2.308794pt;}
._3{width:3.696000pt;}
._5{width:4.970134pt;}
._9{width:5.878400pt;}
._a{width:6.972267pt;}
._7{width:8.336533pt;}
._8{width:9.540588pt;}
._d{width:10.719253pt;}
._e{width:13.204907pt;}
._11{width:14.127147pt;}
._13{width:15.871680pt;}
._16{width:17.154347pt;}
._f{width:19.238400pt;}
._10{width:20.467520pt;}
._1{width:21.547765pt;}
._17{width:22.523242pt;}
._c{width:25.063360pt;}
._14{width:60.568640pt;}
._15{width:61.632427pt;}
._12{width:180.243200pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs9{font-size:38.947762pt;}
.fs3{font-size:40.000000pt;}
.fsa{font-size:42.334524pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.yfc{bottom:-5.291812pt;}
.y0{bottom:0.000000pt;}
.ye8{bottom:2.328402pt;}
.yff{bottom:3.810109pt;}
.yf1{bottom:4.762636pt;}
.ydc{bottom:5.503490pt;}
.ye1{bottom:6.773526pt;}
.yfb{bottom:6.879366pt;}
.ycf{bottom:6.960000pt;}
.yd3{bottom:7.040000pt;}
.yde{bottom:7.408544pt;}
.y144{bottom:8.640000pt;}
.y148{bottom:8.666667pt;}
.ye3{bottom:8.678580pt;}
.y154{bottom:9.520000pt;}
.yf6{bottom:10.160288pt;}
.yee{bottom:12.188818pt;}
.yec{bottom:12.400491pt;}
.yea{bottom:13.017869pt;}
.ye7{bottom:15.452105pt;}
.yfe{bottom:16.951451pt;}
.yf0{bottom:17.992175pt;}
.ydb{bottom:18.627192pt;}
.yfa{bottom:19.050542pt;}
.ye0{bottom:20.003066pt;}
.yf5{bottom:23.283991pt;}
.ye6{bottom:28.681644pt;}
.yf9{bottom:31.221718pt;}
.yf4{bottom:36.407694pt;}
.ye5{bottom:41.805346pt;}
.yf8{bottom:43.392894pt;}
.yf3{bottom:49.531396pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y5d{bottom:100.746667pt;}
.y118{bottom:100.826667pt;}
.y11d{bottom:102.266667pt;}
.y8d{bottom:102.826667pt;}
.yc7{bottom:115.706667pt;}
.y5c{bottom:116.426667pt;}
.y12b{bottom:118.266667pt;}
.y8c{bottom:118.506667pt;}
.y1d0{bottom:118.826667pt;}
.y16a{bottom:120.586667pt;}
.y1b6{bottom:126.106667pt;}
.ya2{bottom:129.626667pt;}
.y11c{bottom:130.906667pt;}
.y5b{bottom:132.026667pt;}
.y117{bottom:132.426667pt;}
.y8b{bottom:134.106667pt;}
.y1cf{bottom:134.506667pt;}
.y195{bottom:136.186667pt;}
.yd7{bottom:141.706667pt;}
.y1b5{bottom:141.786667pt;}
.yc6{bottom:147.306667pt;}
.y5a{bottom:147.706667pt;}
.y12a{bottom:149.946667pt;}
.y1ce{bottom:150.106667pt;}
.y194{bottom:151.866667pt;}
.y169{bottom:152.186667pt;}
.y142{bottom:153.306667pt;}
.y116{bottom:161.066667pt;}
.ya1{bottom:161.306667pt;}
.yd6{bottom:162.346667pt;}
.yc5{bottom:162.906667pt;}
.y59{bottom:163.306667pt;}
.yd8{bottom:165.191177pt;}
.y1b4{bottom:165.386667pt;}
.y8a{bottom:165.786667pt;}
.y1cd{bottom:173.786667pt;}
.y193{bottom:175.466667pt;}
.y27{bottom:177.146667pt;}
.yc4{bottom:178.586667pt;}
.y1b3{bottom:180.986667pt;}
.y89{bottom:181.386667pt;}
.y168{bottom:183.786667pt;}
.y141{bottom:184.906667pt;}
.y1cc{bottom:189.386667pt;}
.ya0{bottom:189.946667pt;}
.yf7{bottom:191.015279pt;}
.y192{bottom:191.066667pt;}
.yc3{bottom:194.186667pt;}
.y58{bottom:194.906667pt;}
.y1b2{bottom:196.666667pt;}
.y140{bottom:200.586667pt;}
.yc2{bottom:209.866667pt;}
.y26{bottom:210.026667pt;}
.y57{bottom:210.586667pt;}
.y88{bottom:212.986667pt;}
.y191{bottom:214.746667pt;}
.y167{bottom:215.466667pt;}
.y13f{bottom:216.186667pt;}
.y1b1{bottom:220.266667pt;}
.yc1{bottom:225.466667pt;}
.y25{bottom:225.706667pt;}
.y56{bottom:226.186667pt;}
.y87{bottom:228.666667pt;}
.y190{bottom:230.346667pt;}
.y166{bottom:231.066667pt;}
.y13e{bottom:231.786667pt;}
.y1b0{bottom:235.946667pt;}
.y55{bottom:241.866667pt;}
.y86{bottom:244.266667pt;}
.y165{bottom:246.746667pt;}
.y13d{bottom:247.466667pt;}
.y18f{bottom:253.946667pt;}
.yc0{bottom:257.066667pt;}
.y24{bottom:257.306667pt;}
.y1af{bottom:259.546667pt;}
.y13c{bottom:263.066667pt;}
.y1cb{bottom:267.946667pt;}
.y18e{bottom:269.626667pt;}
.ybf{bottom:272.746667pt;}
.y23{bottom:272.906667pt;}
.y54{bottom:273.466667pt;}
.y1ae{bottom:275.146667pt;}
.y85{bottom:275.946667pt;}
.y164{bottom:278.346667pt;}
.y13b{bottom:278.666667pt;}
.y1ca{bottom:283.546667pt;}
.ybe{bottom:288.346667pt;}
.y22{bottom:288.586667pt;}
.y53{bottom:289.066667pt;}
.y84{bottom:291.546667pt;}
.y18d{bottom:293.226667pt;}
.y163{bottom:293.946667pt;}
.y13a{bottom:294.346667pt;}
.y1ad{bottom:298.826667pt;}
.y1c9{bottom:299.146667pt;}
.y127{bottom:299.946667pt;}
.ybd{bottom:303.946667pt;}
.y21{bottom:304.186667pt;}
.y52{bottom:304.746667pt;}
.y124{bottom:305.626667pt;}
.y83{bottom:307.146667pt;}
.y18c{bottom:308.906667pt;}
.y162{bottom:309.626667pt;}
.y139{bottom:309.946667pt;}
.y1ac{bottom:314.426667pt;}
.ybc{bottom:319.626667pt;}
.y20{bottom:319.866667pt;}
.y51{bottom:320.346667pt;}
.yf2{bottom:322.806183pt;}
.y1c8{bottom:322.826667pt;}
.y161{bottom:325.226667pt;}
.y138{bottom:325.626667pt;}
.y126{bottom:331.546667pt;}
.y18b{bottom:332.506667pt;}
.ybb{bottom:335.226667pt;}
.y1f{bottom:335.466667pt;}
.y50{bottom:335.946667pt;}
.y123{bottom:337.226667pt;}
.y1ab{bottom:338.106667pt;}
.y1c7{bottom:338.426667pt;}
.y82{bottom:338.826667pt;}
.y160{bottom:340.906667pt;}
.y137{bottom:341.226667pt;}
.ydf{bottom:347.466038pt;}
.y18a{bottom:348.106667pt;}
.yba{bottom:350.906667pt;}
.y1e{bottom:351.066667pt;}
.y4f{bottom:351.626667pt;}
.y81{bottom:354.426667pt;}
.y15f{bottom:356.506667pt;}
.y125{bottom:360.186667pt;}
.y1aa{bottom:361.706667pt;}
.y1c6{bottom:362.106667pt;}
.y122{bottom:365.866667pt;}
.yb9{bottom:366.506667pt;}
.y1d{bottom:366.746667pt;}
.y4e{bottom:367.226667pt;}
.y80{bottom:370.106667pt;}
.y189{bottom:371.786667pt;}
.y15e{bottom:372.106667pt;}
.y136{bottom:372.826667pt;}
.y1c5{bottom:377.706667pt;}
.y1c{bottom:382.346667pt;}
.y4d{bottom:382.906667pt;}
.y1a9{bottom:385.306667pt;}
.y7f{bottom:385.706667pt;}
.y15d{bottom:387.786667pt;}
.y135{bottom:388.506667pt;}
.yb8{bottom:390.106667pt;}
.y1c4{bottom:393.306667pt;}
.y188{bottom:395.386667pt;}
.y1b{bottom:398.026667pt;}
.y4c{bottom:398.506667pt;}
.y1a8{bottom:400.986667pt;}
.y15c{bottom:403.386667pt;}
.y134{bottom:404.106667pt;}
.y187{bottom:411.066667pt;}
.ye4{bottom:411.620482pt;}
.y1a{bottom:413.626667pt;}
.y4b{bottom:414.106667pt;}
.y1c3{bottom:416.986667pt;}
.y7e{bottom:417.306667pt;}
.y133{bottom:419.813333pt;}
.yb7{bottom:421.813333pt;}
.y1a7{bottom:424.613333pt;}
.y19{bottom:429.253333pt;}
.y4a{bottom:429.813333pt;}
.y1c2{bottom:432.613333pt;}
.y7d{bottom:433.013333pt;}
.y186{bottom:434.693333pt;}
.y15b{bottom:435.093333pt;}
.y132{bottom:435.413333pt;}
.yb6{bottom:437.413333pt;}
.y1a6{bottom:440.293333pt;}
.ye9{bottom:442.736362pt;}
.y18{bottom:444.933333pt;}
.y49{bottom:445.413333pt;}
.y1c1{bottom:448.293333pt;}
.y7c{bottom:448.613333pt;}
.y15a{bottom:450.693333pt;}
.y131{bottom:451.013333pt;}
.yb5{bottom:453.093333pt;}
.y185{bottom:458.293333pt;}
.y17{bottom:460.533333pt;}
.y48{bottom:461.093333pt;}
.y1a5{bottom:463.893333pt;}
.y7b{bottom:464.293333pt;}
.y159{bottom:466.293333pt;}
.y130{bottom:466.693333pt;}
.yb4{bottom:468.693333pt;}
.y1c0{bottom:471.893333pt;}
.y184{bottom:473.973333pt;}
.y16{bottom:476.213333pt;}
.y47{bottom:476.693333pt;}
.y1a4{bottom:479.493333pt;}
.y7a{bottom:479.893333pt;}
.y158{bottom:481.973333pt;}
.y12f{bottom:482.293333pt;}
.yb3{bottom:484.293333pt;}
.y1bf{bottom:487.493333pt;}
.y15{bottom:491.813333pt;}
.y79{bottom:495.493333pt;}
.y157{bottom:497.573333pt;}
.yef{bottom:497.665413pt;}
.y12e{bottom:497.973333pt;}
.yb2{bottom:499.973333pt;}
.y1a3{bottom:503.173333pt;}
.y14{bottom:507.413333pt;}
.y46{bottom:508.293333pt;}
.y1be{bottom:511.173333pt;}
.y156{bottom:513.253333pt;}
.yfd{bottom:514.705045pt;}
.yb1{bottom:515.573333pt;}
.y1a2{bottom:518.773333pt;}
.yeb{bottom:519.891027pt;}
.yed{bottom:520.420214pt;}
.y183{bottom:521.253333pt;}
.y13{bottom:523.093333pt;}
.y45{bottom:523.973333pt;}
.y1bd{bottom:526.773333pt;}
.y78{bottom:527.173333pt;}
.y12d{bottom:529.573333pt;}
.yb0{bottom:531.253333pt;}
.y182{bottom:536.853333pt;}
.y155{bottom:537.093333pt;}
.yd9{bottom:537.311600pt;}
.y12{bottom:538.693333pt;}
.y44{bottom:539.573333pt;}
.y1a1{bottom:542.453333pt;}
.y77{bottom:542.773333pt;}
.y1bc{bottom:550.453333pt;}
.y11{bottom:554.373333pt;}
.yaf{bottom:554.853333pt;}
.y43{bottom:555.253333pt;}
.y1a0{bottom:558.053333pt;}
.y12c{bottom:558.213333pt;}
.y76{bottom:558.453333pt;}
.y181{bottom:560.773333pt;}
.y115{bottom:562.133333pt;}
.y11b{bottom:563.973333pt;}
.y1bb{bottom:566.053333pt;}
.y10{bottom:569.973333pt;}
.y42{bottom:570.853333pt;}
.y75{bottom:574.053333pt;}
.y114{bottom:577.733333pt;}
.y19f{bottom:581.653333pt;}
.y41{bottom:586.453333pt;}
.y74{bottom:589.653333pt;}
.y113{bottom:593.413333pt;}
.yf{bottom:593.893333pt;}
.y11a{bottom:595.573333pt;}
.y19e{bottom:597.333333pt;}
.y129{bottom:597.573333pt;}
.ydd{bottom:601.508473pt;}
.yae{bottom:602.133333pt;}
.ye2{bottom:602.249317pt;}
.y180{bottom:603.653333pt;}
.y153{bottom:604.613333pt;}
.y1ba{bottom:605.333333pt;}
.y112{bottom:609.013333pt;}
.yad{bottom:617.733333pt;}
.y40{bottom:618.133333pt;}
.y19d{bottom:620.933333pt;}
.y73{bottom:621.333333pt;}
.y119{bottom:624.213333pt;}
.y111{bottom:624.613333pt;}
.y128{bottom:626.213333pt;}
.y17f{bottom:627.573333pt;}
.y9f{bottom:628.933333pt;}
.y152{bottom:630.613333pt;}
.yac{bottom:633.413333pt;}
.y3f{bottom:633.733333pt;}
.ye{bottom:635.493333pt;}
.y72{bottom:636.933333pt;}
.y110{bottom:640.293333pt;}
.y9e{bottom:644.613333pt;}
.yab{bottom:649.013333pt;}
.y3e{bottom:649.413333pt;}
.y71{bottom:652.613333pt;}
.y151{bottom:656.613333pt;}
.y9d{bottom:660.213333pt;}
.y17e{bottom:660.773333pt;}
.y10f{bottom:663.893333pt;}
.yaa{bottom:664.613333pt;}
.y3d{bottom:665.013333pt;}
.yd{bottom:667.333333pt;}
.y1b9{bottom:668.213333pt;}
.y9c{bottom:675.813333pt;}
.yda{bottom:680.277143pt;}
.ya9{bottom:680.293333pt;}
.y3c{bottom:680.613333pt;}
.y150{bottom:682.613333pt;}
.y19c{bottom:683.813333pt;}
.y70{bottom:684.213333pt;}
.y10e{bottom:695.573333pt;}
.ya8{bottom:695.893333pt;}
.y3b{bottom:696.293333pt;}
.yc{bottom:699.333333pt;}
.y19b{bottom:699.493333pt;}
.y6f{bottom:699.813333pt;}
.y17d{bottom:703.733333pt;}
.y9b{bottom:707.493333pt;}
.y14f{bottom:708.613333pt;}
.y10d{bottom:711.173333pt;}
.ya7{bottom:711.573333pt;}
.y6e{bottom:715.493333pt;}
.y17c{bottom:719.333333pt;}
.y9a{bottom:723.093333pt;}
.y10c{bottom:726.773333pt;}
.ya6{bottom:727.173333pt;}
.y3a{bottom:727.893333pt;}
.yd5{bottom:731.013333pt;}
.y14e{bottom:734.613333pt;}
.yb{bottom:734.693333pt;}
.y17b{bottom:734.933333pt;}
.y99{bottom:738.693333pt;}
.y10b{bottom:742.453333pt;}
.ya5{bottom:742.773333pt;}
.y39{bottom:743.573333pt;}
.y1b8{bottom:746.693333pt;}
.y6d{bottom:747.093333pt;}
.y17a{bottom:750.533333pt;}
.ya{bottom:750.693333pt;}
.y98{bottom:754.373333pt;}
.yd4{bottom:755.333333pt;}
.y10a{bottom:758.053333pt;}
.y38{bottom:759.173333pt;}
.y14d{bottom:760.613333pt;}
.y19a{bottom:762.373333pt;}
.y6c{bottom:762.693333pt;}
.ya4{bottom:766.453333pt;}
.y9{bottom:766.693333pt;}
.y179{bottom:766.933333pt;}
.y97{bottom:769.973333pt;}
.y109{bottom:773.733333pt;}
.y37{bottom:774.773333pt;}
.y199{bottom:777.973333pt;}
.y6b{bottom:778.373333pt;}
.yd2{bottom:779.573333pt;}
.y178{bottom:782.613333pt;}
.y96{bottom:785.653333pt;}
.y1b7{bottom:785.973333pt;}
.y14c{bottom:786.613333pt;}
.y6a{bottom:793.973333pt;}
.y8{bottom:795.253333pt;}
.y108{bottom:797.333333pt;}
.y177{bottom:798.213333pt;}
.ya3{bottom:798.373333pt;}
.y198{bottom:801.653333pt;}
.yd1{bottom:803.893333pt;}
.y36{bottom:806.453333pt;}
.y95{bottom:809.253333pt;}
.y69{bottom:809.653333pt;}
.y7{bottom:811.653333pt;}
.y14b{bottom:812.613333pt;}
.y176{bottom:813.813333pt;}
.y197{bottom:817.253333pt;}
.y35{bottom:822.053333pt;}
.y6{bottom:828.053333pt;}
.yd0{bottom:828.213333pt;}
.y107{bottom:828.933333pt;}
.y175{bottom:830.213333pt;}
.y34{bottom:837.733333pt;}
.y14a{bottom:838.613333pt;}
.y94{bottom:840.853333pt;}
.y68{bottom:841.253333pt;}
.y5{bottom:844.453333pt;}
.y106{bottom:844.613333pt;}
.y174{bottom:845.893333pt;}
.yce{bottom:852.533333pt;}
.y33{bottom:853.333333pt;}
.y93{bottom:856.533333pt;}
.y67{bottom:856.853333pt;}
.y105{bottom:860.213333pt;}
.y173{bottom:861.493333pt;}
.y149{bottom:864.613333pt;}
.y121{bottom:864.853333pt;}
.y32{bottom:868.933333pt;}
.y92{bottom:872.133333pt;}
.y66{bottom:872.533333pt;}
.y172{bottom:877.093333pt;}
.y4{bottom:877.893333pt;}
.y196{bottom:880.133333pt;}
.y120{bottom:880.533333pt;}
.y104{bottom:883.813333pt;}
.y31{bottom:884.613333pt;}
.y91{bottom:887.813333pt;}
.y65{bottom:888.133333pt;}
.y147{bottom:890.613333pt;}
.y171{bottom:893.493333pt;}
.ycd{bottom:895.813333pt;}
.y11f{bottom:896.133333pt;}
.y3{bottom:899.840000pt;}
.y30{bottom:900.240000pt;}
.y64{bottom:903.840000pt;}
.y170{bottom:909.120000pt;}
.y11e{bottom:911.840000pt;}
.y103{bottom:915.520000pt;}
.y2f{bottom:915.840000pt;}
.y146{bottom:916.640000pt;}
.y63{bottom:919.440000pt;}
.y16f{bottom:924.800000pt;}
.ycc{bottom:927.440000pt;}
.y102{bottom:931.120000pt;}
.y2e{bottom:931.520000pt;}
.y90{bottom:935.040000pt;}
.y16e{bottom:940.400000pt;}
.y145{bottom:942.640000pt;}
.ycb{bottom:943.040000pt;}
.y101{bottom:946.800000pt;}
.y2d{bottom:947.120000pt;}
.y8f{bottom:950.720000pt;}
.y62{bottom:951.040000pt;}
.yca{bottom:958.720000pt;}
.y2c{bottom:962.800000pt;}
.y8e{bottom:966.320000pt;}
.y61{bottom:966.720000pt;}
.y143{bottom:968.640000pt;}
.y100{bottom:970.400000pt;}
.y16d{bottom:972.800000pt;}
.yc9{bottom:974.320000pt;}
.y2b{bottom:978.400000pt;}
.y60{bottom:982.320000pt;}
.y16c{bottom:988.400000pt;}
.yc8{bottom:990.000000pt;}
.y5f{bottom:998.000000pt;}
.y2a{bottom:1002.320000pt;}
.y16b{bottom:1012.320000pt;}
.y5e{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h13{height:17.251322pt;}
.h15{height:18.521358pt;}
.hb{height:23.600000pt;}
.hd{height:23.680000pt;}
.h19{height:23.834341pt;}
.h18{height:24.363523pt;}
.h1e{height:25.280000pt;}
.h1f{height:25.306667pt;}
.h17{height:25.506555pt;}
.h20{height:26.160000pt;}
.h2{height:26.686562pt;}
.h1d{height:26.797756pt;}
.h1a{height:27.856120pt;}
.h11{height:28.469970pt;}
.h14{height:29.845843pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h10{height:41.549020pt;}
.h12{height:42.665263pt;}
.hc{height:45.246562pt;}
.h7{height:46.499062pt;}
.h5{height:48.726562pt;}
.h8{height:49.581562pt;}
.h16{height:51.648124pt;}
.h1c{height:53.235672pt;}
.h21{height:54.927899pt;}
.ha{height:55.631875pt;}
.h1b{height:59.374174pt;}
.h9{height:60.961875pt;}
.he{height:63.843750pt;}
.h4{height:64.875937pt;}
.hf{height:547.154376pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:46.890155pt;}
.w4{width:51.920000pt;}
.w13{width:57.069836pt;}
.w10{width:64.280444pt;}
.w5{width:66.640000pt;}
.w6{width:70.480000pt;}
.w11{width:76.686930pt;}
.w17{width:77.600000pt;}
.w16{width:83.466667pt;}
.we{width:86.972649pt;}
.w18{width:87.360000pt;}
.wc{width:88.559690pt;}
.wb{width:88.665728pt;}
.wf{width:91.846878pt;}
.wd{width:101.178252pt;}
.w15{width:105.840000pt;}
.w8{width:141.680000pt;}
.w3{width:144.986667pt;}
.w7{width:172.906667pt;}
.w12{width:177.419821pt;}
.w14{width:199.866667pt;}
.w9{width:432.662950pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:3.440000pt;}
.x21{left:6.468339pt;}
.x2a{left:7.740799pt;}
.x10{left:8.695144pt;}
.x2b{left:11.134026pt;}
.xf{left:12.512524pt;}
.x19{left:15.163483pt;}
.x1a{left:16.648020pt;}
.x18{left:18.768787pt;}
.x14{left:19.723132pt;}
.x24{left:21.207669pt;}
.x20{left:22.374090pt;}
.x23{left:23.540512pt;}
.x12{left:25.131087pt;}
.x1e{left:28.206199pt;}
.x26{left:29.369086pt;}
.x15{left:31.917541pt;}
.x27{left:35.625349pt;}
.x1{left:60.480000pt;}
.x5{left:71.040000pt;}
.x40{left:84.479988pt;}
.x28{left:88.644520pt;}
.x42{left:98.879988pt;}
.x41{left:108.479988pt;}
.x3b{left:118.640000pt;}
.xe{left:180.973333pt;}
.x2{left:187.626655pt;}
.x11{left:192.001321pt;}
.x33{left:203.226655pt;}
.x1f{left:204.831961pt;}
.x7{left:216.666667pt;}
.x25{left:257.024033pt;}
.x2d{left:265.546655pt;}
.x8{left:269.226667pt;}
.x2f{left:280.106655pt;}
.x3a{left:295.786655pt;}
.x31{left:297.226655pt;}
.xd{left:302.906655pt;}
.x22{left:311.312130pt;}
.x1d{left:313.008744pt;}
.x1b{left:313.963089pt;}
.x3c{left:319.146667pt;}
.x4{left:325.226655pt;}
.x36{left:326.666655pt;}
.x38{left:333.226655pt;}
.x9{left:336.506667pt;}
.xa{left:407.626667pt;}
.x16{left:424.693629pt;}
.x3d{left:425.626667pt;}
.x17{left:427.980817pt;}
.x1c{left:437.630307pt;}
.x13{left:443.250339pt;}
.x3e{left:509.733333pt;}
.x29{left:552.487505pt;}
.xb{left:581.253333pt;}
.x3f{left:587.973333pt;}
.xc{left:615.013322pt;}
.x2c{left:651.013322pt;}
.x2e{left:664.053322pt;}
.x30{left:678.053322pt;}
.x39{left:709.013322pt;}
.x3{left:711.413322pt;}
.x32{left:716.053322pt;}
.x37{left:717.013322pt;}
.x35{left:721.013322pt;}
.x34{left:726.053322pt;}
}




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