
    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_58c6ddc9beabcb0f2f7578dc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919434;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_1d0d91cc90e28e2f2985fc63.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_19125b56fbbaa6d37c95a59c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.995117;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_291f3f4bacd80db4430ecdcc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.835449;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_923aa33e5f5495acbee0a1fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.956543;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_8a6fd624d45a6ea7cc9af850.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_32a9fb4b78a93843fca41fc0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.953613;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_9a6415db202e204431b8f369.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_d03725a4b57d621abd159859.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_51a78191f5e1538abd5f4fb4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_062ed87b406e0b945f5dce91.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.718750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_32c2f155103f6b141c4004f9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b7f690fb9815e9b0707386f0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.667480;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c89e1cb4091a190d4e44e0b8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.920898;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d3dd04c722a75d4661a8f8d4.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e335d8b2c1061cf38cde10a1.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_04239a50e5aec45f44e4cfc3.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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;}
.m2{transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-ms-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-webkit-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.960205px;}
.v1{vertical-align:33.552063px;}
.ls6{letter-spacing:-5.760000px;}
.ls5{letter-spacing:-4.470000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000067px;}
.ls3{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.048000px;}
.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;}
}
.ws5{word-spacing:-32.076000px;}
.ws9{word-spacing:-29.160000px;}
.wsa{word-spacing:-24.300000px;}
.ws6{word-spacing:-22.704000px;}
.wsb{word-spacing:-20.640000px;}
.ws3{word-spacing:-15.840000px;}
.ws4{word-spacing:-14.520000px;}
.ws8{word-spacing:-12.960000px;}
.ws0{word-spacing:-11.880000px;}
.ws2{word-spacing:-10.560000px;}
.ws7{word-spacing:-10.050000px;}
.wsf{word-spacing:-3.120000px;}
.wse{word-spacing:-3.078000px;}
.ws11{word-spacing:-1.272000px;}
.ws1{word-spacing:0.000000px;}
.ws10{word-spacing:1.908000px;}
.ws16{word-spacing:2.148000px;}
.ws14{word-spacing:2.262000px;}
.ws12{word-spacing:2.586000px;}
.ws15{word-spacing:2.598000px;}
.ws13{word-spacing:2.760000px;}
.wsc{word-spacing:2.946000px;}
.wsd{word-spacing:2.958000px;}
._e{margin-left:-7.614000px;}
._5{margin-left:-6.204000px;}
._10{margin-left:-5.112000px;}
._1{margin-left:-3.996000px;}
._4{margin-left:-2.178000px;}
._0{margin-left:-1.134000px;}
._7{width:1.272000px;}
._3{width:2.700000px;}
._9{width:4.296000px;}
._6{width:5.778000px;}
._2{width:7.038000px;}
._8{width:8.580000px;}
._d{width:9.660000px;}
._13{width:10.698168px;}
._c{width:11.700000px;}
._b{width:13.032000px;}
._11{width:14.507928px;}
._f{width:17.424000px;}
._a{width:19.134000px;}
._12{width:20.502000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(156,156,156);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs9{font-size:68.327388px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs3{font-size:84.000000px;}
.fs8{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:44.237999px;}
.y22{bottom:60.438001px;}
.y24{bottom:62.053500px;}
.y4{bottom:73.501500px;}
.y3{bottom:87.901499px;}
.yb2{bottom:117.087017px;}
.y15f{bottom:118.177512px;}
.y8a{bottom:124.639516px;}
.y123{bottom:125.481000px;}
.ybf{bottom:126.214500px;}
.ye8{bottom:128.365502px;}
.y17f{bottom:131.169000px;}
.yb1{bottom:138.686962px;}
.yd7{bottom:138.781536px;}
.y4e{bottom:138.871532px;}
.y15e{bottom:139.777503px;}
.y89{bottom:146.239507px;}
.y122{bottom:147.081000px;}
.ybe{bottom:147.814500px;}
.ye7{bottom:149.965493px;}
.y17e{bottom:150.969000px;}
.yb0{bottom:160.286999px;}
.yd6{bottom:160.381481px;}
.y4d{bottom:160.471477px;}
.y15d{bottom:161.377493px;}
.y88{bottom:167.839498px;}
.y121{bottom:168.681000px;}
.ybd{bottom:169.414500px;}
.ye6{bottom:171.565506px;}
.y17d{bottom:175.020000px;}
.y1b3{bottom:177.394050px;}
.yaf{bottom:181.887035px;}
.yd5{bottom:181.981518px;}
.y4c{bottom:182.071514px;}
.y15c{bottom:182.977484px;}
.y87{bottom:189.439489px;}
.y120{bottom:190.281000px;}
.ybc{bottom:191.014500px;}
.ye5{bottom:193.165497px;}
.y1b2{bottom:193.579050px;}
.y17c{bottom:194.820000px;}
.y1a4{bottom:196.249500px;}
.yae{bottom:203.486980px;}
.yd4{bottom:203.581463px;}
.y4b{bottom:203.671459px;}
.y15b{bottom:204.577521px;}
.y86{bottom:211.039479px;}
.y11f{bottom:211.881000px;}
.ybb{bottom:212.614500px;}
.y108{bottom:213.976543px;}
.y1b1{bottom:214.105050px;}
.y1a3{bottom:214.249500px;}
.y17b{bottom:214.620000px;}
.ye4{bottom:214.765511px;}
.yad{bottom:225.087017px;}
.yd3{bottom:225.181499px;}
.y4a{bottom:225.271496px;}
.y15a{bottom:226.177512px;}
.y1b0{bottom:229.579500px;}
.y85{bottom:232.639516px;}
.y11e{bottom:233.481000px;}
.yba{bottom:234.214500px;}
.y107{bottom:235.576488px;}
.ye3{bottom:236.365502px;}
.y17a{bottom:238.671000px;}
.yac{bottom:246.686962px;}
.y49{bottom:246.871532px;}
.y159{bottom:247.777503px;}
.y1af{bottom:249.394500px;}
.y20{bottom:250.396501px;}
.y84{bottom:254.239507px;}
.y11d{bottom:255.081000px;}
.yb9{bottom:255.814500px;}
.y106{bottom:257.176525px;}
.ye2{bottom:257.965493px;}
.y179{bottom:258.471000px;}
.yd2{bottom:258.568493px;}
.y140{bottom:266.362469px;}
.y1ae{bottom:268.105500px;}
.y1a2{bottom:268.249500px;}
.yab{bottom:268.286999px;}
.y48{bottom:268.471477px;}
.y158{bottom:269.377493px;}
.y83{bottom:275.839498px;}
.y11c{bottom:276.681000px;}
.yb8{bottom:277.414500px;}
.y105{bottom:278.776470px;}
.ye1{bottom:279.565495px;}
.yd1{bottom:281.227520px;}
.y178{bottom:282.522000px;}
.y1f{bottom:283.980002px;}
.y1ad{bottom:286.105500px;}
.y1a1{bottom:286.249500px;}
.y13f{bottom:287.962505px;}
.yaa{bottom:289.887035px;}
.y47{bottom:290.071514px;}
.y157{bottom:290.977484px;}
.y82{bottom:297.439489px;}
.y11b{bottom:298.281000px;}
.yb7{bottom:299.014500px;}
.yd0{bottom:299.227520px;}
.y104{bottom:300.376507px;}
.ye0{bottom:301.165497px;}
.y177{bottom:302.322000px;}
.y1e{bottom:303.779997px;}
.y1ac{bottom:304.105500px;}
.y71{bottom:307.761000px;}
.y13e{bottom:309.562542px;}
.ya9{bottom:311.486980px;}
.y46{bottom:311.671459px;}
.y156{bottom:312.577521px;}
.y81{bottom:319.039502px;}
.y11a{bottom:319.881000px;}
.yb6{bottom:320.614500px;}
.y103{bottom:321.976497px;}
.y1ab{bottom:322.105500px;}
.y1a0{bottom:322.249500px;}
.ydf{bottom:322.765500px;}
.y1d{bottom:323.580004px;}
.y176{bottom:326.373000px;}
.y70{bottom:329.361000px;}
.y13d{bottom:331.162487px;}
.ya8{bottom:333.087017px;}
.y45{bottom:333.271496px;}
.y155{bottom:334.177512px;}
.y1aa{bottom:340.105500px;}
.y80{bottom:340.639493px;}
.y119{bottom:341.481000px;}
.y1c{bottom:343.379999px;}
.y102{bottom:343.576488px;}
.ycf{bottom:343.704021px;}
.yde{bottom:344.365502px;}
.y175{bottom:346.173000px;}
.y6f{bottom:350.961000px;}
.y13c{bottom:352.762478px;}
.ya7{bottom:354.687008px;}
.y44{bottom:354.871486px;}
.y154{bottom:355.777503px;}
.y1a9{bottom:358.105500px;}
.y7f{bottom:362.239507px;}
.y118{bottom:363.081000px;}
.y1b{bottom:363.180001px;}
.y101{bottom:365.176479px;}
.yce{bottom:365.304012px;}
.ydd{bottom:365.965504px;}
.y174{bottom:370.224000px;}
.y6e{bottom:372.561000px;}
.y13b{bottom:374.362514px;}
.y1a8{bottom:376.105500px;}
.y19f{bottom:376.249500px;}
.ya6{bottom:376.286999px;}
.y43{bottom:376.471477px;}
.y153{bottom:377.377493px;}
.y1a{bottom:382.980002px;}
.y117{bottom:384.681000px;}
.y100{bottom:386.776516px;}
.ycd{bottom:386.904003px;}
.ydc{bottom:387.565501px;}
.y7e{bottom:387.565511px;}
.y1a7{bottom:394.105500px;}
.y6d{bottom:394.161000px;}
.y19e{bottom:394.249500px;}
.y173{bottom:394.275000px;}
.y13a{bottom:395.962505px;}
.ya5{bottom:397.886989px;}
.y42{bottom:398.071514px;}
.y152{bottom:398.977484px;}
.y19{bottom:402.780003px;}
.y116{bottom:406.281000px;}
.yff{bottom:408.376507px;}
.ycc{bottom:408.503994px;}
.ydb{bottom:409.165497px;}
.y7d{bottom:409.165502px;}
.y1a6{bottom:412.105500px;}
.y6c{bottom:415.761000px;}
.y139{bottom:417.562496px;}
.y172{bottom:418.326000px;}
.y41{bottom:419.671505px;}
.y151{bottom:420.577521px;}
.y18{bottom:422.580001px;}
.y115{bottom:427.881000px;}
.yfe{bottom:429.976497px;}
.ycb{bottom:430.103985px;}
.y1a5{bottom:430.105500px;}
.y19d{bottom:430.249500px;}
.y7c{bottom:430.765493px;}
.yda{bottom:430.765500px;}
.y6b{bottom:437.361000px;}
.y171{bottom:438.126000px;}
.y138{bottom:439.162487px;}
.y40{bottom:441.271496px;}
.y150{bottom:442.177489px;}
.y17{bottom:442.379999px;}
.ya4{bottom:448.204510px;}
.y114{bottom:449.481000px;}
.yfd{bottom:451.576488px;}
.y7b{bottom:452.365495px;}
.yd9{bottom:452.365500px;}
.y170{bottom:457.926000px;}
.y6a{bottom:458.961000px;}
.y137{bottom:460.762478px;}
.y3f{bottom:462.871486px;}
.yca{bottom:463.490978px;}
.y14f{bottom:463.777503px;}
.y113{bottom:471.081000px;}
.y19c{bottom:473.086500px;}
.yfc{bottom:473.176479px;}
.y7a{bottom:473.965497px;}
.y16{bottom:476.935502px;}
.y69{bottom:480.561000px;}
.yc9{bottom:481.490978px;}
.y16f{bottom:481.977000px;}
.y136{bottom:482.362514px;}
.y3e{bottom:484.471477px;}
.y14e{bottom:485.377493px;}
.y112{bottom:492.681000px;}
.yfb{bottom:494.776516px;}
.y79{bottom:495.565500px;}
.yc8{bottom:499.490978px;}
.ya3{bottom:500.579998px;}
.y16e{bottom:501.777000px;}
.y68{bottom:502.161000px;}
.y135{bottom:503.962505px;}
.y3d{bottom:506.071514px;}
.y14d{bottom:506.977507px;}
.y111{bottom:514.281000px;}
.yfa{bottom:516.376507px;}
.y78{bottom:517.165502px;}
.y19b{bottom:521.211000px;}
.ya2{bottom:522.179989px;}
.y67{bottom:523.761000px;}
.y134{bottom:525.562496px;}
.y16d{bottom:525.828000px;}
.y15{bottom:525.948001px;}
.y3c{bottom:527.671505px;}
.y14c{bottom:528.577498px;}
.yc7{bottom:531.212993px;}
.y110{bottom:535.881000px;}
.yf9{bottom:537.976497px;}
.y77{bottom:538.765504px;}
.y19a{bottom:541.011000px;}
.ya1{bottom:543.779979px;}
.y66{bottom:545.361000px;}
.y16c{bottom:545.628000px;}
.y133{bottom:547.162487px;}
.y14b{bottom:550.177489px;}
.yc6{bottom:552.812984px;}
.y3b{bottom:552.997509px;}
.y10f{bottom:557.481000px;}
.y14{bottom:559.531497px;}
.yf8{bottom:559.576488px;}
.y76{bottom:560.365501px;}
.y199{bottom:565.062000px;}
.ya0{bottom:565.380016px;}
.y65{bottom:566.961000px;}
.y132{bottom:568.762478px;}
.y16b{bottom:569.679000px;}
.yc5{bottom:574.413021px;}
.y3a{bottom:574.597500px;}
.y10e{bottom:579.081000px;}
.y13{bottom:579.331504px;}
.yf7{bottom:581.176479px;}
.y75{bottom:581.965497px;}
.y198{bottom:584.862000px;}
.y9f{bottom:586.980007px;}
.y131{bottom:590.362514px;}
.y64{bottom:592.287000px;}
.y16a{bottom:593.730000px;}
.yc4{bottom:596.013012px;}
.y39{bottom:596.197490px;}
.y12{bottom:599.131499px;}
.y14a{bottom:600.495009px;}
.y10d{bottom:600.681000px;}
.y197{bottom:600.925650px;}
.yf6{bottom:602.776516px;}
.y74{bottom:603.565500px;}
.y130{bottom:611.962505px;}
.y9e{bottom:612.306011px;}
.y63{bottom:613.887000px;}
.yc3{bottom:617.613003px;}
.y169{bottom:617.781000px;}
.y11{bottom:618.931501px;}
.y38{bottom:621.523495px;}
.y10c{bottom:622.281000px;}
.yf5{bottom:624.376507px;}
.y196{bottom:624.976650px;}
.y73{bottom:625.165500px;}
.y12f{bottom:633.562496px;}
.y9d{bottom:633.906002px;}
.y62{bottom:635.487000px;}
.y168{bottom:637.581000px;}
.y10{bottom:638.731502px;}
.yc2{bottom:639.212993px;}
.y37{bottom:643.123485px;}
.y10b{bottom:643.881000px;}
.yf4{bottom:645.976497px;}
.y195{bottom:649.027650px;}
.y149{bottom:652.870497px;}
.y12e{bottom:655.162487px;}
.y9c{bottom:655.505993px;}
.y61{bottom:657.087000px;}
.yf{bottom:658.531503px;}
.yc1{bottom:660.812984px;}
.y36{bottom:664.723522px;}
.y10a{bottom:665.481000px;}
.yf3{bottom:667.576488px;}
.y194{bottom:668.827650px;}
.y148{bottom:674.470500px;}
.y12d{bottom:676.762478px;}
.y9b{bottom:677.105984px;}
.ye{bottom:678.331501px;}
.y167{bottom:681.855000px;}
.y35{bottom:686.323513px;}
.y109{bottom:687.081000px;}
.y192{bottom:688.627500px;}
.y193{bottom:688.627650px;}
.yf2{bottom:689.176479px;}
.y147{bottom:696.070502px;}
.yd{bottom:698.131499px;}
.y9a{bottom:698.705997px;}
.y60{bottom:707.404500px;}
.y34{bottom:707.923504px;}
.y12c{bottom:710.149494px;}
.yf1{bottom:710.776493px;}
.yc0{bottom:711.130504px;}
.y191{bottom:712.678500px;}
.y146{bottom:717.670504px;}
.y99{bottom:720.306011px;}
.y166{bottom:726.402000px;}
.y33{bottom:729.523495px;}
.yf0{bottom:732.376507px;}
.y190{bottom:732.478500px;}
.yc{bottom:732.687010px;}
.y12b{bottom:732.808498px;}
.y145{bottom:739.270501px;}
.y98{bottom:741.906002px;}
.y165{bottom:746.202000px;}
.y12a{bottom:750.808498px;}
.y32{bottom:751.123508px;}
.yef{bottom:753.976497px;}
.y18f{bottom:756.529500px;}
.y5f{bottom:759.780000px;}
.y144{bottom:760.870497px;}
.y97{bottom:763.505993px;}
.y164{bottom:766.002000px;}
.yb{bottom:766.356008px;}
.y129{bottom:768.808498px;}
.y31{bottom:772.723499px;}
.yee{bottom:775.576511px;}
.y18e{bottom:776.329500px;}
.y5e{bottom:781.380000px;}
.y143{bottom:782.470500px;}
.y96{bottom:785.106006px;}
.y163{bottom:785.802000px;}
.y30{bottom:794.323490px;}
.yed{bottom:797.176502px;}
.y18d{bottom:800.817000px;}
.y5d{bottom:802.980000px;}
.y142{bottom:804.070500px;}
.y162{bottom:805.602000px;}
.y95{bottom:806.705997px;}
.ya{bottom:809.383505px;}
.y128{bottom:813.285000px;}
.y2f{bottom:815.923504px;}
.yec{bottom:818.776493px;}
.y18c{bottom:820.617000px;}
.y5c{bottom:824.580000px;}
.y161{bottom:825.402000px;}
.y9{bottom:825.583498px;}
.y94{bottom:828.306011px;}
.y127{bottom:834.884990px;}
.y141{bottom:836.974508px;}
.y2e{bottom:837.523495px;}
.y18b{bottom:839.999850px;}
.y8{bottom:843.206999px;}
.y5b{bottom:846.180000px;}
.y93{bottom:849.906002px;}
.y126{bottom:856.485004px;}
.yb5{bottom:858.751500px;}
.y2d{bottom:859.123508px;}
.y18a{bottom:864.050850px;}
.y5a{bottom:867.780000px;}
.yeb{bottom:869.093990px;}
.y160{bottom:870.349500px;}
.y92{bottom:871.505993px;}
.y125{bottom:878.084995px;}
.yd8{bottom:880.351500px;}
.y2c{bottom:880.723499px;}
.y7{bottom:886.502996px;}
.y189{bottom:888.101850px;}
.y59{bottom:889.380000px;}
.y91{bottom:893.105995px;}
.yb4{bottom:893.106000px;}
.y2b{bottom:902.323501px;}
.y188{bottom:907.901850px;}
.y58{bottom:910.980000px;}
.y6{bottom:911.822998px;}
.y90{bottom:914.705997px;}
.yb3{bottom:914.706000px;}
.yea{bottom:923.404503px;}
.y2a{bottom:923.923504px;}
.y124{bottom:928.402504px;}
.y187{bottom:931.952850px;}
.y57{bottom:932.580000px;}
.y8f{bottom:936.306000px;}
.y29{bottom:945.523495px;}
.y186{bottom:951.753000px;}
.y56{bottom:957.906000px;}
.y8e{bottom:957.906002px;}
.y5{bottom:959.945999px;}
.y28{bottom:967.123497px;}
.ye9{bottom:975.780002px;}
.y185{bottom:975.804000px;}
.y55{bottom:979.506000px;}
.y8d{bottom:979.506004px;}
.y27{bottom:988.723499px;}
.y2{bottom:993.628500px;}
.y184{bottom:995.604000px;}
.y54{bottom:1001.106000px;}
.y1{bottom:1009.828499px;}
.y26{bottom:1010.323501px;}
.y183{bottom:1019.655000px;}
.y8c{bottom:1022.705997px;}
.y53{bottom:1022.706000px;}
.y182{bottom:1039.455000px;}
.y52{bottom:1044.306000px;}
.y72{bottom:1053.151500px;}
.y25{bottom:1060.641000px;}
.y181{bottom:1063.923000px;}
.y51{bottom:1065.906000px;}
.y180{bottom:1083.723000px;}
.y8b{bottom:1138.693498px;}
.y50{bottom:1138.693500px;}
.y21{bottom:1154.893497px;}
.y4f{bottom:1154.893500px;}
.h2{height:35.648438px;}
.h3{height:41.736328px;}
.he{height:42.070312px;}
.h16{height:44.560547px;}
.h15{height:46.277344px;}
.h1{height:46.986328px;}
.h5{height:49.500000px;}
.h6{height:52.207031px;}
.h17{height:52.800000px;}
.h7{height:54.158203px;}
.h8{height:57.427734px;}
.h13{height:58.080000px;}
.h12{height:58.324219px;}
.h14{height:60.128101px;}
.ha{height:62.648438px;}
.h9{height:66.656250px;}
.h10{height:67.312500px;}
.h4{height:68.742188px;}
.h11{height:69.725647px;}
.hf{height:69.725830px;}
.hd{height:75.317596px;}
.hc{height:75.317625px;}
.hb{height:75.317688px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:85.038000px;}
.x12{left:92.017500px;}
.x3{left:106.297501px;}
.xc{left:119.053500px;}
.x11{left:121.179000px;}
.xe{left:127.557001px;}
.xb{left:140.312998px;}
.x20{left:142.050000px;}
.x9{left:178.580999px;}
.xd{left:212.596502px;}
.xf{left:222.081000px;}
.xa{left:292.581000px;}
.x13{left:309.437400px;}
.x4{left:311.051992px;}
.x14{left:313.070400px;}
.x15{left:329.570400px;}
.x16{left:333.204900px;}
.x17{left:366.204900px;}
.x18{left:369.837900px;}
.x19{left:386.337900px;}
.x1a{left:389.970900px;}
.x1b{left:406.470900px;}
.x1c{left:410.105400px;}
.x1d{left:426.605400px;}
.x1e{left:430.238400px;}
.x6{left:442.663500px;}
.x1f{left:451.325400px;}
.x5{left:575.908514px;}
.x7{left:639.831000px;}
.x2{left:732.421484px;}
.x10{left:818.030981px;}
.x8{left:825.496500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.853516pt;}
.v1{vertical-align:29.824056pt;}
.ls6{letter-spacing:-5.120000pt;}
.ls5{letter-spacing:-3.973333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000060pt;}
.ls3{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.042667pt;}
.ws5{word-spacing:-28.512000pt;}
.ws9{word-spacing:-25.920000pt;}
.wsa{word-spacing:-21.600000pt;}
.ws6{word-spacing:-20.181333pt;}
.wsb{word-spacing:-18.346667pt;}
.ws3{word-spacing:-14.080000pt;}
.ws4{word-spacing:-12.906667pt;}
.ws8{word-spacing:-11.520000pt;}
.ws0{word-spacing:-10.560000pt;}
.ws2{word-spacing:-9.386667pt;}
.ws7{word-spacing:-8.933333pt;}
.wsf{word-spacing:-2.773333pt;}
.wse{word-spacing:-2.736000pt;}
.ws11{word-spacing:-1.130667pt;}
.ws1{word-spacing:0.000000pt;}
.ws10{word-spacing:1.696000pt;}
.ws16{word-spacing:1.909333pt;}
.ws14{word-spacing:2.010667pt;}
.ws12{word-spacing:2.298667pt;}
.ws15{word-spacing:2.309333pt;}
.ws13{word-spacing:2.453333pt;}
.wsc{word-spacing:2.618667pt;}
.wsd{word-spacing:2.629333pt;}
._e{margin-left:-6.768000pt;}
._5{margin-left:-5.514667pt;}
._10{margin-left:-4.544000pt;}
._1{margin-left:-3.552000pt;}
._4{margin-left:-1.936000pt;}
._0{margin-left:-1.008000pt;}
._7{width:1.130667pt;}
._3{width:2.400000pt;}
._9{width:3.818667pt;}
._6{width:5.136000pt;}
._2{width:6.256000pt;}
._8{width:7.626667pt;}
._d{width:8.586667pt;}
._13{width:9.509483pt;}
._c{width:10.400000pt;}
._b{width:11.584000pt;}
._11{width:12.895936pt;}
._f{width:15.488000pt;}
._a{width:17.008000pt;}
._12{width:18.224000pt;}
.fs1{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs9{font-size:60.735456pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs3{font-size:74.666667pt;}
.fs8{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:39.322666pt;}
.y22{bottom:53.722667pt;}
.y24{bottom:55.158667pt;}
.y4{bottom:65.334667pt;}
.y3{bottom:78.134666pt;}
.yb2{bottom:104.077348pt;}
.y15f{bottom:105.046677pt;}
.y8a{bottom:110.790681pt;}
.y123{bottom:111.538667pt;}
.ybf{bottom:112.190667pt;}
.ye8{bottom:114.102668pt;}
.y17f{bottom:116.594667pt;}
.yb1{bottom:123.277299pt;}
.yd7{bottom:123.361365pt;}
.y4e{bottom:123.441362pt;}
.y15e{bottom:124.246669pt;}
.y89{bottom:129.990673pt;}
.y122{bottom:130.738667pt;}
.ybe{bottom:131.390667pt;}
.ye7{bottom:133.302660pt;}
.y17e{bottom:134.194667pt;}
.yb0{bottom:142.477332pt;}
.yd6{bottom:142.561316pt;}
.y4d{bottom:142.641313pt;}
.y15d{bottom:143.446661pt;}
.y88{bottom:149.190665pt;}
.y121{bottom:149.938667pt;}
.ybd{bottom:150.590667pt;}
.ye6{bottom:152.502672pt;}
.y17d{bottom:155.573333pt;}
.y1b3{bottom:157.683600pt;}
.yaf{bottom:161.677365pt;}
.yd5{bottom:161.761349pt;}
.y4c{bottom:161.841346pt;}
.y15c{bottom:162.646653pt;}
.y87{bottom:168.390657pt;}
.y120{bottom:169.138667pt;}
.ybc{bottom:169.790667pt;}
.ye5{bottom:171.702664pt;}
.y1b2{bottom:172.070267pt;}
.y17c{bottom:173.173333pt;}
.y1a4{bottom:174.444000pt;}
.yae{bottom:180.877316pt;}
.yd4{bottom:180.961300pt;}
.y4b{bottom:181.041297pt;}
.y15b{bottom:181.846685pt;}
.y86{bottom:187.590648pt;}
.y11f{bottom:188.338667pt;}
.ybb{bottom:188.990667pt;}
.y108{bottom:190.201372pt;}
.y1b1{bottom:190.315600pt;}
.y1a3{bottom:190.444000pt;}
.y17b{bottom:190.773333pt;}
.ye4{bottom:190.902676pt;}
.yad{bottom:200.077348pt;}
.yd3{bottom:200.161333pt;}
.y4a{bottom:200.241329pt;}
.y15a{bottom:201.046677pt;}
.y1b0{bottom:204.070667pt;}
.y85{bottom:206.790681pt;}
.y11e{bottom:207.538667pt;}
.yba{bottom:208.190667pt;}
.y107{bottom:209.401323pt;}
.ye3{bottom:210.102668pt;}
.y17a{bottom:212.152000pt;}
.yac{bottom:219.277299pt;}
.y49{bottom:219.441362pt;}
.y159{bottom:220.246669pt;}
.y1af{bottom:221.684000pt;}
.y20{bottom:222.574667pt;}
.y84{bottom:225.990673pt;}
.y11d{bottom:226.738667pt;}
.yb9{bottom:227.390667pt;}
.y106{bottom:228.601355pt;}
.ye2{bottom:229.302660pt;}
.y179{bottom:229.752000pt;}
.yd2{bottom:229.838660pt;}
.y140{bottom:236.766639pt;}
.y1ae{bottom:238.316000pt;}
.y1a2{bottom:238.444000pt;}
.yab{bottom:238.477332pt;}
.y48{bottom:238.641313pt;}
.y158{bottom:239.446661pt;}
.y83{bottom:245.190665pt;}
.y11c{bottom:245.938667pt;}
.yb8{bottom:246.590667pt;}
.y105{bottom:247.801307pt;}
.ye1{bottom:248.502662pt;}
.yd1{bottom:249.980018pt;}
.y178{bottom:251.130667pt;}
.y1f{bottom:252.426668pt;}
.y1ad{bottom:254.316000pt;}
.y1a1{bottom:254.444000pt;}
.y13f{bottom:255.966671pt;}
.yaa{bottom:257.677365pt;}
.y47{bottom:257.841346pt;}
.y157{bottom:258.646653pt;}
.y82{bottom:264.390657pt;}
.y11b{bottom:265.138667pt;}
.yb7{bottom:265.790667pt;}
.yd0{bottom:265.980018pt;}
.y104{bottom:267.001339pt;}
.ye0{bottom:267.702664pt;}
.y177{bottom:268.730667pt;}
.y1e{bottom:270.026664pt;}
.y1ac{bottom:270.316000pt;}
.y71{bottom:273.565333pt;}
.y13e{bottom:275.166704pt;}
.ya9{bottom:276.877316pt;}
.y46{bottom:277.041297pt;}
.y156{bottom:277.846685pt;}
.y81{bottom:283.590669pt;}
.y11a{bottom:284.338667pt;}
.yb6{bottom:284.990667pt;}
.y103{bottom:286.201331pt;}
.y1ab{bottom:286.316000pt;}
.y1a0{bottom:286.444000pt;}
.ydf{bottom:286.902666pt;}
.y1d{bottom:287.626670pt;}
.y176{bottom:290.109333pt;}
.y70{bottom:292.765333pt;}
.y13d{bottom:294.366655pt;}
.ya8{bottom:296.077348pt;}
.y45{bottom:296.241329pt;}
.y155{bottom:297.046677pt;}
.y1aa{bottom:302.316000pt;}
.y80{bottom:302.790661pt;}
.y119{bottom:303.538667pt;}
.y1c{bottom:305.226666pt;}
.y102{bottom:305.401323pt;}
.ycf{bottom:305.514686pt;}
.yde{bottom:306.102668pt;}
.y175{bottom:307.709333pt;}
.y6f{bottom:311.965333pt;}
.y13c{bottom:313.566647pt;}
.ya7{bottom:315.277340pt;}
.y44{bottom:315.441321pt;}
.y154{bottom:316.246669pt;}
.y1a9{bottom:318.316000pt;}
.y7f{bottom:321.990673pt;}
.y118{bottom:322.738667pt;}
.y1b{bottom:322.826667pt;}
.y101{bottom:324.601315pt;}
.yce{bottom:324.714677pt;}
.ydd{bottom:325.302670pt;}
.y174{bottom:329.088000pt;}
.y6e{bottom:331.165333pt;}
.y13b{bottom:332.766679pt;}
.y1a8{bottom:334.316000pt;}
.y19f{bottom:334.444000pt;}
.ya6{bottom:334.477332pt;}
.y43{bottom:334.641313pt;}
.y153{bottom:335.446661pt;}
.y1a{bottom:340.426668pt;}
.y117{bottom:341.938667pt;}
.y100{bottom:343.801347pt;}
.ycd{bottom:343.914669pt;}
.ydc{bottom:344.502667pt;}
.y7e{bottom:344.502676pt;}
.y1a7{bottom:350.316000pt;}
.y6d{bottom:350.365333pt;}
.y19e{bottom:350.444000pt;}
.y173{bottom:350.466667pt;}
.y13a{bottom:351.966671pt;}
.ya5{bottom:353.677324pt;}
.y42{bottom:353.841346pt;}
.y152{bottom:354.646653pt;}
.y19{bottom:358.026669pt;}
.y116{bottom:361.138667pt;}
.yff{bottom:363.001339pt;}
.ycc{bottom:363.114661pt;}
.ydb{bottom:363.702664pt;}
.y7d{bottom:363.702668pt;}
.y1a6{bottom:366.316000pt;}
.y6c{bottom:369.565333pt;}
.y139{bottom:371.166663pt;}
.y172{bottom:371.845333pt;}
.y41{bottom:373.041338pt;}
.y151{bottom:373.846685pt;}
.y18{bottom:375.626668pt;}
.y115{bottom:380.338667pt;}
.yfe{bottom:382.201331pt;}
.ycb{bottom:382.314653pt;}
.y1a5{bottom:382.316000pt;}
.y19d{bottom:382.444000pt;}
.y7c{bottom:382.902660pt;}
.yda{bottom:382.902666pt;}
.y6b{bottom:388.765333pt;}
.y171{bottom:389.445333pt;}
.y138{bottom:390.366655pt;}
.y40{bottom:392.241329pt;}
.y150{bottom:393.046657pt;}
.y17{bottom:393.226666pt;}
.ya4{bottom:398.404008pt;}
.y114{bottom:399.538667pt;}
.yfd{bottom:401.401323pt;}
.y7b{bottom:402.102662pt;}
.yd9{bottom:402.102667pt;}
.y170{bottom:407.045333pt;}
.y6a{bottom:407.965333pt;}
.y137{bottom:409.566647pt;}
.y3f{bottom:411.441321pt;}
.yca{bottom:411.991980pt;}
.y14f{bottom:412.246669pt;}
.y113{bottom:418.738667pt;}
.y19c{bottom:420.521333pt;}
.yfc{bottom:420.601315pt;}
.y7a{bottom:421.302664pt;}
.y16{bottom:423.942668pt;}
.y69{bottom:427.165333pt;}
.yc9{bottom:427.991980pt;}
.y16f{bottom:428.424000pt;}
.y136{bottom:428.766679pt;}
.y3e{bottom:430.641313pt;}
.y14e{bottom:431.446661pt;}
.y112{bottom:437.938667pt;}
.yfb{bottom:439.801347pt;}
.y79{bottom:440.502666pt;}
.yc8{bottom:443.991980pt;}
.ya3{bottom:444.959998pt;}
.y16e{bottom:446.024000pt;}
.y68{bottom:446.365333pt;}
.y135{bottom:447.966671pt;}
.y3d{bottom:449.841346pt;}
.y14d{bottom:450.646673pt;}
.y111{bottom:457.138667pt;}
.yfa{bottom:459.001339pt;}
.y78{bottom:459.702668pt;}
.y19b{bottom:463.298667pt;}
.ya2{bottom:464.159990pt;}
.y67{bottom:465.565333pt;}
.y134{bottom:467.166663pt;}
.y16d{bottom:467.402667pt;}
.y15{bottom:467.509334pt;}
.y3c{bottom:469.041338pt;}
.y14c{bottom:469.846665pt;}
.yc7{bottom:472.189327pt;}
.y110{bottom:476.338667pt;}
.yf9{bottom:478.201331pt;}
.y77{bottom:478.902670pt;}
.y19a{bottom:480.898667pt;}
.ya1{bottom:483.359982pt;}
.y66{bottom:484.765333pt;}
.y16c{bottom:485.002667pt;}
.y133{bottom:486.366655pt;}
.y14b{bottom:489.046657pt;}
.yc6{bottom:491.389319pt;}
.y3b{bottom:491.553341pt;}
.y10f{bottom:495.538667pt;}
.y14{bottom:497.361331pt;}
.yf8{bottom:497.401323pt;}
.y76{bottom:498.102667pt;}
.y199{bottom:502.277333pt;}
.ya0{bottom:502.560014pt;}
.y65{bottom:503.965333pt;}
.y132{bottom:505.566647pt;}
.y16b{bottom:506.381333pt;}
.yc5{bottom:510.589352pt;}
.y3a{bottom:510.753333pt;}
.y10e{bottom:514.738667pt;}
.y13{bottom:514.961337pt;}
.yf7{bottom:516.601315pt;}
.y75{bottom:517.302664pt;}
.y198{bottom:519.877333pt;}
.y9f{bottom:521.760006pt;}
.y131{bottom:524.766679pt;}
.y64{bottom:526.477333pt;}
.y16a{bottom:527.760000pt;}
.yc4{bottom:529.789344pt;}
.y39{bottom:529.953325pt;}
.y12{bottom:532.561333pt;}
.y14a{bottom:533.773341pt;}
.y10d{bottom:533.938667pt;}
.y197{bottom:534.156133pt;}
.yf6{bottom:535.801347pt;}
.y74{bottom:536.502666pt;}
.y130{bottom:543.966671pt;}
.y9e{bottom:544.272010pt;}
.y63{bottom:545.677333pt;}
.yc3{bottom:548.989336pt;}
.y169{bottom:549.138667pt;}
.y11{bottom:550.161334pt;}
.y38{bottom:552.465328pt;}
.y10c{bottom:553.138667pt;}
.yf5{bottom:555.001339pt;}
.y196{bottom:555.534800pt;}
.y73{bottom:555.702667pt;}
.y12f{bottom:563.166663pt;}
.y9d{bottom:563.472002pt;}
.y62{bottom:564.877333pt;}
.y168{bottom:566.738667pt;}
.y10{bottom:567.761335pt;}
.yc2{bottom:568.189327pt;}
.y37{bottom:571.665320pt;}
.y10b{bottom:572.338667pt;}
.yf4{bottom:574.201331pt;}
.y195{bottom:576.913467pt;}
.y149{bottom:580.329331pt;}
.y12e{bottom:582.366655pt;}
.y9c{bottom:582.671993pt;}
.y61{bottom:584.077333pt;}
.yf{bottom:585.361336pt;}
.yc1{bottom:587.389319pt;}
.y36{bottom:590.865353pt;}
.y10a{bottom:591.538667pt;}
.yf3{bottom:593.401323pt;}
.y194{bottom:594.513467pt;}
.y148{bottom:599.529333pt;}
.y12d{bottom:601.566647pt;}
.y9b{bottom:601.871985pt;}
.ye{bottom:602.961334pt;}
.y167{bottom:606.093333pt;}
.y35{bottom:610.065345pt;}
.y109{bottom:610.738667pt;}
.y192{bottom:612.113333pt;}
.y193{bottom:612.113467pt;}
.yf2{bottom:612.601315pt;}
.y147{bottom:618.729335pt;}
.yd{bottom:620.561333pt;}
.y9a{bottom:621.071998pt;}
.y60{bottom:628.804000pt;}
.y34{bottom:629.265337pt;}
.y12c{bottom:631.243995pt;}
.yf1{bottom:631.801327pt;}
.yc0{bottom:632.116004pt;}
.y191{bottom:633.492000pt;}
.y146{bottom:637.929337pt;}
.y99{bottom:640.272010pt;}
.y166{bottom:645.690667pt;}
.y33{bottom:648.465328pt;}
.yf0{bottom:651.001339pt;}
.y190{bottom:651.092000pt;}
.yc{bottom:651.277342pt;}
.y12b{bottom:651.385332pt;}
.y145{bottom:657.129334pt;}
.y98{bottom:659.472002pt;}
.y165{bottom:663.290667pt;}
.y12a{bottom:667.385332pt;}
.y32{bottom:667.665341pt;}
.yef{bottom:670.201331pt;}
.y18f{bottom:672.470667pt;}
.y5f{bottom:675.360000pt;}
.y144{bottom:676.329331pt;}
.y97{bottom:678.671993pt;}
.y164{bottom:680.890667pt;}
.yb{bottom:681.205341pt;}
.y129{bottom:683.385332pt;}
.y31{bottom:686.865333pt;}
.yee{bottom:689.401343pt;}
.y18e{bottom:690.070667pt;}
.y5e{bottom:694.560000pt;}
.y143{bottom:695.529333pt;}
.y96{bottom:697.872006pt;}
.y163{bottom:698.490667pt;}
.y30{bottom:706.065324pt;}
.yed{bottom:708.601335pt;}
.y18d{bottom:711.837333pt;}
.y5d{bottom:713.760000pt;}
.y142{bottom:714.729334pt;}
.y162{bottom:716.090667pt;}
.y95{bottom:717.071998pt;}
.ya{bottom:719.452004pt;}
.y128{bottom:722.920000pt;}
.y2f{bottom:725.265337pt;}
.yec{bottom:727.801327pt;}
.y18c{bottom:729.437333pt;}
.y5c{bottom:732.960000pt;}
.y161{bottom:733.690667pt;}
.y9{bottom:733.851998pt;}
.y94{bottom:736.272010pt;}
.y127{bottom:742.119992pt;}
.y141{bottom:743.977340pt;}
.y2e{bottom:744.465328pt;}
.y18b{bottom:746.666533pt;}
.y8{bottom:749.517332pt;}
.y5b{bottom:752.160000pt;}
.y93{bottom:755.472002pt;}
.y126{bottom:761.320004pt;}
.yb5{bottom:763.334667pt;}
.y2d{bottom:763.665341pt;}
.y18a{bottom:768.045200pt;}
.y5a{bottom:771.360000pt;}
.yeb{bottom:772.527991pt;}
.y160{bottom:773.644000pt;}
.y92{bottom:774.671993pt;}
.y125{bottom:780.519996pt;}
.yd8{bottom:782.534667pt;}
.y2c{bottom:782.865333pt;}
.y7{bottom:788.002663pt;}
.y189{bottom:789.423867pt;}
.y59{bottom:790.560000pt;}
.y91{bottom:793.871996pt;}
.yb4{bottom:793.872000pt;}
.y2b{bottom:802.065335pt;}
.y188{bottom:807.023867pt;}
.y58{bottom:809.760000pt;}
.y6{bottom:810.509332pt;}
.y90{bottom:813.071998pt;}
.yb3{bottom:813.072000pt;}
.yea{bottom:820.804002pt;}
.y2a{bottom:821.265337pt;}
.y124{bottom:825.246670pt;}
.y187{bottom:828.402533pt;}
.y57{bottom:828.960000pt;}
.y8f{bottom:832.272000pt;}
.y29{bottom:840.465328pt;}
.y186{bottom:846.002667pt;}
.y56{bottom:851.472000pt;}
.y8e{bottom:851.472002pt;}
.y5{bottom:853.285332pt;}
.y28{bottom:859.665330pt;}
.ye9{bottom:867.360002pt;}
.y185{bottom:867.381333pt;}
.y55{bottom:870.672000pt;}
.y8d{bottom:870.672004pt;}
.y27{bottom:878.865333pt;}
.y2{bottom:883.225333pt;}
.y184{bottom:884.981333pt;}
.y54{bottom:889.872000pt;}
.y1{bottom:897.625332pt;}
.y26{bottom:898.065335pt;}
.y183{bottom:906.360000pt;}
.y8c{bottom:909.071998pt;}
.y53{bottom:909.072000pt;}
.y182{bottom:923.960000pt;}
.y52{bottom:928.272000pt;}
.y72{bottom:936.134667pt;}
.y25{bottom:942.792000pt;}
.y181{bottom:945.709333pt;}
.y51{bottom:947.472000pt;}
.y180{bottom:963.309333pt;}
.y8b{bottom:1012.171999pt;}
.y50{bottom:1012.172000pt;}
.y21{bottom:1026.571998pt;}
.y4f{bottom:1026.572000pt;}
.h2{height:31.687500pt;}
.h3{height:37.098958pt;}
.he{height:37.395833pt;}
.h16{height:39.609375pt;}
.h15{height:41.135417pt;}
.h1{height:41.765625pt;}
.h5{height:44.000000pt;}
.h6{height:46.406250pt;}
.h17{height:46.933333pt;}
.h7{height:48.140625pt;}
.h8{height:51.046875pt;}
.h13{height:51.626667pt;}
.h12{height:51.843750pt;}
.h14{height:53.447201pt;}
.ha{height:55.687500pt;}
.h9{height:59.250000pt;}
.h10{height:59.833333pt;}
.h4{height:61.104167pt;}
.h11{height:61.978353pt;}
.hf{height:61.978516pt;}
.hd{height:66.948975pt;}
.hc{height:66.949000pt;}
.hb{height:66.949056pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.589333pt;}
.x12{left:81.793333pt;}
.x3{left:94.486667pt;}
.xc{left:105.825333pt;}
.x11{left:107.714667pt;}
.xe{left:113.384001pt;}
.xb{left:124.722665pt;}
.x20{left:126.266667pt;}
.x9{left:158.738666pt;}
.xd{left:188.974669pt;}
.xf{left:197.405333pt;}
.xa{left:260.072000pt;}
.x13{left:275.055467pt;}
.x4{left:276.490660pt;}
.x14{left:278.284800pt;}
.x15{left:292.951467pt;}
.x16{left:296.182133pt;}
.x17{left:325.515467pt;}
.x18{left:328.744800pt;}
.x19{left:343.411467pt;}
.x1a{left:346.640800pt;}
.x1b{left:361.307467pt;}
.x1c{left:364.538133pt;}
.x1d{left:379.204800pt;}
.x1e{left:382.434133pt;}
.x6{left:393.478667pt;}
.x1f{left:401.178133pt;}
.x5{left:511.918679pt;}
.x7{left:568.738667pt;}
.x2{left:651.041319pt;}
.x10{left:727.138650pt;}
.x8{left:733.774667pt;}
}




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