
    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_b81ad272f195641e93ac2609.woff')format("woff");}.ff1{font-family:ff1;line-height:0.683594;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_96d63228c52a1bcc447100ee.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_b90f18a37d5540e016d44de2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_18f3ab04471fdb41ecaa124c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.016602;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_e19785b703c2c8afcde1951b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.078613;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_7fe458832367092b66b56b7d.woff')format("woff");}.ff6{font-family:ff6;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.v4{vertical-align:19.980000px;}
.v2{vertical-align:23.976000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000600px;}
.ls16{letter-spacing:0.016200px;}
.lsc{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.028200px;}
.ls11{letter-spacing:0.030000px;}
.ls14{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.360000px;}
.ls2{letter-spacing:3.000000px;}
.ls18{letter-spacing:3.280800px;}
.lsf{letter-spacing:4.196667px;}
.ls7{letter-spacing:4.197333px;}
.ls4{letter-spacing:4.200000px;}
.ls8{letter-spacing:4.210000px;}
.ls10{letter-spacing:4.210667px;}
.ls6{letter-spacing:5.400000px;}
.ls5{letter-spacing:5.413333px;}
.ls0{letter-spacing:6.600000px;}
.ls9{letter-spacing:8.400000px;}
.ls12{letter-spacing:9.192744px;}
.ls15{letter-spacing:9.240600px;}
.ls13{letter-spacing:9.541800px;}
.lse{letter-spacing:9.933000px;}
.ls1{letter-spacing:10.800000px;}
.ls17{letter-spacing:10.956000px;}
.ls19{letter-spacing:19.800000px;}
.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;}
}
.wse{word-spacing:-36.102000px;}
.wsb{word-spacing:-32.004000px;}
.wsc{word-spacing:-25.146000px;}
.ws9{word-spacing:-20.592000px;}
.ws1{word-spacing:-20.232000px;}
.ws10{word-spacing:-19.860000px;}
.wsd{word-spacing:-18.546000px;}
.ws3{word-spacing:-17.784000px;}
.ws5{word-spacing:-16.860000px;}
.wsf{word-spacing:-16.302000px;}
.ws6{word-spacing:-16.017000px;}
.ws8{word-spacing:-14.079000px;}
.ws2{word-spacing:-11.795256px;}
.wsa{word-spacing:-10.368072px;}
.ws7{word-spacing:-9.829380px;}
.ws0{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
._1a{margin-left:-19.624200px;}
._20{margin-left:-17.784000px;}
._1d{margin-left:-15.714600px;}
._15{margin-left:-14.167333px;}
._14{margin-left:-12.808667px;}
._7{margin-left:-11.124000px;}
._8{margin-left:-10.044000px;}
._6{margin-left:-8.748000px;}
._a{margin-left:-7.576200px;}
._3{margin-left:-6.480000px;}
._11{margin-left:-4.590000px;}
._d{margin-left:-3.372000px;}
._b{margin-left:-2.244000px;}
._1{margin-left:-1.134000px;}
._4{width:1.350000px;}
._c{width:3.024000px;}
._e{width:4.494000px;}
._f{width:5.514000px;}
._17{width:7.020000px;}
._1b{width:8.136000px;}
._16{width:10.056000px;}
._9{width:11.064000px;}
._10{width:12.402000px;}
._12{width:13.527000px;}
._19{width:14.530200px;}
._18{width:15.640200px;}
._1c{width:16.704000px;}
._1f{width:17.736000px;}
._1e{width:40.229820px;}
._23{width:41.516400px;}
._13{width:57.720420px;}
._0{width:68.706000px;}
._21{width:199.956000px;}
._2{width:369.208200px;}
._22{width:565.098000px;}
._5{width:738.306000px;}
.fc3{color:rgb(68,57,21);}
.fc2{color:rgb(35,31,32);}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(42,62,146);}
.fc0{color:rgb(73,19,22);}
.fs6{font-size:34.980000px;}
.fs5{font-size:41.976000px;}
.fs8{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.fsb{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:58.081050px;}
.y2{bottom:58.081200px;}
.y27{bottom:58.081350px;}
.ydd{bottom:58.081800px;}
.y53{bottom:79.381050px;}
.y1{bottom:79.381200px;}
.y26{bottom:79.381350px;}
.ydc{bottom:79.381800px;}
.y25{bottom:127.558950px;}
.y108{bottom:127.559700px;}
.y1bf{bottom:129.106500px;}
.ya8{bottom:132.553950px;}
.y12e{bottom:132.554700px;}
.ydb{bottom:133.304850px;}
.yd7{bottom:144.058950px;}
.y15a{bottom:144.059700px;}
.y176{bottom:146.897700px;}
.yd5{bottom:148.818750px;}
.y12d{bottom:148.819500px;}
.y1be{bottom:148.906500px;}
.y24{bottom:149.053950px;}
.y107{bottom:149.054700px;}
.ya7{bottom:153.813750px;}
.y13e{bottom:153.814500px;}
.y13c{bottom:153.814650px;}
.yda{bottom:155.804850px;}
.y23{bottom:165.318900px;}
.y106{bottom:165.319500px;}
.yd6{bottom:165.553950px;}
.y159{bottom:165.554700px;}
.y175{bottom:166.697700px;}
.y1bd{bottom:168.706500px;}
.yd4{bottom:170.313750px;}
.y7c{bottom:170.313900px;}
.y12c{bottom:170.314500px;}
.ya6{bottom:175.073700px;}
.y13d{bottom:175.074450px;}
.yd9{bottom:178.304850px;}
.y13b{bottom:178.305600px;}
.y174{bottom:186.497700px;}
.yd3{bottom:186.578550px;}
.y12b{bottom:186.579450px;}
.y22{bottom:186.813900px;}
.y105{bottom:186.814500px;}
.y1bc{bottom:188.506500px;}
.y158{bottom:189.601650px;}
.ya5{bottom:191.338500px;}
.yd8{bottom:200.804850px;}
.y52{bottom:200.805000px;}
.y13a{bottom:200.805600px;}
.y104{bottom:203.079450px;}
.y173{bottom:206.297700px;}
.yd2{bottom:208.073700px;}
.y12a{bottom:208.074450px;}
.y1bb{bottom:208.306500px;}
.y157{bottom:212.101650px;}
.ya4{bottom:212.833500px;}
.yaa{bottom:223.304850px;}
.y51{bottom:223.305000px;}
.y139{bottom:223.305600px;}
.y129{bottom:224.339250px;}
.y103{bottom:224.574450px;}
.y172{bottom:226.097700px;}
.y1ba{bottom:228.106500px;}
.yd1{bottom:229.333500px;}
.y21{bottom:234.098400px;}
.y156{bottom:234.601650px;}
.y102{bottom:240.839250px;}
.yd0{bottom:245.598300px;}
.ya9{bottom:245.804850px;}
.y50{bottom:245.805000px;}
.y138{bottom:245.805600px;}
.y171{bottom:245.897700px;}
.y1b9{bottom:247.906500px;}
.y20{bottom:256.598400px;}
.y155{bottom:257.101650px;}
.y7b{bottom:257.805750px;}
.y101{bottom:262.334250px;}
.y170{bottom:265.697700px;}
.ycf{bottom:267.093300px;}
.y1b8{bottom:267.706500px;}
.ya3{bottom:268.304850px;}
.y4f{bottom:268.305000px;}
.y137{bottom:268.305600px;}
.y128{bottom:278.599050px;}
.y1f{bottom:279.098400px;}
.y154{bottom:279.601650px;}
.y7a{bottom:280.305750px;}
.y16f{bottom:285.497700px;}
.y1b7{bottom:287.506500px;}
.yce{bottom:288.353100px;}
.y100{bottom:288.601650px;}
.ya2{bottom:290.804850px;}
.y4e{bottom:290.805000px;}
.y136{bottom:290.805600px;}
.y127{bottom:300.094050px;}
.y1e{bottom:301.598400px;}
.y153{bottom:302.101650px;}
.y79{bottom:302.805750px;}
.y16e{bottom:305.297700px;}
.y1b6{bottom:307.306500px;}
.yff{bottom:311.101650px;}
.ya1{bottom:313.304850px;}
.y4d{bottom:313.305000px;}
.y135{bottom:313.305600px;}
.ycd{bottom:317.205750px;}
.y126{bottom:321.354000px;}
.y1d{bottom:324.098400px;}
.y152{bottom:324.601650px;}
.y16d{bottom:325.097700px;}
.y78{bottom:325.305750px;}
.y1b5{bottom:327.106500px;}
.yfe{bottom:333.601650px;}
.ya0{bottom:335.804850px;}
.y4c{bottom:335.805000px;}
.y134{bottom:335.805600px;}
.y125{bottom:337.618800px;}
.ycc{bottom:339.705750px;}
.y16c{bottom:344.897700px;}
.y1c{bottom:346.598400px;}
.y1b4{bottom:346.906500px;}
.y151{bottom:347.101650px;}
.y77{bottom:347.805750px;}
.yfd{bottom:356.101650px;}
.y9f{bottom:358.304850px;}
.y4b{bottom:358.305000px;}
.y133{bottom:358.305600px;}
.y124{bottom:359.113800px;}
.ycb{bottom:361.905750px;}
.y16b{bottom:364.697700px;}
.y1b3{bottom:366.706500px;}
.y1b{bottom:369.098400px;}
.y150{bottom:369.601650px;}
.y76{bottom:370.305750px;}
.y123{bottom:375.378600px;}
.yfc{bottom:378.601650px;}
.y9e{bottom:380.804850px;}
.y4a{bottom:380.805000px;}
.y132{bottom:380.805600px;}
.yca{bottom:384.105750px;}
.y16a{bottom:384.497700px;}
.y1b2{bottom:386.506500px;}
.y1a{bottom:391.598400px;}
.y14f{bottom:392.101650px;}
.y75{bottom:392.805750px;}
.y122{bottom:396.873600px;}
.yfb{bottom:401.101650px;}
.y9d{bottom:403.304850px;}
.y49{bottom:403.305000px;}
.y131{bottom:403.305600px;}
.y169{bottom:404.297700px;}
.yc9{bottom:406.305750px;}
.y1b1{bottom:406.306500px;}
.y19{bottom:414.098400px;}
.y14e{bottom:414.601650px;}
.y74{bottom:415.305750px;}
.y121{bottom:418.133400px;}
.yfa{bottom:423.601650px;}
.y168{bottom:424.097700px;}
.y9c{bottom:425.804850px;}
.y48{bottom:425.805000px;}
.y130{bottom:425.805600px;}
.y1b0{bottom:426.106500px;}
.yc8{bottom:428.505750px;}
.y18{bottom:436.598400px;}
.y14d{bottom:437.101650px;}
.y73{bottom:437.805750px;}
.y167{bottom:443.897700px;}
.y1af{bottom:445.906500px;}
.yf9{bottom:446.101650px;}
.y9b{bottom:448.304850px;}
.y47{bottom:448.305000px;}
.y12f{bottom:448.305600px;}
.yc7{bottom:450.705750px;}
.y17{bottom:459.098400px;}
.y14c{bottom:459.601650px;}
.y72{bottom:460.305750px;}
.y166{bottom:463.697700px;}
.y1ae{bottom:465.706500px;}
.yf8{bottom:468.601650px;}
.y9a{bottom:470.804850px;}
.y46{bottom:470.805000px;}
.y120{bottom:470.805600px;}
.yc6{bottom:472.905750px;}
.y16{bottom:481.598400px;}
.y14b{bottom:482.101650px;}
.y71{bottom:482.805750px;}
.y165{bottom:483.497700px;}
.y1ad{bottom:485.506500px;}
.yf7{bottom:491.101650px;}
.y99{bottom:493.304850px;}
.y45{bottom:493.305000px;}
.y11f{bottom:493.305600px;}
.yc5{bottom:495.105750px;}
.y164{bottom:503.297700px;}
.y15{bottom:504.098400px;}
.y14a{bottom:504.601650px;}
.y70{bottom:505.305750px;}
.y1ac{bottom:505.306500px;}
.yf6{bottom:513.601650px;}
.y98{bottom:515.804850px;}
.y44{bottom:515.805000px;}
.y11e{bottom:515.805600px;}
.yc4{bottom:517.305750px;}
.y163{bottom:523.097700px;}
.y1ab{bottom:525.106500px;}
.y14{bottom:526.598400px;}
.y149{bottom:527.101650px;}
.y6f{bottom:527.805750px;}
.yf5{bottom:536.101650px;}
.y97{bottom:538.304850px;}
.y43{bottom:538.305000px;}
.y11d{bottom:538.305600px;}
.yc3{bottom:539.505750px;}
.y162{bottom:542.897700px;}
.y1aa{bottom:544.906500px;}
.y13{bottom:549.098400px;}
.y148{bottom:549.601650px;}
.y6e{bottom:550.305750px;}
.yf4{bottom:558.601650px;}
.y96{bottom:560.804850px;}
.y42{bottom:560.805000px;}
.y11c{bottom:560.805600px;}
.yc2{bottom:561.705750px;}
.y161{bottom:562.697700px;}
.y1a9{bottom:564.706500px;}
.y12{bottom:571.598400px;}
.y147{bottom:572.101650px;}
.y6d{bottom:572.805750px;}
.yf3{bottom:581.101650px;}
.y160{bottom:582.497700px;}
.y95{bottom:583.304850px;}
.y41{bottom:583.305000px;}
.y11b{bottom:583.305600px;}
.yc1{bottom:583.905750px;}
.y1a8{bottom:584.506500px;}
.y11{bottom:594.098400px;}
.y146{bottom:594.601650px;}
.y6c{bottom:595.305750px;}
.y15f{bottom:602.297700px;}
.yf2{bottom:603.601650px;}
.y1a7{bottom:604.306500px;}
.y94{bottom:605.804850px;}
.y40{bottom:605.805000px;}
.y11a{bottom:605.805600px;}
.yc0{bottom:606.105750px;}
.y10{bottom:616.598400px;}
.y145{bottom:617.101650px;}
.y6b{bottom:617.805750px;}
.y15e{bottom:622.097700px;}
.y1a6{bottom:624.106500px;}
.yf1{bottom:626.101650px;}
.y93{bottom:628.304850px;}
.y3f{bottom:628.305000px;}
.y119{bottom:628.305600px;}
.ybf{bottom:628.305750px;}
.y18f{bottom:632.003100px;}
.yf{bottom:639.098400px;}
.y144{bottom:639.601650px;}
.y6a{bottom:640.305750px;}
.y15d{bottom:641.897700px;}
.y1a5{bottom:643.906500px;}
.yf0{bottom:648.601650px;}
.ybe{bottom:650.505750px;}
.y92{bottom:650.804850px;}
.y3e{bottom:650.805000px;}
.y118{bottom:650.805600px;}
.ye{bottom:661.598400px;}
.y15c{bottom:661.697700px;}
.y143{bottom:662.101650px;}
.y69{bottom:662.805750px;}
.y1a4{bottom:663.706500px;}
.y18e{bottom:668.903100px;}
.yef{bottom:671.101650px;}
.ybd{bottom:672.705750px;}
.y91{bottom:673.304850px;}
.y3d{bottom:673.305000px;}
.y117{bottom:673.305600px;}
.y1a3{bottom:683.506500px;}
.yd{bottom:684.098400px;}
.y142{bottom:684.601650px;}
.y68{bottom:685.305750px;}
.y18d{bottom:688.703100px;}
.yee{bottom:693.601650px;}
.ybc{bottom:694.905750px;}
.y90{bottom:695.804850px;}
.y3c{bottom:695.805000px;}
.y116{bottom:695.805600px;}
.y1a2{bottom:703.306500px;}
.yc{bottom:706.598400px;}
.y141{bottom:707.101650px;}
.y67{bottom:707.805750px;}
.y18c{bottom:708.503100px;}
.y15b{bottom:712.501650px;}
.yed{bottom:716.101650px;}
.ybb{bottom:717.105750px;}
.y8f{bottom:718.304850px;}
.y3b{bottom:718.305000px;}
.y115{bottom:718.305600px;}
.y1a1{bottom:723.106500px;}
.y18b{bottom:728.303100px;}
.yb{bottom:729.098400px;}
.y140{bottom:729.601650px;}
.y66{bottom:730.305750px;}
.yec{bottom:738.601650px;}
.yba{bottom:739.305750px;}
.y8e{bottom:740.804850px;}
.y3a{bottom:740.805000px;}
.y114{bottom:740.805600px;}
.y1a0{bottom:742.906500px;}
.y18a{bottom:748.103100px;}
.y1c9{bottom:752.603100px;}
.y65{bottom:752.805750px;}
.yeb{bottom:761.101650px;}
.yb9{bottom:761.505750px;}
.y19f{bottom:762.706500px;}
.y8d{bottom:763.304850px;}
.y39{bottom:763.305000px;}
.y113{bottom:763.305600px;}
.y189{bottom:767.903100px;}
.y1c8{bottom:775.103100px;}
.y64{bottom:775.305750px;}
.y19e{bottom:782.506500px;}
.y13f{bottom:783.105600px;}
.yea{bottom:783.601650px;}
.yb8{bottom:783.705750px;}
.y8c{bottom:785.804850px;}
.y38{bottom:785.805000px;}
.y112{bottom:785.805600px;}
.y188{bottom:787.703100px;}
.y1c7{bottom:797.603100px;}
.y63{bottom:797.805750px;}
.y19d{bottom:802.306500px;}
.yb7{bottom:805.905750px;}
.ye9{bottom:806.101650px;}
.y187{bottom:807.503100px;}
.y8b{bottom:808.304850px;}
.y37{bottom:808.305000px;}
.y111{bottom:808.305600px;}
.ya{bottom:819.098400px;}
.y1c6{bottom:820.103100px;}
.y62{bottom:820.305750px;}
.y19c{bottom:822.106500px;}
.y186{bottom:827.303100px;}
.yb6{bottom:828.105750px;}
.ye8{bottom:828.601650px;}
.y8a{bottom:830.804850px;}
.y36{bottom:830.805000px;}
.y110{bottom:830.805600px;}
.y9{bottom:837.098400px;}
.y19b{bottom:841.906500px;}
.y61{bottom:842.805750px;}
.y185{bottom:847.103100px;}
.yb5{bottom:850.305750px;}
.ye7{bottom:851.101650px;}
.y89{bottom:853.304850px;}
.y35{bottom:853.305000px;}
.y10f{bottom:853.305600px;}
.y19a{bottom:861.706500px;}
.y1c5{bottom:865.103100px;}
.y60{bottom:865.305750px;}
.y184{bottom:866.903100px;}
.yb4{bottom:872.505750px;}
.ye6{bottom:873.601650px;}
.y88{bottom:875.804850px;}
.y34{bottom:875.805000px;}
.y10e{bottom:875.805600px;}
.y199{bottom:881.506500px;}
.y183{bottom:886.703100px;}
.y1c4{bottom:887.603100px;}
.y5f{bottom:887.805750px;}
.yb3{bottom:894.705750px;}
.y87{bottom:898.304850px;}
.y33{bottom:898.305000px;}
.y10d{bottom:898.305600px;}
.y8{bottom:900.098400px;}
.y198{bottom:901.306500px;}
.y182{bottom:906.503100px;}
.y1c3{bottom:910.103100px;}
.y5e{bottom:910.305750px;}
.yb2{bottom:916.905750px;}
.y86{bottom:920.804850px;}
.y32{bottom:920.805000px;}
.y10c{bottom:920.805600px;}
.y197{bottom:921.106500px;}
.ye5{bottom:924.105600px;}
.y181{bottom:926.303100px;}
.y7{bottom:932.498400px;}
.y1c2{bottom:932.603100px;}
.y5d{bottom:932.805750px;}
.yb1{bottom:939.105750px;}
.y196{bottom:940.906500px;}
.y85{bottom:943.304850px;}
.y31{bottom:943.305000px;}
.y10b{bottom:943.305600px;}
.y180{bottom:946.103100px;}
.y5c{bottom:955.305750px;}
.y195{bottom:960.706500px;}
.yb0{bottom:961.305750px;}
.y84{bottom:965.804850px;}
.y30{bottom:965.805000px;}
.y10a{bottom:965.805600px;}
.y17f{bottom:965.903100px;}
.y5b{bottom:977.805750px;}
.y194{bottom:980.506500px;}
.yaf{bottom:983.505750px;}
.y17e{bottom:985.703100px;}
.y83{bottom:988.304850px;}
.y2f{bottom:988.305000px;}
.y109{bottom:988.305600px;}
.y5a{bottom:1000.305750px;}
.y193{bottom:1000.306500px;}
.y1c1{bottom:1003.703100px;}
.y17d{bottom:1005.503100px;}
.yae{bottom:1005.705750px;}
.y82{bottom:1010.804850px;}
.y2e{bottom:1010.805000px;}
.ye4{bottom:1010.805600px;}
.y1c0{bottom:1021.703100px;}
.y59{bottom:1022.805750px;}
.y17c{bottom:1025.303100px;}
.yad{bottom:1027.905750px;}
.y81{bottom:1033.304850px;}
.y2d{bottom:1033.305000px;}
.ye3{bottom:1033.305600px;}
.y17b{bottom:1045.103100px;}
.y58{bottom:1045.305750px;}
.yac{bottom:1050.105750px;}
.y6{bottom:1051.402500px;}
.y80{bottom:1055.804850px;}
.y2c{bottom:1055.805000px;}
.ye2{bottom:1055.805600px;}
.y17a{bottom:1064.903100px;}
.y192{bottom:1065.106500px;}
.y57{bottom:1067.805750px;}
.yab{bottom:1072.305750px;}
.y5{bottom:1072.702350px;}
.y7f{bottom:1078.304850px;}
.y2b{bottom:1078.305000px;}
.ye1{bottom:1078.305600px;}
.y179{bottom:1084.703100px;}
.y191{bottom:1096.110450px;}
.y7e{bottom:1100.804850px;}
.y2a{bottom:1100.805000px;}
.ye0{bottom:1100.805600px;}
.y4{bottom:1103.002500px;}
.y178{bottom:1104.503100px;}
.y56{bottom:1121.309700px;}
.y190{bottom:1121.310450px;}
.y7d{bottom:1123.304850px;}
.y29{bottom:1123.305000px;}
.ydf{bottom:1123.305600px;}
.y3{bottom:1124.302500px;}
.y177{bottom:1124.303100px;}
.y55{bottom:1176.323550px;}
.y28{bottom:1176.323700px;}
.yde{bottom:1176.324300px;}
.h7{height:29.702256px;}
.h2{height:43.989258px;}
.h3{height:45.852539px;}
.h8{height:48.399902px;}
.h9{height:50.947266px;}
.he{height:55.268555px;}
.h4{height:56.041992px;}
.hd{height:60.292969px;}
.h6{height:61.136719px;}
.ha{height:71.326172px;}
.hc{height:71.725078px;}
.hb{height:81.914531px;}
.h5{height:91.705078px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x3{left:127.559100px;}
.x6{left:218.976450px;}
.x5{left:221.944350px;}
.x4{left:230.044350px;}
.x2{left:265.748100px;}
.x8{left:496.619100px;}
.x9{left:527.530200px;}
.xa{left:593.043900px;}
.x7{left:600.435450px;}
.xc{left:601.753800px;}
.xb{left:640.812450px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v4{vertical-align:17.760000pt;}
.v2{vertical-align:21.312000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000533pt;}
.ls16{letter-spacing:0.014400pt;}
.lsc{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.025067pt;}
.ls11{letter-spacing:0.026667pt;}
.ls14{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.320000pt;}
.ls2{letter-spacing:2.666667pt;}
.ls18{letter-spacing:2.916267pt;}
.lsf{letter-spacing:3.730370pt;}
.ls7{letter-spacing:3.730963pt;}
.ls4{letter-spacing:3.733333pt;}
.ls8{letter-spacing:3.742222pt;}
.ls10{letter-spacing:3.742815pt;}
.ls6{letter-spacing:4.800000pt;}
.ls5{letter-spacing:4.811852pt;}
.ls0{letter-spacing:5.866667pt;}
.ls9{letter-spacing:7.466667pt;}
.ls12{letter-spacing:8.171328pt;}
.ls15{letter-spacing:8.213867pt;}
.ls13{letter-spacing:8.481600pt;}
.lse{letter-spacing:8.829333pt;}
.ls1{letter-spacing:9.600000pt;}
.ls17{letter-spacing:9.738667pt;}
.ls19{letter-spacing:17.600000pt;}
.wse{word-spacing:-32.090667pt;}
.wsb{word-spacing:-28.448000pt;}
.wsc{word-spacing:-22.352000pt;}
.ws9{word-spacing:-18.304000pt;}
.ws1{word-spacing:-17.984000pt;}
.ws10{word-spacing:-17.653333pt;}
.wsd{word-spacing:-16.485333pt;}
.ws3{word-spacing:-15.808000pt;}
.ws5{word-spacing:-14.986667pt;}
.wsf{word-spacing:-14.490667pt;}
.ws6{word-spacing:-14.237333pt;}
.ws8{word-spacing:-12.514667pt;}
.ws2{word-spacing:-10.484672pt;}
.wsa{word-spacing:-9.216064pt;}
.ws7{word-spacing:-8.737227pt;}
.ws0{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
._1a{margin-left:-17.443733pt;}
._20{margin-left:-15.808000pt;}
._1d{margin-left:-13.968533pt;}
._15{margin-left:-12.593185pt;}
._14{margin-left:-11.385481pt;}
._7{margin-left:-9.888000pt;}
._8{margin-left:-8.928000pt;}
._6{margin-left:-7.776000pt;}
._a{margin-left:-6.734400pt;}
._3{margin-left:-5.760000pt;}
._11{margin-left:-4.080000pt;}
._d{margin-left:-2.997333pt;}
._b{margin-left:-1.994667pt;}
._1{margin-left:-1.008000pt;}
._4{width:1.200000pt;}
._c{width:2.688000pt;}
._e{width:3.994667pt;}
._f{width:4.901333pt;}
._17{width:6.240000pt;}
._1b{width:7.232000pt;}
._16{width:8.938667pt;}
._9{width:9.834667pt;}
._10{width:11.024000pt;}
._12{width:12.024000pt;}
._19{width:12.915733pt;}
._18{width:13.902400pt;}
._1c{width:14.848000pt;}
._1f{width:15.765333pt;}
._1e{width:35.759840pt;}
._23{width:36.903467pt;}
._13{width:51.307040pt;}
._0{width:61.072000pt;}
._21{width:177.738667pt;}
._2{width:328.185067pt;}
._22{width:502.309333pt;}
._5{width:656.272000pt;}
.fs6{font-size:31.093333pt;}
.fs5{font-size:37.312000pt;}
.fs8{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.fsb{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:51.627600pt;}
.y2{bottom:51.627733pt;}
.y27{bottom:51.627867pt;}
.ydd{bottom:51.628267pt;}
.y53{bottom:70.560933pt;}
.y1{bottom:70.561067pt;}
.y26{bottom:70.561200pt;}
.ydc{bottom:70.561600pt;}
.y25{bottom:113.385733pt;}
.y108{bottom:113.386400pt;}
.y1bf{bottom:114.761333pt;}
.ya8{bottom:117.825733pt;}
.y12e{bottom:117.826400pt;}
.ydb{bottom:118.493200pt;}
.yd7{bottom:128.052400pt;}
.y15a{bottom:128.053067pt;}
.y176{bottom:130.575733pt;}
.yd5{bottom:132.283333pt;}
.y12d{bottom:132.284000pt;}
.y1be{bottom:132.361333pt;}
.y24{bottom:132.492400pt;}
.y107{bottom:132.493067pt;}
.ya7{bottom:136.723333pt;}
.y13e{bottom:136.724000pt;}
.y13c{bottom:136.724133pt;}
.yda{bottom:138.493200pt;}
.y23{bottom:146.950133pt;}
.y106{bottom:146.950667pt;}
.yd6{bottom:147.159067pt;}
.y159{bottom:147.159733pt;}
.y175{bottom:148.175733pt;}
.y1bd{bottom:149.961333pt;}
.yd4{bottom:151.390000pt;}
.y7c{bottom:151.390133pt;}
.y12c{bottom:151.390667pt;}
.ya6{bottom:155.621067pt;}
.y13d{bottom:155.621733pt;}
.yd9{bottom:158.493200pt;}
.y13b{bottom:158.493867pt;}
.y174{bottom:165.775733pt;}
.yd3{bottom:165.847600pt;}
.y12b{bottom:165.848400pt;}
.y22{bottom:166.056800pt;}
.y105{bottom:166.057333pt;}
.y1bc{bottom:167.561333pt;}
.y158{bottom:168.534800pt;}
.ya5{bottom:170.078667pt;}
.yd8{bottom:178.493200pt;}
.y52{bottom:178.493333pt;}
.y13a{bottom:178.493867pt;}
.y104{bottom:180.515067pt;}
.y173{bottom:183.375733pt;}
.yd2{bottom:184.954400pt;}
.y12a{bottom:184.955067pt;}
.y1bb{bottom:185.161333pt;}
.y157{bottom:188.534800pt;}
.ya4{bottom:189.185333pt;}
.yaa{bottom:198.493200pt;}
.y51{bottom:198.493333pt;}
.y139{bottom:198.493867pt;}
.y129{bottom:199.412667pt;}
.y103{bottom:199.621733pt;}
.y172{bottom:200.975733pt;}
.y1ba{bottom:202.761333pt;}
.yd1{bottom:203.852000pt;}
.y21{bottom:208.087467pt;}
.y156{bottom:208.534800pt;}
.y102{bottom:214.079333pt;}
.yd0{bottom:218.309600pt;}
.ya9{bottom:218.493200pt;}
.y50{bottom:218.493333pt;}
.y138{bottom:218.493867pt;}
.y171{bottom:218.575733pt;}
.y1b9{bottom:220.361333pt;}
.y20{bottom:228.087467pt;}
.y155{bottom:228.534800pt;}
.y7b{bottom:229.160667pt;}
.y101{bottom:233.186000pt;}
.y170{bottom:236.175733pt;}
.ycf{bottom:237.416267pt;}
.y1b8{bottom:237.961333pt;}
.ya3{bottom:238.493200pt;}
.y4f{bottom:238.493333pt;}
.y137{bottom:238.493867pt;}
.y128{bottom:247.643600pt;}
.y1f{bottom:248.087467pt;}
.y154{bottom:248.534800pt;}
.y7a{bottom:249.160667pt;}
.y16f{bottom:253.775733pt;}
.y1b7{bottom:255.561333pt;}
.yce{bottom:256.313867pt;}
.y100{bottom:256.534800pt;}
.ya2{bottom:258.493200pt;}
.y4e{bottom:258.493333pt;}
.y136{bottom:258.493867pt;}
.y127{bottom:266.750267pt;}
.y1e{bottom:268.087467pt;}
.y153{bottom:268.534800pt;}
.y79{bottom:269.160667pt;}
.y16e{bottom:271.375733pt;}
.y1b6{bottom:273.161333pt;}
.yff{bottom:276.534800pt;}
.ya1{bottom:278.493200pt;}
.y4d{bottom:278.493333pt;}
.y135{bottom:278.493867pt;}
.ycd{bottom:281.960667pt;}
.y126{bottom:285.648000pt;}
.y1d{bottom:288.087467pt;}
.y152{bottom:288.534800pt;}
.y16d{bottom:288.975733pt;}
.y78{bottom:289.160667pt;}
.y1b5{bottom:290.761333pt;}
.yfe{bottom:296.534800pt;}
.ya0{bottom:298.493200pt;}
.y4c{bottom:298.493333pt;}
.y134{bottom:298.493867pt;}
.y125{bottom:300.105600pt;}
.ycc{bottom:301.960667pt;}
.y16c{bottom:306.575733pt;}
.y1c{bottom:308.087467pt;}
.y1b4{bottom:308.361333pt;}
.y151{bottom:308.534800pt;}
.y77{bottom:309.160667pt;}
.yfd{bottom:316.534800pt;}
.y9f{bottom:318.493200pt;}
.y4b{bottom:318.493333pt;}
.y133{bottom:318.493867pt;}
.y124{bottom:319.212267pt;}
.ycb{bottom:321.694000pt;}
.y16b{bottom:324.175733pt;}
.y1b3{bottom:325.961333pt;}
.y1b{bottom:328.087467pt;}
.y150{bottom:328.534800pt;}
.y76{bottom:329.160667pt;}
.y123{bottom:333.669867pt;}
.yfc{bottom:336.534800pt;}
.y9e{bottom:338.493200pt;}
.y4a{bottom:338.493333pt;}
.y132{bottom:338.493867pt;}
.yca{bottom:341.427333pt;}
.y16a{bottom:341.775733pt;}
.y1b2{bottom:343.561333pt;}
.y1a{bottom:348.087467pt;}
.y14f{bottom:348.534800pt;}
.y75{bottom:349.160667pt;}
.y122{bottom:352.776533pt;}
.yfb{bottom:356.534800pt;}
.y9d{bottom:358.493200pt;}
.y49{bottom:358.493333pt;}
.y131{bottom:358.493867pt;}
.y169{bottom:359.375733pt;}
.yc9{bottom:361.160667pt;}
.y1b1{bottom:361.161333pt;}
.y19{bottom:368.087467pt;}
.y14e{bottom:368.534800pt;}
.y74{bottom:369.160667pt;}
.y121{bottom:371.674133pt;}
.yfa{bottom:376.534800pt;}
.y168{bottom:376.975733pt;}
.y9c{bottom:378.493200pt;}
.y48{bottom:378.493333pt;}
.y130{bottom:378.493867pt;}
.y1b0{bottom:378.761333pt;}
.yc8{bottom:380.894000pt;}
.y18{bottom:388.087467pt;}
.y14d{bottom:388.534800pt;}
.y73{bottom:389.160667pt;}
.y167{bottom:394.575733pt;}
.y1af{bottom:396.361333pt;}
.yf9{bottom:396.534800pt;}
.y9b{bottom:398.493200pt;}
.y47{bottom:398.493333pt;}
.y12f{bottom:398.493867pt;}
.yc7{bottom:400.627333pt;}
.y17{bottom:408.087467pt;}
.y14c{bottom:408.534800pt;}
.y72{bottom:409.160667pt;}
.y166{bottom:412.175733pt;}
.y1ae{bottom:413.961333pt;}
.yf8{bottom:416.534800pt;}
.y9a{bottom:418.493200pt;}
.y46{bottom:418.493333pt;}
.y120{bottom:418.493867pt;}
.yc6{bottom:420.360667pt;}
.y16{bottom:428.087467pt;}
.y14b{bottom:428.534800pt;}
.y71{bottom:429.160667pt;}
.y165{bottom:429.775733pt;}
.y1ad{bottom:431.561333pt;}
.yf7{bottom:436.534800pt;}
.y99{bottom:438.493200pt;}
.y45{bottom:438.493333pt;}
.y11f{bottom:438.493867pt;}
.yc5{bottom:440.094000pt;}
.y164{bottom:447.375733pt;}
.y15{bottom:448.087467pt;}
.y14a{bottom:448.534800pt;}
.y70{bottom:449.160667pt;}
.y1ac{bottom:449.161333pt;}
.yf6{bottom:456.534800pt;}
.y98{bottom:458.493200pt;}
.y44{bottom:458.493333pt;}
.y11e{bottom:458.493867pt;}
.yc4{bottom:459.827333pt;}
.y163{bottom:464.975733pt;}
.y1ab{bottom:466.761333pt;}
.y14{bottom:468.087467pt;}
.y149{bottom:468.534800pt;}
.y6f{bottom:469.160667pt;}
.yf5{bottom:476.534800pt;}
.y97{bottom:478.493200pt;}
.y43{bottom:478.493333pt;}
.y11d{bottom:478.493867pt;}
.yc3{bottom:479.560667pt;}
.y162{bottom:482.575733pt;}
.y1aa{bottom:484.361333pt;}
.y13{bottom:488.087467pt;}
.y148{bottom:488.534800pt;}
.y6e{bottom:489.160667pt;}
.yf4{bottom:496.534800pt;}
.y96{bottom:498.493200pt;}
.y42{bottom:498.493333pt;}
.y11c{bottom:498.493867pt;}
.yc2{bottom:499.294000pt;}
.y161{bottom:500.175733pt;}
.y1a9{bottom:501.961333pt;}
.y12{bottom:508.087467pt;}
.y147{bottom:508.534800pt;}
.y6d{bottom:509.160667pt;}
.yf3{bottom:516.534800pt;}
.y160{bottom:517.775733pt;}
.y95{bottom:518.493200pt;}
.y41{bottom:518.493333pt;}
.y11b{bottom:518.493867pt;}
.yc1{bottom:519.027333pt;}
.y1a8{bottom:519.561333pt;}
.y11{bottom:528.087467pt;}
.y146{bottom:528.534800pt;}
.y6c{bottom:529.160667pt;}
.y15f{bottom:535.375733pt;}
.yf2{bottom:536.534800pt;}
.y1a7{bottom:537.161333pt;}
.y94{bottom:538.493200pt;}
.y40{bottom:538.493333pt;}
.y11a{bottom:538.493867pt;}
.yc0{bottom:538.760667pt;}
.y10{bottom:548.087467pt;}
.y145{bottom:548.534800pt;}
.y6b{bottom:549.160667pt;}
.y15e{bottom:552.975733pt;}
.y1a6{bottom:554.761333pt;}
.yf1{bottom:556.534800pt;}
.y93{bottom:558.493200pt;}
.y3f{bottom:558.493333pt;}
.y119{bottom:558.493867pt;}
.ybf{bottom:558.494000pt;}
.y18f{bottom:561.780533pt;}
.yf{bottom:568.087467pt;}
.y144{bottom:568.534800pt;}
.y6a{bottom:569.160667pt;}
.y15d{bottom:570.575733pt;}
.y1a5{bottom:572.361333pt;}
.yf0{bottom:576.534800pt;}
.ybe{bottom:578.227333pt;}
.y92{bottom:578.493200pt;}
.y3e{bottom:578.493333pt;}
.y118{bottom:578.493867pt;}
.ye{bottom:588.087467pt;}
.y15c{bottom:588.175733pt;}
.y143{bottom:588.534800pt;}
.y69{bottom:589.160667pt;}
.y1a4{bottom:589.961333pt;}
.y18e{bottom:594.580533pt;}
.yef{bottom:596.534800pt;}
.ybd{bottom:597.960667pt;}
.y91{bottom:598.493200pt;}
.y3d{bottom:598.493333pt;}
.y117{bottom:598.493867pt;}
.y1a3{bottom:607.561333pt;}
.yd{bottom:608.087467pt;}
.y142{bottom:608.534800pt;}
.y68{bottom:609.160667pt;}
.y18d{bottom:612.180533pt;}
.yee{bottom:616.534800pt;}
.ybc{bottom:617.694000pt;}
.y90{bottom:618.493200pt;}
.y3c{bottom:618.493333pt;}
.y116{bottom:618.493867pt;}
.y1a2{bottom:625.161333pt;}
.yc{bottom:628.087467pt;}
.y141{bottom:628.534800pt;}
.y67{bottom:629.160667pt;}
.y18c{bottom:629.780533pt;}
.y15b{bottom:633.334800pt;}
.yed{bottom:636.534800pt;}
.ybb{bottom:637.427333pt;}
.y8f{bottom:638.493200pt;}
.y3b{bottom:638.493333pt;}
.y115{bottom:638.493867pt;}
.y1a1{bottom:642.761333pt;}
.y18b{bottom:647.380533pt;}
.yb{bottom:648.087467pt;}
.y140{bottom:648.534800pt;}
.y66{bottom:649.160667pt;}
.yec{bottom:656.534800pt;}
.yba{bottom:657.160667pt;}
.y8e{bottom:658.493200pt;}
.y3a{bottom:658.493333pt;}
.y114{bottom:658.493867pt;}
.y1a0{bottom:660.361333pt;}
.y18a{bottom:664.980533pt;}
.y1c9{bottom:668.980533pt;}
.y65{bottom:669.160667pt;}
.yeb{bottom:676.534800pt;}
.yb9{bottom:676.894000pt;}
.y19f{bottom:677.961333pt;}
.y8d{bottom:678.493200pt;}
.y39{bottom:678.493333pt;}
.y113{bottom:678.493867pt;}
.y189{bottom:682.580533pt;}
.y1c8{bottom:688.980533pt;}
.y64{bottom:689.160667pt;}
.y19e{bottom:695.561333pt;}
.y13f{bottom:696.093867pt;}
.yea{bottom:696.534800pt;}
.yb8{bottom:696.627333pt;}
.y8c{bottom:698.493200pt;}
.y38{bottom:698.493333pt;}
.y112{bottom:698.493867pt;}
.y188{bottom:700.180533pt;}
.y1c7{bottom:708.980533pt;}
.y63{bottom:709.160667pt;}
.y19d{bottom:713.161333pt;}
.yb7{bottom:716.360667pt;}
.ye9{bottom:716.534800pt;}
.y187{bottom:717.780533pt;}
.y8b{bottom:718.493200pt;}
.y37{bottom:718.493333pt;}
.y111{bottom:718.493867pt;}
.ya{bottom:728.087467pt;}
.y1c6{bottom:728.980533pt;}
.y62{bottom:729.160667pt;}
.y19c{bottom:730.761333pt;}
.y186{bottom:735.380533pt;}
.yb6{bottom:736.094000pt;}
.ye8{bottom:736.534800pt;}
.y8a{bottom:738.493200pt;}
.y36{bottom:738.493333pt;}
.y110{bottom:738.493867pt;}
.y9{bottom:744.087467pt;}
.y19b{bottom:748.361333pt;}
.y61{bottom:749.160667pt;}
.y185{bottom:752.980533pt;}
.yb5{bottom:755.827333pt;}
.ye7{bottom:756.534800pt;}
.y89{bottom:758.493200pt;}
.y35{bottom:758.493333pt;}
.y10f{bottom:758.493867pt;}
.y19a{bottom:765.961333pt;}
.y1c5{bottom:768.980533pt;}
.y60{bottom:769.160667pt;}
.y184{bottom:770.580533pt;}
.yb4{bottom:775.560667pt;}
.ye6{bottom:776.534800pt;}
.y88{bottom:778.493200pt;}
.y34{bottom:778.493333pt;}
.y10e{bottom:778.493867pt;}
.y199{bottom:783.561333pt;}
.y183{bottom:788.180533pt;}
.y1c4{bottom:788.980533pt;}
.y5f{bottom:789.160667pt;}
.yb3{bottom:795.294000pt;}
.y87{bottom:798.493200pt;}
.y33{bottom:798.493333pt;}
.y10d{bottom:798.493867pt;}
.y8{bottom:800.087467pt;}
.y198{bottom:801.161333pt;}
.y182{bottom:805.780533pt;}
.y1c3{bottom:808.980533pt;}
.y5e{bottom:809.160667pt;}
.yb2{bottom:815.027333pt;}
.y86{bottom:818.493200pt;}
.y32{bottom:818.493333pt;}
.y10c{bottom:818.493867pt;}
.y197{bottom:818.761333pt;}
.ye5{bottom:821.427200pt;}
.y181{bottom:823.380533pt;}
.y7{bottom:828.887467pt;}
.y1c2{bottom:828.980533pt;}
.y5d{bottom:829.160667pt;}
.yb1{bottom:834.760667pt;}
.y196{bottom:836.361333pt;}
.y85{bottom:838.493200pt;}
.y31{bottom:838.493333pt;}
.y10b{bottom:838.493867pt;}
.y180{bottom:840.980533pt;}
.y5c{bottom:849.160667pt;}
.y195{bottom:853.961333pt;}
.yb0{bottom:854.494000pt;}
.y84{bottom:858.493200pt;}
.y30{bottom:858.493333pt;}
.y10a{bottom:858.493867pt;}
.y17f{bottom:858.580533pt;}
.y5b{bottom:869.160667pt;}
.y194{bottom:871.561333pt;}
.yaf{bottom:874.227333pt;}
.y17e{bottom:876.180533pt;}
.y83{bottom:878.493200pt;}
.y2f{bottom:878.493333pt;}
.y109{bottom:878.493867pt;}
.y5a{bottom:889.160667pt;}
.y193{bottom:889.161333pt;}
.y1c1{bottom:892.180533pt;}
.y17d{bottom:893.780533pt;}
.yae{bottom:893.960667pt;}
.y82{bottom:898.493200pt;}
.y2e{bottom:898.493333pt;}
.ye4{bottom:898.493867pt;}
.y1c0{bottom:908.180533pt;}
.y59{bottom:909.160667pt;}
.y17c{bottom:911.380533pt;}
.yad{bottom:913.694000pt;}
.y81{bottom:918.493200pt;}
.y2d{bottom:918.493333pt;}
.ye3{bottom:918.493867pt;}
.y17b{bottom:928.980533pt;}
.y58{bottom:929.160667pt;}
.yac{bottom:933.427333pt;}
.y6{bottom:934.580000pt;}
.y80{bottom:938.493200pt;}
.y2c{bottom:938.493333pt;}
.ye2{bottom:938.493867pt;}
.y17a{bottom:946.580533pt;}
.y192{bottom:946.761333pt;}
.y57{bottom:949.160667pt;}
.yab{bottom:953.160667pt;}
.y5{bottom:953.513200pt;}
.y7f{bottom:958.493200pt;}
.y2b{bottom:958.493333pt;}
.ye1{bottom:958.493867pt;}
.y179{bottom:964.180533pt;}
.y191{bottom:974.320400pt;}
.y7e{bottom:978.493200pt;}
.y2a{bottom:978.493333pt;}
.ye0{bottom:978.493867pt;}
.y4{bottom:980.446667pt;}
.y178{bottom:981.780533pt;}
.y56{bottom:996.719733pt;}
.y190{bottom:996.720400pt;}
.y7d{bottom:998.493200pt;}
.y29{bottom:998.493333pt;}
.ydf{bottom:998.493867pt;}
.y3{bottom:999.380000pt;}
.y177{bottom:999.380533pt;}
.y55{bottom:1045.620933pt;}
.y28{bottom:1045.621067pt;}
.yde{bottom:1045.621600pt;}
.h7{height:26.402005pt;}
.h2{height:39.101562pt;}
.h3{height:40.757812pt;}
.h8{height:43.022135pt;}
.h9{height:45.286458pt;}
.he{height:49.127604pt;}
.h4{height:49.815104pt;}
.hd{height:53.593750pt;}
.h6{height:54.343750pt;}
.ha{height:63.401042pt;}
.hc{height:63.755625pt;}
.hb{height:72.812917pt;}
.h5{height:81.515625pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x3{left:113.385867pt;}
.x6{left:194.645733pt;}
.x5{left:197.283867pt;}
.x4{left:204.483867pt;}
.x2{left:236.220533pt;}
.x8{left:441.439200pt;}
.x9{left:468.915733pt;}
.xa{left:527.150133pt;}
.x7{left:533.720400pt;}
.xc{left:534.892267pt;}
.xb{left:569.611067pt;}
}




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