
    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_28244fb8b17db964a649a827.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_aada40a8fe04814212427b16.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_d6ce6fb4de875e02db356c8d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_25bacb2ce5cdf2ae00184092.woff')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_be869dd66f25c27d249a80c7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.063477;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_b7813152e3347c9cbc1e17d4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,0.249531,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249531,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249531,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,0.249527,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249527,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249527,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-20.879928px;}
.vb{vertical-align:-10.799834px;}
.v4{vertical-align:-4.319996px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.319996px;}
.v2{vertical-align:8.639991px;}
.v5{vertical-align:16.560000px;}
.v1{vertical-align:18.720018px;}
.v6{vertical-align:20.880000px;}
.v9{vertical-align:30.239870px;}
.va{vertical-align:32.399986px;}
.v8{vertical-align:35.280122px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.036707px;}
.ls2{letter-spacing:0.036774px;}
.ls1{letter-spacing:0.036842px;}
.ls0{letter-spacing:0.036846px;}
.ls6{letter-spacing:0.418316px;}
.lsb{letter-spacing:10.837901px;}
.lsa{letter-spacing:10.837968px;}
.ls4{letter-spacing:27.568359px;}
.ls8{letter-spacing:41.077905px;}
.ls9{letter-spacing:41.077977px;}
.ls7{letter-spacing:322.919166px;}
.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;}
}
.ws10{word-spacing:-336.419132px;}
.ws9{word-spacing:-59.646600px;}
.ws7{word-spacing:-27.148251px;}
.ws3{word-spacing:-23.894663px;}
.wsd{word-spacing:-14.939873px;}
.ws5{word-spacing:-14.911650px;}
.wsa{word-spacing:-14.193113px;}
.wsb{word-spacing:-13.499965px;}
.ws2{word-spacing:-13.474463px;}
.ws0{word-spacing:-12.037163px;}
.ws4{word-spacing:-9.701595px;}
.ws1{word-spacing:-7.545679px;}
.ws6{word-spacing:0.000000px;}
.wsf{word-spacing:30.779921px;}
.ws8{word-spacing:125.090534px;}
.wse{word-spacing:135.539650px;}
.wsc{word-spacing:302.939218px;}
._55{margin-left:-322.379168px;}
._5{margin-left:-4.376087px;}
._3{margin-left:-3.175732px;}
._4{margin-left:-2.056659px;}
._2{margin-left:-1.005847px;}
._0{width:1.195190px;}
._1{width:2.450139px;}
._a{width:3.458965px;}
._8{width:4.591462px;}
._9{width:5.713653px;}
._14{width:7.426845px;}
._6{width:8.626462px;}
._7{width:9.888593px;}
._b{width:11.249586px;}
._d{width:12.555376px;}
._c{width:13.864412px;}
._2f{width:15.934224px;}
._13{width:16.955622px;}
._1f{width:17.983611px;}
._1a{width:19.003123px;}
._19{width:20.247530px;}
._2b{width:22.195830px;}
._21{width:23.519006px;}
._28{width:25.287901px;}
._e{width:26.911720px;}
._f{width:28.367542px;}
._26{width:30.297283px;}
._18{width:31.712886px;}
._17{width:32.964532px;}
._25{width:34.511760px;}
._27{width:35.979176px;}
._1e{width:37.097927px;}
._1d{width:38.362317px;}
._16{width:40.159026px;}
._15{width:41.215801px;}
._2c{width:42.635974px;}
._29{width:44.235482px;}
._1b{width:45.896500px;}
._1c{width:47.387127px;}
._32{width:48.483599px;}
._24{width:49.506678px;}
._5c{width:50.688659px;}
._2d{width:52.428735px;}
._12{width:53.516747px;}
._11{width:55.063365px;}
._10{width:56.692534px;}
._2a{width:58.162730px;}
._22{width:59.493667px;}
._23{width:62.050710px;}
._48{width:63.261887px;}
._49{width:64.324058px;}
._5a{width:65.669581px;}
._65{width:66.990427px;}
._58{width:69.008858px;}
._5d{width:70.156678px;}
._5e{width:71.604184px;}
._31{width:72.971019px;}
._20{width:74.026468px;}
._64{width:75.242660px;}
._59{width:76.454199px;}
._60{width:82.825506px;}
._5f{width:87.668225px;}
._37{width:88.962873px;}
._53{width:89.987674px;}
._50{width:94.239370px;}
._4f{width:95.381814px;}
._47{width:96.604803px;}
._3a{width:101.265858px;}
._66{width:108.482305px;}
._67{width:109.702700px;}
._35{width:111.076830px;}
._34{width:113.942751px;}
._43{width:126.599282px;}
._54{width:127.830490px;}
._61{width:134.411588px;}
._5b{width:141.532087px;}
._39{width:143.067018px;}
._30{width:149.927770px;}
._51{width:153.197605px;}
._33{width:157.177238px;}
._3e{width:160.447096px;}
._4a{width:162.431581px;}
._38{width:164.926456px;}
._52{width:170.477560px;}
._3b{width:175.358746px;}
._36{width:180.278202px;}
._44{width:183.351391px;}
._41{width:188.234651px;}
._45{width:199.507858px;}
._2e{width:201.232471px;}
._4b{width:234.597021px;}
._42{width:239.779332px;}
._46{width:245.708172px;}
._62{width:249.916996px;}
._57{width:251.667375px;}
._4d{width:271.392030px;}
._3f{width:275.982560px;}
._3d{width:277.953156px;}
._3c{width:292.089400px;}
._40{width:293.461272px;}
._4e{width:301.215330px;}
._4c{width:315.530514px;}
._63{width:649.430389px;}
._56{width:690.794241px;}
.fc2{color:rgb(0,51,0);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,0);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.182715px;}
.fs4{font-size:35.931825px;}
.fs7{font-size:38.806380px;}
.fs9{font-size:41.680890px;}
.fs2{font-size:48.148650px;}
.fs5{font-size:53.897850px;}
.fsc{font-size:53.999861px;}
.fsb{font-size:56.772450px;}
.fsa{font-size:56.879676px;}
.fs0{font-size:59.646600px;}
.fs1{font-size:59.759492px;}
.fs8{font-size:71.863650px;}
.fs6{font-size:95.578650px;}
.y0{bottom:0.000000px;}
.y90{bottom:3.060001px;}
.y14b{bottom:3.239972px;}
.y143{bottom:3.240004px;}
.y12e{bottom:3.240006px;}
.y126{bottom:7.740787px;}
.y128{bottom:7.740876px;}
.ya{bottom:35.460022px;}
.y9{bottom:52.740006px;}
.y8{bottom:66.600013px;}
.y86{bottom:93.419975px;}
.ye2{bottom:93.960022px;}
.yfc{bottom:94.320030px;}
.y137{bottom:95.220017px;}
.y179{bottom:97.019989px;}
.y161{bottom:99.179970px;}
.y3e{bottom:100.440033px;}
.y75{bottom:102.240006px;}
.y121{bottom:103.679970px;}
.y85{bottom:110.700027px;}
.ye1{bottom:111.240006px;}
.yfb{bottom:111.600013px;}
.y136{bottom:112.320030px;}
.y178{bottom:114.120002px;}
.y160{bottom:116.460022px;}
.y3d{bottom:117.720017px;}
.y74{bottom:119.519989px;}
.y120{bottom:120.960022px;}
.y84{bottom:127.980011px;}
.ye0{bottom:128.519989px;}
.yfa{bottom:128.879998px;}
.y135{bottom:129.600013px;}
.y177{bottom:131.399986px;}
.y15f{bottom:133.740006px;}
.y3c{bottom:135.000000px;}
.y73{bottom:136.799973px;}
.y11f{bottom:138.240006px;}
.y133{bottom:144.360008px;}
.y83{bottom:145.080025px;}
.ydf{bottom:145.620002px;}
.yf9{bottom:145.980011px;}
.y176{bottom:148.679970px;}
.y15e{bottom:151.019989px;}
.y3b{bottom:152.100013px;}
.y9f{bottom:153.899986px;}
.y72{bottom:154.080025px;}
.y11e{bottom:155.519989px;}
.y134{bottom:156.240006px;}
.y82{bottom:162.360008px;}
.yde{bottom:162.899986px;}
.yf8{bottom:163.259994px;}
.y132{bottom:164.879998px;}
.y175{bottom:165.960022px;}
.yc1{bottom:166.860008px;}
.y15d{bottom:168.120002px;}
.y3a{bottom:169.379998px;}
.y71{bottom:171.179970px;}
.y11d{bottom:172.620002px;}
.y81{bottom:179.639992px;}
.ydd{bottom:180.179970px;}
.yf7{bottom:180.539977px;}
.y174{bottom:183.240006px;}
.yc0{bottom:184.139992px;}
.y15c{bottom:185.399986px;}
.y39{bottom:186.659981px;}
.y70{bottom:188.460022px;}
.y11c{bottom:189.899986px;}
.y131{bottom:191.519989px;}
.y80{bottom:196.919975px;}
.y173{bottom:197.279983px;}
.ydc{bottom:197.460022px;}
.yf6{bottom:197.820030px;}
.y130{bottom:200.159981px;}
.ybf{bottom:201.419975px;}
.y15b{bottom:202.679970px;}
.y38{bottom:203.940033px;}
.y6f{bottom:205.740006px;}
.y11b{bottom:207.179970px;}
.y18f{bottom:212.943935px;}
.y7f{bottom:214.200027px;}
.ydb{bottom:214.740006px;}
.y12d{bottom:214.919975px;}
.yf5{bottom:215.100013px;}
.ybe{bottom:218.700027px;}
.y15a{bottom:219.960022px;}
.y37{bottom:221.220017px;}
.y6e{bottom:223.019989px;}
.y11a{bottom:224.460022px;}
.y12f{bottom:226.799973px;}
.y7e{bottom:231.480011px;}
.yda{bottom:232.019989px;}
.yf4{bottom:232.379998px;}
.y12c{bottom:235.440033px;}
.ybd{bottom:235.980011px;}
.y18e{bottom:236.699046px;}
.y159{bottom:237.240006px;}
.y6d{bottom:240.299973px;}
.y119{bottom:241.740006px;}
.y36{bottom:247.320030px;}
.y7d{bottom:248.580025px;}
.yd9{bottom:249.120002px;}
.yf3{bottom:249.480011px;}
.y158{bottom:251.279983px;}
.ybc{bottom:253.259994px;}
.y6c{bottom:257.399986px;}
.y12b{bottom:258.659981px;}
.y118{bottom:259.019989px;}
.y35{bottom:264.600013px;}
.y18d{bottom:265.500988px;}
.y7c{bottom:265.860008px;}
.yd8{bottom:266.399986px;}
.yf2{bottom:266.759994px;}
.y16e{bottom:269.641450px;}
.ybb{bottom:270.360008px;}
.y6b{bottom:274.679970px;}
.y117{bottom:276.120002px;}
.y185{bottom:281.341860px;}
.y34{bottom:281.879998px;}
.y7b{bottom:283.139992px;}
.yd7{bottom:283.679970px;}
.yf1{bottom:284.039977px;}
.yba{bottom:287.639992px;}
.y6a{bottom:291.960022px;}
.y116{bottom:293.399986px;}
.y16d{bottom:298.439289px;}
.y33{bottom:299.159981px;}
.y7a{bottom:300.419975px;}
.yd6{bottom:300.960022px;}
.yf0{bottom:301.320030px;}
.y127{bottom:304.369612px;}
.yb9{bottom:304.919975px;}
.y186{bottom:307.799584px;}
.y69{bottom:309.240006px;}
.y115{bottom:310.679970px;}
.y125{bottom:311.928458px;}
.y162{bottom:314.280160px;}
.y32{bottom:316.440033px;}
.y79{bottom:317.700027px;}
.yd5{bottom:318.240006px;}
.yef{bottom:318.600013px;}
.yb8{bottom:322.200027px;}
.y68{bottom:326.519989px;}
.y114{bottom:327.960022px;}
.y31{bottom:333.720017px;}
.y12a{bottom:333.890299px;}
.y187{bottom:334.257390px;}
.y78{bottom:334.980011px;}
.yd4{bottom:335.519989px;}
.y129{bottom:337.676477px;}
.yee{bottom:339.120002px;}
.yb7{bottom:339.480011px;}
.y123{bottom:339.646982px;}
.y122{bottom:343.433160px;}
.y67{bottom:343.799973px;}
.y163{bottom:344.161555px;}
.y113{bottom:345.240006px;}
.y124{bottom:347.933857px;}
.y77{bottom:348.840019px;}
.y30{bottom:351.000000px;}
.yd3{bottom:352.620002px;}
.y76{bottom:356.399986px;}
.yb6{bottom:356.759994px;}
.y66{bottom:360.899986px;}
.y188{bottom:360.904612px;}
.yed{bottom:362.340019px;}
.y112{bottom:362.519989px;}
.y2f{bottom:368.100013px;}
.yd2{bottom:369.899986px;}
.yb5{bottom:373.860008px;}
.y164{bottom:374.038766px;}
.y65{bottom:378.179970px;}
.y111{bottom:379.620002px;}
.y2e{bottom:385.379998px;}
.yec{bottom:385.740006px;}
.yd1{bottom:387.179970px;}
.y189{bottom:387.362417px;}
.yb4{bottom:391.139992px;}
.y64{bottom:395.460022px;}
.y110{bottom:396.899986px;}
.y2d{bottom:402.659981px;}
.y165{bottom:403.920161px;}
.yd0{bottom:404.460022px;}
.yb3{bottom:408.419975px;}
.yeb{bottom:408.960022px;}
.y63{bottom:412.740006px;}
.y18a{bottom:413.820142px;}
.y10f{bottom:414.179970px;}
.y2c{bottom:419.940033px;}
.ycf{bottom:421.740006px;}
.yb2{bottom:425.700027px;}
.y62{bottom:430.019989px;}
.y10e{bottom:431.460022px;}
.yea{bottom:432.179970px;}
.y166{bottom:433.801475px;}
.y2b{bottom:437.220017px;}
.yce{bottom:439.019989px;}
.y18b{bottom:440.282051px;}
.yb1{bottom:442.980011px;}
.y9e{bottom:447.120002px;}
.y61{bottom:447.299973px;}
.y10d{bottom:448.740006px;}
.y2a{bottom:454.500000px;}
.ycd{bottom:456.120002px;}
.yb0{bottom:460.259994px;}
.y167{bottom:463.682870px;}
.y60{bottom:464.399986px;}
.y10c{bottom:466.019989px;}
.y18c{bottom:466.739776px;}
.y29{bottom:471.600013px;}
.ycc{bottom:473.399986px;}
.yaf{bottom:477.360008px;}
.y5f{bottom:481.679970px;}
.y10b{bottom:483.120002px;}
.y28{bottom:488.879998px;}
.ycb{bottom:490.679970px;}
.y168{bottom:493.564185px;}
.yae{bottom:494.639992px;}
.y5e{bottom:498.960022px;}
.y10a{bottom:500.399986px;}
.y27{bottom:506.159981px;}
.yca{bottom:507.960022px;}
.yad{bottom:511.919975px;}
.ye5{bottom:513.894721px;}
.y5d{bottom:516.240006px;}
.y109{bottom:517.679970px;}
.ye3{bottom:521.817537px;}
.y26{bottom:523.440033px;}
.y169{bottom:523.441476px;}
.yc9{bottom:525.240006px;}
.ye8{bottom:531.355865px;}
.y108{bottom:531.720017px;}
.yac{bottom:532.620002px;}
.y5c{bottom:533.519989px;}
.ye6{bottom:535.132978px;}
.y25{bottom:540.720017px;}
.yc8{bottom:542.340019px;}
.y172{bottom:542.519989px;}
.ye9{bottom:542.691779px;}
.y140{bottom:546.117175px;}
.ye7{bottom:546.295972px;}
.ye4{bottom:546.650921px;}
.y5b{bottom:550.620002px;}
.y16a{bottom:553.322830px;}
.yab{bottom:555.840019px;}
.y24{bottom:557.820030px;}
.yc7{bottom:559.620002px;}
.y5a{bottom:567.899986px;}
.y13f{bottom:569.880534px;}
.y23{bottom:575.100013px;}
.yc6{bottom:576.899986px;}
.yaa{bottom:579.059967px;}
.y16b{bottom:583.204185px;}
.y59{bottom:585.179970px;}
.y22{bottom:592.379998px;}
.yc5{bottom:594.179970px;}
.y13e{bottom:598.682516px;}
.ya9{bottom:602.279983px;}
.y58{bottom:602.460022px;}
.y21{bottom:609.659981px;}
.yc4{bottom:611.460022px;}
.y16c{bottom:612.900146px;}
.y138{bottom:614.523388px;}
.y57{bottom:619.740006px;}
.ya8{bottom:625.500000px;}
.y20{bottom:626.939999px;}
.yc3{bottom:628.740006px;}
.y56{bottom:637.019989px;}
.yc2{bottom:642.600013px;}
.y1f{bottom:644.220017px;}
.y171{bottom:645.839985px;}
.y55{bottom:654.120002px;}
.y107{bottom:660.241510px;}
.y1e{bottom:661.319995px;}
.y157{bottom:662.399986px;}
.y170{bottom:663.120002px;}
.y54{bottom:671.399986px;}
.y16f{bottom:677.160015px;}
.y1d{bottom:678.600013px;}
.y156{bottom:679.680004px;}
.y53{bottom:688.680004px;}
.y106{bottom:689.043453px;}
.y184{bottom:693.900787px;}
.y155{bottom:696.959988px;}
.y1c{bottom:701.100013px;}
.yfd{bottom:704.880220px;}
.y52{bottom:705.959988px;}
.y139{bottom:705.963736px;}
.ya5{bottom:707.032554px;}
.ya0{bottom:712.975799px;}
.y1b{bottom:713.160015px;}
.y154{bottom:714.240006px;}
.y183{bottom:722.698625px;}
.y51{bottom:723.240006px;}
.ya3{bottom:723.774735px;}
.ya2{bottom:725.572276px;}
.y1a{bottom:730.439999px;}
.y153{bottom:731.519989px;}
.ya1{bottom:733.858262px;}
.y17a{bottom:738.539497px;}
.ya7{bottom:739.435627px;}
.y50{bottom:740.519989px;}
.ya6{bottom:741.234057px;}
.ya4{bottom:743.214561px;}
.yfe{bottom:745.205426px;}
.y19{bottom:747.720017px;}
.y152{bottom:748.620002px;}
.y13a{bottom:751.681858px;}
.y4f{bottom:757.620002px;}
.y151{bottom:765.899986px;}
.y17b{bottom:765.903591px;}
.y18{bottom:770.040012px;}
.y9c{bottom:772.379998px;}
.y4e{bottom:774.899986px;}
.y17{bottom:782.100013px;}
.y150{bottom:783.180004px;}
.y9d{bottom:783.720017px;}
.yff{bottom:785.341135px;}
.y9b{bottom:791.819995px;}
.y4d{bottom:792.180004px;}
.y17c{bottom:793.257829px;}
.y13b{bottom:797.404084px;}
.y14f{bottom:800.459988px;}
.y16{bottom:804.600013px;}
.y99{bottom:806.040012px;}
.y4c{bottom:809.459988px;}
.y9a{bottom:817.199993px;}
.y14e{bottom:817.740006px;}
.y17d{bottom:820.798305px;}
.y15{bottom:821.879998px;}
.y98{bottom:825.480011px;}
.y100{bottom:825.663042px;}
.y4b{bottom:826.740006px;}
.y14{bottom:833.939999px;}
.y14d{bottom:835.019989px;}
.y96{bottom:839.519989px;}
.y13c{bottom:843.302651px;}
.y4a{bottom:844.019989px;}
.y17e{bottom:848.160790px;}
.y14a{bottom:849.600013px;}
.y97{bottom:850.680004px;}
.y13{bottom:856.439999px;}
.y95{bottom:858.959988px;}
.y49{bottom:861.120002px;}
.y14c{bottom:861.480011px;}
.y101{bottom:865.978371px;}
.y12{bottom:868.319996px;}
.y149{bottom:870.120002px;}
.y93{bottom:873.000000px;}
.y17f{bottom:875.701246px;}
.y48{bottom:878.399987px;}
.y94{bottom:884.339985px;}
.y148{bottom:884.879998px;}
.y13d{bottom:889.023228px;}
.y11{bottom:890.819996px;}
.y92{bottom:892.439999px;}
.y47{bottom:895.680004px;}
.y180{bottom:903.063711px;}
.y102{bottom:906.122307px;}
.y8f{bottom:906.479994px;}
.y10{bottom:907.379998px;}
.y146{bottom:908.099997px;}
.y46{bottom:912.960004px;}
.y91{bottom:917.819996px;}
.y147{bottom:919.979994px;}
.yf{bottom:924.659998px;}
.y8e{bottom:925.919992px;}
.y145{bottom:928.620002px;}
.y45{bottom:930.240006px;}
.y181{bottom:930.597589px;}
.y142{bottom:943.379998px;}
.y103{bottom:946.437636px;}
.y44{bottom:947.340002px;}
.ye{bottom:950.939999px;}
.y141{bottom:955.259994px;}
.y182{bottom:957.960054px;}
.y144{bottom:963.900003px;}
.y43{bottom:964.620002px;}
.yd{bottom:970.199993px;}
.y42{bottom:981.900003px;}
.y104{bottom:986.759543px;}
.yc{bottom:997.740006px;}
.y41{bottom:999.180004px;}
.y8d{bottom:1007.281704px;}
.y87{bottom:1011.599203px;}
.y40{bottom:1016.460004px;}
.yb{bottom:1025.280001px;}
.y88{bottom:1026.000116px;}
.y105{bottom:1026.903489px;}
.y8c{bottom:1027.621776px;}
.y8b{bottom:1029.423616px;}
.y3f{bottom:1033.740006px;}
.y8a{bottom:1038.058625px;}
.y89{bottom:1038.238806px;}
.y7{bottom:1055.519998px;}
.y6{bottom:1067.939999px;}
.y5{bottom:1080.180004px;}
.y4{bottom:1092.060001px;}
.y3{bottom:1106.099997px;}
.y2{bottom:1120.858108px;}
.y1{bottom:1121.759999px;}
.h1f{height:7.740876px;}
.h1e{height:7.922816px;}
.h16{height:15.839985px;}
.h14{height:15.840001px;}
.h18{height:15.840019px;}
.h22{height:16.559967px;}
.h24{height:16.560001px;}
.h21{height:16.560035px;}
.h20{height:16.560036px;}
.h7{height:21.826465px;}
.hb{height:28.062621px;}
.h5{height:35.738832px;}
.h1d{height:39.049704px;}
.h3{height:40.546483px;}
.h13{height:41.054687px;}
.h12{height:41.132227px;}
.hd{height:42.084637px;}
.h2{height:42.164290px;}
.h6{height:42.706461px;}
.h1{height:43.133113px;}
.h1c{height:43.214750px;}
.h25{height:43.424356px;}
.h4{height:44.378823px;}
.ha{height:48.260474px;}
.h9{height:48.260478px;}
.hc{height:48.942554px;}
.he{height:49.161846px;}
.hf{height:51.967805px;}
.h8{height:69.117178px;}
.h10{height:70.407668px;}
.h1b{height:73.454601px;}
.h15{height:73.454673px;}
.h17{height:73.454741px;}
.h19{height:74.174619px;}
.h1a{height:74.174759px;}
.h23{height:77.693149px;}
.h11{height:80.508440px;}
.h0{height:1188.000000px;}
.w4{width:5.038013px;}
.w2{width:7.199993px;}
.w1{width:7.200010px;}
.w6{width:7.559966px;}
.wb{width:7.559967px;}
.wf{width:7.560001px;}
.wd{width:7.560002px;}
.w8{width:7.560036px;}
.w9{width:22.500000px;}
.w3{width:30.239989px;}
.wa{width:47.519989px;}
.wc{width:73.800007px;}
.w7{width:82.799972px;}
.we{width:89.100015px;}
.w10{width:99.540012px;}
.w5{width:106.200028px;}
.w0{width:918.000000px;}
.x55{left:-8.639850px;}
.x0{left:0.000000px;}
.x5{left:134.640000px;}
.x30{left:137.340002px;}
.x25{left:143.280001px;}
.x10{left:145.259994px;}
.x8{left:148.139992px;}
.x12{left:152.639992px;}
.x1f{left:156.419112px;}
.x26{left:158.039996px;}
.x72{left:160.740006px;}
.x13{left:162.180005px;}
.xc{left:165.780001px;}
.x41{left:172.800007px;}
.x7{left:176.759994px;}
.x15{left:179.099997px;}
.x4d{left:184.141378px;}
.x19{left:188.819996px;}
.x74{left:191.879998px;}
.x2b{left:196.560001px;}
.xf{left:203.400003px;}
.xd{left:204.659998px;}
.x27{left:207.900003px;}
.x2e{left:209.879998px;}
.x2c{left:213.479994px;}
.x61{left:214.562439px;}
.x18{left:215.819996px;}
.x76{left:217.080504px;}
.x71{left:221.398112px;}
.x75{left:223.916176px;}
.x20{left:225.359342px;}
.x51{left:232.199993px;}
.x4e{left:242.096297px;}
.x1{left:246.780001px;}
.x62{left:258.476874px;}
.xe{left:263.340002px;}
.x40{left:264.960005px;}
.x77{left:270.717814px;}
.x73{left:272.340002px;}
.x50{left:276.300007px;}
.x28{left:284.400003px;}
.x16{left:286.740006px;}
.x4f{left:292.319070px;}
.xb{left:295.920010px;}
.x21{left:302.756531px;}
.x29{left:314.639992px;}
.x78{left:319.319996px;}
.x11{left:327.420010px;}
.x2a{left:337.319996px;}
.x23{left:339.118695px;}
.x2d{left:340.740006px;}
.x63{left:342.001333px;}
.x2f{left:343.079990px;}
.x22{left:356.039583px;}
.x2{left:384.120002px;}
.x14{left:386.100014px;}
.x3{left:399.600014px;}
.x24{left:400.678172px;}
.x17{left:418.139992px;}
.x9{left:435.060001px;}
.x70{left:441.360008px;}
.x6{left:444.060001px;}
.xa{left:459.000000px;}
.x1a{left:468.360008px;}
.x3e{left:470.879998px;}
.x1e{left:473.759994px;}
.x6b{left:476.819996px;}
.x6f{left:478.439999px;}
.x3d{left:480.060001px;}
.x59{left:485.819996px;}
.x64{left:487.800007px;}
.x32{left:489.060001px;}
.x31{left:492.480011px;}
.x4b{left:493.920010px;}
.x1c{left:495.899987px;}
.x4c{left:497.699993px;}
.x5a{left:500.220017px;}
.x5d{left:501.480011px;}
.x66{left:504.720017px;}
.x43{left:510.298253px;}
.x1b{left:522.360008px;}
.x5f{left:531.720017px;}
.x52{left:537.476148px;}
.x36{left:540.891073px;}
.x6c{left:550.620002px;}
.x60{left:554.220017px;}
.x35{left:558.713345px;}
.x6e{left:565.920010px;}
.x1d{left:568.980011px;}
.x34{left:576.535573px;}
.x45{left:579.955039px;}
.x5e{left:584.279983px;}
.x33{left:586.980011px;}
.x42{left:592.740006px;}
.x5b{left:595.980011px;}
.x44{left:597.950556px;}
.x65{left:602.820030px;}
.x67{left:617.759994px;}
.x5c{left:625.679970px;}
.x53{left:626.933955px;}
.x39{left:631.251609px;}
.x6d{left:634.139992px;}
.x48{left:636.649779px;}
.x38{left:649.073837px;}
.x47{left:654.654423px;}
.x54{left:658.789706px;}
.x68{left:665.279983px;}
.x37{left:666.896110px;}
.x46{left:672.111908px;}
.x56{left:690.472168px;}
.x69{left:701.279983px;}
.x6a{left:711.720017px;}
.x4a{left:715.675900px;}
.x3c{left:719.628812px;}
.x57{left:722.337046px;}
.x49{left:733.489046px;}
.x3b{left:737.095469px;}
.x3f{left:750.419975px;}
.x3a{left:755.090941px;}
.x58{left:758.510406px;}
.x4{left:783.360008px;}
@media print{
.v7{vertical-align:-18.559936pt;}
.vb{vertical-align:-9.599852pt;}
.v4{vertical-align:-3.839996pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.839996pt;}
.v2{vertical-align:7.679992pt;}
.v5{vertical-align:14.720000pt;}
.v1{vertical-align:16.640016pt;}
.v6{vertical-align:18.560000pt;}
.v9{vertical-align:26.879884pt;}
.va{vertical-align:28.799988pt;}
.v8{vertical-align:31.360108pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.032628pt;}
.ls2{letter-spacing:0.032688pt;}
.ls1{letter-spacing:0.032748pt;}
.ls0{letter-spacing:0.032752pt;}
.ls6{letter-spacing:0.371837pt;}
.lsb{letter-spacing:9.633690pt;}
.lsa{letter-spacing:9.633750pt;}
.ls4{letter-spacing:24.505208pt;}
.ls8{letter-spacing:36.513694pt;}
.ls9{letter-spacing:36.513758pt;}
.ls7{letter-spacing:287.039259pt;}
.ws10{word-spacing:-299.039228pt;}
.ws9{word-spacing:-53.019200pt;}
.ws7{word-spacing:-24.131779pt;}
.ws3{word-spacing:-21.239700pt;}
.wsd{word-spacing:-13.279887pt;}
.ws5{word-spacing:-13.254800pt;}
.wsa{word-spacing:-12.616100pt;}
.wsb{word-spacing:-11.999969pt;}
.ws2{word-spacing:-11.977300pt;}
.ws0{word-spacing:-10.699700pt;}
.ws4{word-spacing:-8.623640pt;}
.ws1{word-spacing:-6.707270pt;}
.ws6{word-spacing:0.000000pt;}
.wsf{word-spacing:27.359929pt;}
.ws8{word-spacing:111.191586pt;}
.wse{word-spacing:120.479689pt;}
.wsc{word-spacing:269.279305pt;}
._55{margin-left:-286.559260pt;}
._5{margin-left:-3.889855pt;}
._3{margin-left:-2.822873pt;}
._4{margin-left:-1.828142pt;}
._2{margin-left:-0.894086pt;}
._0{width:1.062391pt;}
._1{width:2.177901pt;}
._a{width:3.074635pt;}
._8{width:4.081300pt;}
._9{width:5.078802pt;}
._14{width:6.601640pt;}
._6{width:7.667966pt;}
._7{width:8.789860pt;}
._b{width:9.999632pt;}
._d{width:11.160334pt;}
._c{width:12.323921pt;}
._2f{width:14.163755pt;}
._13{width:15.071664pt;}
._1f{width:15.985432pt;}
._1a{width:16.891665pt;}
._19{width:17.997804pt;}
._2b{width:19.729627pt;}
._21{width:20.905783pt;}
._28{width:22.478134pt;}
._e{width:23.921529pt;}
._f{width:25.215593pt;}
._26{width:26.930918pt;}
._18{width:28.189232pt;}
._17{width:29.301806pt;}
._25{width:30.677120pt;}
._27{width:31.981490pt;}
._1e{width:32.975935pt;}
._1d{width:34.099837pt;}
._16{width:35.696912pt;}
._15{width:36.636267pt;}
._2c{width:37.898644pt;}
._29{width:39.320428pt;}
._1b{width:40.796889pt;}
._1c{width:42.121890pt;}
._32{width:43.096532pt;}
._24{width:44.005936pt;}
._5c{width:45.056586pt;}
._2d{width:46.603320pt;}
._12{width:47.570442pt;}
._11{width:48.945213pt;}
._10{width:50.393364pt;}
._2a{width:51.700204pt;}
._22{width:52.883259pt;}
._23{width:55.156186pt;}
._48{width:56.232789pt;}
._49{width:57.176940pt;}
._5a{width:58.372961pt;}
._65{width:59.547046pt;}
._58{width:61.341207pt;}
._5d{width:62.361492pt;}
._5e{width:63.648164pt;}
._31{width:64.863128pt;}
._20{width:65.801305pt;}
._64{width:66.882364pt;}
._59{width:67.959288pt;}
._60{width:73.622672pt;}
._5f{width:77.927311pt;}
._37{width:79.078109pt;}
._53{width:79.989044pt;}
._50{width:83.768329pt;}
._4f{width:84.783835pt;}
._47{width:85.870936pt;}
._3a{width:90.014096pt;}
._66{width:96.428715pt;}
._67{width:97.513511pt;}
._35{width:98.734960pt;}
._34{width:101.282445pt;}
._43{width:112.532695pt;}
._54{width:113.627103pt;}
._61{width:119.476967pt;}
._5b{width:125.806299pt;}
._39{width:127.170682pt;}
._30{width:133.269129pt;}
._51{width:136.175648pt;}
._33{width:139.713100pt;}
._3e{width:142.619641pt;}
._4a{width:144.383627pt;}
._38{width:146.601295pt;}
._52{width:151.535609pt;}
._3b{width:155.874441pt;}
._36{width:160.247291pt;}
._44{width:162.979014pt;}
._41{width:167.319690pt;}
._45{width:177.340318pt;}
._2e{width:178.873307pt;}
._4b{width:208.530686pt;}
._42{width:213.137184pt;}
._46{width:218.407264pt;}
._62{width:222.148441pt;}
._57{width:223.704333pt;}
._4d{width:241.237360pt;}
._3f{width:245.317831pt;}
._3d{width:247.069472pt;}
._3c{width:259.635022pt;}
._40{width:260.854464pt;}
._4e{width:267.746960pt;}
._4c{width:280.471568pt;}
._63{width:577.271457pt;}
._56{width:614.039326pt;}
.fs3{font-size:26.829080pt;}
.fs4{font-size:31.939400pt;}
.fs7{font-size:34.494560pt;}
.fs9{font-size:37.049680pt;}
.fs2{font-size:42.798800pt;}
.fs5{font-size:47.909200pt;}
.fsc{font-size:47.999876pt;}
.fsb{font-size:50.464400pt;}
.fsa{font-size:50.559712pt;}
.fs0{font-size:53.019200pt;}
.fs1{font-size:53.119548pt;}
.fs8{font-size:63.878800pt;}
.fs6{font-size:84.958800pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:2.720001pt;}
.y14b{bottom:2.879975pt;}
.y143{bottom:2.880004pt;}
.y12e{bottom:2.880005pt;}
.y126{bottom:6.880699pt;}
.y128{bottom:6.880778pt;}
.ya{bottom:31.520020pt;}
.y9{bottom:46.880005pt;}
.y8{bottom:59.200012pt;}
.y86{bottom:83.039978pt;}
.ye2{bottom:83.520020pt;}
.yfc{bottom:83.840027pt;}
.y137{bottom:84.640015pt;}
.y179{bottom:86.239990pt;}
.y161{bottom:88.159973pt;}
.y3e{bottom:89.280029pt;}
.y75{bottom:90.880005pt;}
.y121{bottom:92.159973pt;}
.y85{bottom:98.400024pt;}
.ye1{bottom:98.880005pt;}
.yfb{bottom:99.200012pt;}
.y136{bottom:99.840027pt;}
.y178{bottom:101.440002pt;}
.y160{bottom:103.520020pt;}
.y3d{bottom:104.640015pt;}
.y74{bottom:106.239990pt;}
.y120{bottom:107.520020pt;}
.y84{bottom:113.760010pt;}
.ye0{bottom:114.239990pt;}
.yfa{bottom:114.559998pt;}
.y135{bottom:115.200012pt;}
.y177{bottom:116.799988pt;}
.y15f{bottom:118.880005pt;}
.y3c{bottom:120.000000pt;}
.y73{bottom:121.599976pt;}
.y11f{bottom:122.880005pt;}
.y133{bottom:128.320007pt;}
.y83{bottom:128.960022pt;}
.ydf{bottom:129.440002pt;}
.yf9{bottom:129.760010pt;}
.y176{bottom:132.159973pt;}
.y15e{bottom:134.239990pt;}
.y3b{bottom:135.200012pt;}
.y9f{bottom:136.799988pt;}
.y72{bottom:136.960022pt;}
.y11e{bottom:138.239990pt;}
.y134{bottom:138.880005pt;}
.y82{bottom:144.320007pt;}
.yde{bottom:144.799988pt;}
.yf8{bottom:145.119995pt;}
.y132{bottom:146.559998pt;}
.y175{bottom:147.520020pt;}
.yc1{bottom:148.320007pt;}
.y15d{bottom:149.440002pt;}
.y3a{bottom:150.559998pt;}
.y71{bottom:152.159973pt;}
.y11d{bottom:153.440002pt;}
.y81{bottom:159.679993pt;}
.ydd{bottom:160.159973pt;}
.yf7{bottom:160.479980pt;}
.y174{bottom:162.880005pt;}
.yc0{bottom:163.679993pt;}
.y15c{bottom:164.799988pt;}
.y39{bottom:165.919983pt;}
.y70{bottom:167.520020pt;}
.y11c{bottom:168.799988pt;}
.y131{bottom:170.239990pt;}
.y80{bottom:175.039978pt;}
.y173{bottom:175.359985pt;}
.ydc{bottom:175.520020pt;}
.yf6{bottom:175.840027pt;}
.y130{bottom:177.919983pt;}
.ybf{bottom:179.039978pt;}
.y15b{bottom:180.159973pt;}
.y38{bottom:181.280029pt;}
.y6f{bottom:182.880005pt;}
.y11b{bottom:184.159973pt;}
.y18f{bottom:189.283497pt;}
.y7f{bottom:190.400024pt;}
.ydb{bottom:190.880005pt;}
.y12d{bottom:191.039978pt;}
.yf5{bottom:191.200012pt;}
.ybe{bottom:194.400024pt;}
.y15a{bottom:195.520020pt;}
.y37{bottom:196.640015pt;}
.y6e{bottom:198.239990pt;}
.y11a{bottom:199.520020pt;}
.y12f{bottom:201.599976pt;}
.y7e{bottom:205.760010pt;}
.yda{bottom:206.239990pt;}
.yf4{bottom:206.559998pt;}
.y12c{bottom:209.280029pt;}
.ybd{bottom:209.760010pt;}
.y18e{bottom:210.399152pt;}
.y159{bottom:210.880005pt;}
.y6d{bottom:213.599976pt;}
.y119{bottom:214.880005pt;}
.y36{bottom:219.840027pt;}
.y7d{bottom:220.960022pt;}
.yd9{bottom:221.440002pt;}
.yf3{bottom:221.760010pt;}
.y158{bottom:223.359985pt;}
.ybc{bottom:225.119995pt;}
.y6c{bottom:228.799988pt;}
.y12b{bottom:229.919983pt;}
.y118{bottom:230.239990pt;}
.y35{bottom:235.200012pt;}
.y18d{bottom:236.000878pt;}
.y7c{bottom:236.320007pt;}
.yd8{bottom:236.799988pt;}
.yf2{bottom:237.119995pt;}
.y16e{bottom:239.681289pt;}
.ybb{bottom:240.320007pt;}
.y6b{bottom:244.159973pt;}
.y117{bottom:245.440002pt;}
.y185{bottom:250.081653pt;}
.y34{bottom:250.559998pt;}
.y7b{bottom:251.679993pt;}
.yd7{bottom:252.159973pt;}
.yf1{bottom:252.479980pt;}
.yba{bottom:255.679993pt;}
.y6a{bottom:259.520020pt;}
.y116{bottom:260.799988pt;}
.y16d{bottom:265.279368pt;}
.y33{bottom:265.919983pt;}
.y7a{bottom:267.039978pt;}
.yd6{bottom:267.520020pt;}
.yf0{bottom:267.840027pt;}
.y127{bottom:270.550766pt;}
.yb9{bottom:271.039978pt;}
.y186{bottom:273.599631pt;}
.y69{bottom:274.880005pt;}
.y115{bottom:276.159973pt;}
.y125{bottom:277.269740pt;}
.y162{bottom:279.360142pt;}
.y32{bottom:281.280029pt;}
.y79{bottom:282.400024pt;}
.yd5{bottom:282.880005pt;}
.yef{bottom:283.200012pt;}
.yb8{bottom:286.400024pt;}
.y68{bottom:290.239990pt;}
.y114{bottom:291.520020pt;}
.y31{bottom:296.640015pt;}
.y12a{bottom:296.791377pt;}
.y187{bottom:297.117680pt;}
.y78{bottom:297.760010pt;}
.yd4{bottom:298.239990pt;}
.y129{bottom:300.156869pt;}
.yee{bottom:301.440002pt;}
.yb7{bottom:301.760010pt;}
.y123{bottom:301.908429pt;}
.y122{bottom:305.273920pt;}
.y67{bottom:305.599976pt;}
.y163{bottom:305.921382pt;}
.y113{bottom:306.880005pt;}
.y124{bottom:309.274540pt;}
.y77{bottom:310.080017pt;}
.y30{bottom:312.000000pt;}
.yd3{bottom:313.440002pt;}
.y76{bottom:316.799988pt;}
.yb6{bottom:317.119995pt;}
.y66{bottom:320.799988pt;}
.y188{bottom:320.804100pt;}
.yed{bottom:322.080017pt;}
.y112{bottom:322.239990pt;}
.y2f{bottom:327.200012pt;}
.yd2{bottom:328.799988pt;}
.yb5{bottom:332.320007pt;}
.y164{bottom:332.478903pt;}
.y65{bottom:336.159973pt;}
.y111{bottom:337.440002pt;}
.y2e{bottom:342.559998pt;}
.yec{bottom:342.880005pt;}
.yd1{bottom:344.159973pt;}
.y189{bottom:344.322149pt;}
.yb4{bottom:347.679993pt;}
.y64{bottom:351.520020pt;}
.y110{bottom:352.799988pt;}
.y2d{bottom:357.919983pt;}
.y165{bottom:359.040143pt;}
.yd0{bottom:359.520020pt;}
.yb3{bottom:363.039978pt;}
.yeb{bottom:363.520020pt;}
.y63{bottom:366.880005pt;}
.y18a{bottom:367.840126pt;}
.y10f{bottom:368.159973pt;}
.y2c{bottom:373.280029pt;}
.ycf{bottom:374.880005pt;}
.yb2{bottom:378.400024pt;}
.y62{bottom:382.239990pt;}
.y10e{bottom:383.520020pt;}
.yea{bottom:384.159973pt;}
.y166{bottom:385.601311pt;}
.y2b{bottom:388.640015pt;}
.yce{bottom:390.239990pt;}
.y18b{bottom:391.361823pt;}
.yb1{bottom:393.760010pt;}
.y9e{bottom:397.440002pt;}
.y61{bottom:397.599976pt;}
.y10d{bottom:398.880005pt;}
.y2a{bottom:404.000000pt;}
.ycd{bottom:405.440002pt;}
.yb0{bottom:409.119995pt;}
.y167{bottom:412.162551pt;}
.y60{bottom:412.799988pt;}
.y10c{bottom:414.239990pt;}
.y18c{bottom:414.879801pt;}
.y29{bottom:419.200012pt;}
.ycc{bottom:420.799988pt;}
.yaf{bottom:424.320007pt;}
.y5f{bottom:428.159973pt;}
.y10b{bottom:429.440002pt;}
.y28{bottom:434.559998pt;}
.ycb{bottom:436.159973pt;}
.y168{bottom:438.723720pt;}
.yae{bottom:439.679993pt;}
.y5e{bottom:443.520020pt;}
.y10a{bottom:444.799988pt;}
.y27{bottom:449.919983pt;}
.yca{bottom:451.520020pt;}
.yad{bottom:455.039978pt;}
.ye5{bottom:456.795308pt;}
.y5d{bottom:458.880005pt;}
.y109{bottom:460.159973pt;}
.ye3{bottom:463.837811pt;}
.y26{bottom:465.280029pt;}
.y169{bottom:465.281312pt;}
.yc9{bottom:466.880005pt;}
.ye8{bottom:472.316325pt;}
.y108{bottom:472.640015pt;}
.yac{bottom:473.440002pt;}
.y5c{bottom:474.239990pt;}
.ye6{bottom:475.673758pt;}
.y25{bottom:480.640015pt;}
.yc8{bottom:482.080017pt;}
.y172{bottom:482.239990pt;}
.ye9{bottom:482.392693pt;}
.y140{bottom:485.437489pt;}
.ye7{bottom:485.596420pt;}
.ye4{bottom:485.911930pt;}
.y5b{bottom:489.440002pt;}
.y16a{bottom:491.842516pt;}
.yab{bottom:494.080017pt;}
.y24{bottom:495.840027pt;}
.yc7{bottom:497.440002pt;}
.y5a{bottom:504.799988pt;}
.y13f{bottom:506.560474pt;}
.y23{bottom:511.200012pt;}
.yc6{bottom:512.799988pt;}
.yaa{bottom:514.719971pt;}
.y16b{bottom:518.403720pt;}
.y59{bottom:520.159973pt;}
.y22{bottom:526.559998pt;}
.yc5{bottom:528.159973pt;}
.y13e{bottom:532.162237pt;}
.ya9{bottom:535.359985pt;}
.y58{bottom:535.520020pt;}
.y21{bottom:541.919983pt;}
.yc4{bottom:543.520020pt;}
.y16c{bottom:544.800130pt;}
.y138{bottom:546.243011pt;}
.y57{bottom:550.880005pt;}
.ya8{bottom:556.000000pt;}
.y20{bottom:557.279999pt;}
.yc3{bottom:558.880005pt;}
.y56{bottom:566.239990pt;}
.yc2{bottom:571.200012pt;}
.y1f{bottom:572.640015pt;}
.y171{bottom:574.079987pt;}
.y55{bottom:581.440002pt;}
.y107{bottom:586.881342pt;}
.y1e{bottom:587.839996pt;}
.y157{bottom:588.799988pt;}
.y170{bottom:589.440002pt;}
.y54{bottom:596.799988pt;}
.y16f{bottom:601.920013pt;}
.y1d{bottom:603.200012pt;}
.y156{bottom:604.160004pt;}
.y53{bottom:612.160004pt;}
.y106{bottom:612.483069pt;}
.y184{bottom:616.800699pt;}
.y155{bottom:619.519989pt;}
.y1c{bottom:623.200012pt;}
.yfd{bottom:626.560196pt;}
.y52{bottom:627.519989pt;}
.y139{bottom:627.523321pt;}
.ya5{bottom:628.473381pt;}
.ya0{bottom:633.756266pt;}
.y1b{bottom:633.920013pt;}
.y154{bottom:634.880005pt;}
.y183{bottom:642.398778pt;}
.y51{bottom:642.880005pt;}
.ya3{bottom:643.355320pt;}
.ya2{bottom:644.953134pt;}
.y1a{bottom:649.279999pt;}
.y153{bottom:650.239990pt;}
.ya1{bottom:652.318455pt;}
.y17a{bottom:656.479553pt;}
.ya7{bottom:657.276113pt;}
.y50{bottom:658.239990pt;}
.ya6{bottom:658.874717pt;}
.ya4{bottom:660.635165pt;}
.yfe{bottom:662.404823pt;}
.y19{bottom:664.640015pt;}
.y152{bottom:665.440002pt;}
.y13a{bottom:668.161652pt;}
.y4f{bottom:673.440002pt;}
.y151{bottom:680.799988pt;}
.y17b{bottom:680.803192pt;}
.y18{bottom:684.480011pt;}
.y9c{bottom:686.559998pt;}
.y4e{bottom:688.799988pt;}
.y17{bottom:695.200012pt;}
.y150{bottom:696.160004pt;}
.y9d{bottom:696.640015pt;}
.yff{bottom:698.081009pt;}
.y9b{bottom:703.839996pt;}
.y4d{bottom:704.160004pt;}
.y17c{bottom:705.118070pt;}
.y13b{bottom:708.803630pt;}
.y14f{bottom:711.519989pt;}
.y16{bottom:715.200012pt;}
.y99{bottom:716.480011pt;}
.y4c{bottom:719.519989pt;}
.y9a{bottom:726.399994pt;}
.y14e{bottom:726.880005pt;}
.y17d{bottom:729.598493pt;}
.y15{bottom:730.559998pt;}
.y98{bottom:733.760010pt;}
.y100{bottom:733.922704pt;}
.y4b{bottom:734.880005pt;}
.y14{bottom:741.279999pt;}
.y14d{bottom:742.239990pt;}
.y96{bottom:746.239990pt;}
.y13c{bottom:749.602357pt;}
.y4a{bottom:750.239990pt;}
.y17e{bottom:753.920702pt;}
.y14a{bottom:755.200012pt;}
.y97{bottom:756.160004pt;}
.y13{bottom:761.279999pt;}
.y95{bottom:763.519989pt;}
.y49{bottom:765.440002pt;}
.y14c{bottom:765.760010pt;}
.y101{bottom:769.758552pt;}
.y12{bottom:771.839996pt;}
.y149{bottom:773.440002pt;}
.y93{bottom:776.000000pt;}
.y17f{bottom:778.401108pt;}
.y48{bottom:780.799988pt;}
.y94{bottom:786.079987pt;}
.y148{bottom:786.559998pt;}
.y13d{bottom:790.242869pt;}
.y11{bottom:791.839996pt;}
.y92{bottom:793.279999pt;}
.y47{bottom:796.160004pt;}
.y180{bottom:802.723299pt;}
.y102{bottom:805.442051pt;}
.y8f{bottom:805.759995pt;}
.y10{bottom:806.559998pt;}
.y146{bottom:807.199997pt;}
.y46{bottom:811.520004pt;}
.y91{bottom:815.839996pt;}
.y147{bottom:817.759995pt;}
.yf{bottom:821.919998pt;}
.y8e{bottom:823.039993pt;}
.y145{bottom:825.440002pt;}
.y45{bottom:826.880005pt;}
.y181{bottom:827.197857pt;}
.y142{bottom:838.559998pt;}
.y103{bottom:841.277898pt;}
.y44{bottom:842.080002pt;}
.ye{bottom:845.279999pt;}
.y141{bottom:849.119995pt;}
.y182{bottom:851.520048pt;}
.y144{bottom:856.800003pt;}
.y43{bottom:857.440002pt;}
.yd{bottom:862.399994pt;}
.y42{bottom:872.800003pt;}
.y104{bottom:877.119594pt;}
.yc{bottom:886.880005pt;}
.y41{bottom:888.160004pt;}
.y8d{bottom:895.361514pt;}
.y87{bottom:899.199291pt;}
.y40{bottom:903.520004pt;}
.yb{bottom:911.360001pt;}
.y88{bottom:912.000103pt;}
.y105{bottom:912.803101pt;}
.y8c{bottom:913.441578pt;}
.y8b{bottom:915.043214pt;}
.y3f{bottom:918.880005pt;}
.y8a{bottom:922.718778pt;}
.y89{bottom:922.878939pt;}
.y7{bottom:938.239998pt;}
.y6{bottom:949.279999pt;}
.y5{bottom:960.160004pt;}
.y4{bottom:970.720001pt;}
.y3{bottom:983.199997pt;}
.y2{bottom:996.318318pt;}
.y1{bottom:997.119999pt;}
.h1f{height:6.880778pt;}
.h1e{height:7.042503pt;}
.h16{height:14.079987pt;}
.h14{height:14.080001pt;}
.h18{height:14.080017pt;}
.h22{height:14.719971pt;}
.h24{height:14.720001pt;}
.h21{height:14.720031pt;}
.h20{height:14.720032pt;}
.h7{height:19.401302pt;}
.hb{height:24.944552pt;}
.h5{height:31.767850pt;}
.h1d{height:34.710848pt;}
.h3{height:36.041318pt;}
.h13{height:36.493055pt;}
.h12{height:36.561979pt;}
.hd{height:37.408566pt;}
.h2{height:37.479369pt;}
.h6{height:37.961298pt;}
.h1{height:38.340545pt;}
.h1c{height:38.413111pt;}
.h25{height:38.599427pt;}
.h4{height:39.447842pt;}
.ha{height:42.898199pt;}
.h9{height:42.898203pt;}
.hc{height:43.504492pt;}
.he{height:43.699419pt;}
.hf{height:46.193605pt;}
.h8{height:61.437492pt;}
.h10{height:62.584594pt;}
.h1b{height:65.292979pt;}
.h15{height:65.293043pt;}
.h17{height:65.293103pt;}
.h19{height:65.932995pt;}
.h1a{height:65.933119pt;}
.h23{height:69.060577pt;}
.h11{height:71.563057pt;}
.h0{height:1056.000000pt;}
.w4{width:4.478233pt;}
.w2{width:6.399994pt;}
.w1{width:6.400009pt;}
.w6{width:6.719970pt;}
.wb{width:6.719971pt;}
.wf{width:6.720001pt;}
.wd{width:6.720002pt;}
.w8{width:6.720032pt;}
.w9{width:20.000000pt;}
.w3{width:26.879990pt;}
.wa{width:42.239990pt;}
.wc{width:65.600006pt;}
.w7{width:73.599975pt;}
.we{width:79.200013pt;}
.w10{width:88.480011pt;}
.w5{width:94.400025pt;}
.w0{width:816.000000pt;}
.x55{left:-7.679866pt;}
.x0{left:0.000000pt;}
.x5{left:119.680000pt;}
.x30{left:122.080002pt;}
.x25{left:127.360001pt;}
.x10{left:129.119995pt;}
.x8{left:131.679993pt;}
.x12{left:135.679993pt;}
.x1f{left:139.039211pt;}
.x26{left:140.479996pt;}
.x72{left:142.880005pt;}
.x13{left:144.160004pt;}
.xc{left:147.360001pt;}
.x41{left:153.600006pt;}
.x7{left:157.119995pt;}
.x15{left:159.199997pt;}
.x4d{left:163.681225pt;}
.x19{left:167.839996pt;}
.x74{left:170.559998pt;}
.x2b{left:174.720001pt;}
.xf{left:180.800003pt;}
.xd{left:181.919998pt;}
.x27{left:184.800003pt;}
.x2e{left:186.559998pt;}
.x2c{left:189.759995pt;}
.x61{left:190.722168pt;}
.x18{left:191.839996pt;}
.x76{left:192.960448pt;}
.x71{left:196.798321pt;}
.x75{left:199.036601pt;}
.x20{left:200.319415pt;}
.x51{left:206.399994pt;}
.x4e{left:215.196708pt;}
.x1{left:219.360001pt;}
.x62{left:229.757221pt;}
.xe{left:234.080002pt;}
.x40{left:235.520004pt;}
.x77{left:240.638057pt;}
.x73{left:242.080002pt;}
.x50{left:245.600006pt;}
.x28{left:252.800003pt;}
.x16{left:254.880005pt;}
.x4f{left:259.839174pt;}
.xb{left:263.040009pt;}
.x21{left:269.116917pt;}
.x29{left:279.679993pt;}
.x78{left:283.839996pt;}
.x11{left:291.040009pt;}
.x2a{left:299.839996pt;}
.x23{left:301.438840pt;}
.x2d{left:302.880005pt;}
.x63{left:304.001185pt;}
.x2f{left:304.959991pt;}
.x22{left:316.479630pt;}
.x2{left:341.440002pt;}
.x14{left:343.200012pt;}
.x3{left:355.200012pt;}
.x24{left:356.158375pt;}
.x17{left:371.679993pt;}
.x9{left:386.720001pt;}
.x70{left:392.320007pt;}
.x6{left:394.720001pt;}
.xa{left:408.000000pt;}
.x1a{left:416.320007pt;}
.x3e{left:418.559998pt;}
.x1e{left:421.119995pt;}
.x6b{left:423.839996pt;}
.x6f{left:425.279999pt;}
.x3d{left:426.720001pt;}
.x59{left:431.839996pt;}
.x64{left:433.600006pt;}
.x32{left:434.720001pt;}
.x31{left:437.760010pt;}
.x4b{left:439.040009pt;}
.x1c{left:440.799988pt;}
.x4c{left:442.399994pt;}
.x5a{left:444.640015pt;}
.x5d{left:445.760010pt;}
.x66{left:448.640015pt;}
.x43{left:453.598448pt;}
.x1b{left:464.320007pt;}
.x5f{left:472.640015pt;}
.x52{left:477.756576pt;}
.x36{left:480.792065pt;}
.x6c{left:489.440002pt;}
.x60{left:492.640015pt;}
.x35{left:496.634085pt;}
.x6e{left:503.040009pt;}
.x1d{left:505.760010pt;}
.x34{left:512.476065pt;}
.x45{left:515.515590pt;}
.x5e{left:519.359985pt;}
.x33{left:521.760010pt;}
.x42{left:526.880005pt;}
.x5b{left:529.760010pt;}
.x44{left:531.511605pt;}
.x65{left:535.840027pt;}
.x67{left:549.119995pt;}
.x5c{left:556.159973pt;}
.x53{left:557.274627pt;}
.x39{left:561.112542pt;}
.x6d{left:563.679993pt;}
.x48{left:565.910915pt;}
.x38{left:576.954522pt;}
.x47{left:581.915043pt;}
.x54{left:585.590850pt;}
.x68{left:591.359985pt;}
.x37{left:592.796542pt;}
.x46{left:597.432807pt;}
.x56{left:613.753038pt;}
.x69{left:623.359985pt;}
.x6a{left:632.640015pt;}
.x4a{left:636.156356pt;}
.x3c{left:639.670055pt;}
.x57{left:642.077374pt;}
.x49{left:651.990263pt;}
.x3b{left:655.195972pt;}
.x3f{left:667.039978pt;}
.x3a{left:671.191947pt;}
.x58{left:674.231472pt;}
.x4{left:696.320007pt;}
}




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