
    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_ca0a718082e43834eaa00293.woff2')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_eecab0ef709314e1a6574dea.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740723;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_90fffac334f9bdbc8587ea91.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_0883283669da4b2c8c479f59.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:697.499999px;}
.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;}
}
.ws1{word-spacing:-24.416016px;}
.ws0{word-spacing:0.000000px;}
._3e{margin-left:-11.102766px;}
._b{margin-left:-9.985947px;}
._2{margin-left:-8.732647px;}
._1c{margin-left:-7.329992px;}
._c{margin-left:-5.902141px;}
._5{margin-left:-4.370025px;}
._a{margin-left:-2.910189px;}
._e{margin-left:-1.440380px;}
._16{width:1.198526px;}
._9{width:4.392184px;}
._1f{width:5.460743px;}
._1{width:8.972734px;}
._3c{width:9.972840px;}
._0{width:13.415442px;}
._2d{width:14.415450px;}
._8{width:17.299463px;}
._7{width:18.597819px;}
._f{width:21.737304px;}
._6{width:23.182232px;}
._4{width:26.914320px;}
._23{width:27.972790px;}
._3{width:31.423269px;}
._38{width:32.430583px;}
._d{width:35.932424px;}
._34{width:36.983664px;}
._1e{width:40.261700px;}
._1d{width:41.375876px;}
._19{width:44.012084px;}
._18{width:45.701178px;}
._17{width:49.393505px;}
._22{width:50.447008px;}
._20{width:53.067333px;}
._21{width:54.968866px;}
._1b{width:58.492351px;}
._1a{width:62.963872px;}
._26{width:63.972595px;}
._25{width:66.721659px;}
._15{width:68.022358px;}
._35{width:71.108016px;}
._14{width:72.117525px;}
._13{width:76.359985px;}
._2c{width:77.439190px;}
._2b{width:80.103530px;}
._2a{width:81.985364px;}
._12{width:85.166336px;}
._11{width:86.376981px;}
._10{width:89.592195px;}
._40{width:90.743230px;}
._24{width:94.499998px;}
._36{width:98.944176px;}
._37{width:99.965768px;}
._41{width:102.755430px;}
._3f{width:104.412814px;}
._3a{width:107.947284px;}
._3b{width:108.975592px;}
._29{width:111.620068px;}
._28{width:113.142592px;}
._27{width:117.016553px;}
._30{width:120.686276px;}
._2f{width:122.481740px;}
._2e{width:126.049656px;}
._3d{width:130.842755px;}
._43{width:134.314436px;}
._42{width:135.975571px;}
._33{width:139.111190px;}
._32{width:140.195358px;}
._31{width:143.999998px;}
._46{width:152.120067px;}
._47{width:153.642590px;}
._49{width:165.646500px;}
._48{width:171.975553px;}
._45{width:180.000012px;}
._44{width:184.358349px;}
._39{width:697.499999px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(15,17,17);}
.fs4{font-size:59.999999px;}
.fs6{font-size:66.000002px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:78.000003px;}
.fs7{font-size:83.999997px;}
.fs5{font-size:101.999997px;}
.fsb{font-size:108.000000px;}
.fsa{font-size:119.999997px;}
.fs1{font-size:137.999997px;}
.fs9{font-size:144.000000px;}
.fs2{font-size:156.000006px;}
.fs0{font-size:275.999994px;}
.y0{bottom:0.000000px;}
.y6f{bottom:113.817625px;}
.y13e{bottom:118.854487px;}
.y1c1{bottom:118.857414px;}
.yae{bottom:120.467290px;}
.y90{bottom:122.573005px;}
.y3b{bottom:126.340207px;}
.y9c{bottom:126.941168px;}
.y171{bottom:131.490232px;}
.y6e{bottom:143.297245px;}
.y156{bottom:144.123042px;}
.ye1{bottom:144.123044px;}
.y1c2{bottom:144.123050px;}
.y116{bottom:144.123051px;}
.y183{bottom:144.123053px;}
.yad{bottom:149.947270px;}
.y8f{bottom:152.052985px;}
.y9b{bottom:154.001951px;}
.y1a1{bottom:156.755852px;}
.y13d{bottom:156.755856px;}
.y1c0{bottom:156.755858px;}
.y12d{bottom:156.757328px;}
.yc8{bottom:157.460451px;}
.y3a{bottom:162.137318px;}
.y23{bottom:165.045227px;}
.y1ff{bottom:169.388657px;}
.y1dd{bottom:169.388674px;}
.y1d2{bottom:169.388675px;}
.y170{bottom:169.391601px;}
.y6d{bottom:172.777585px;}
.yac{bottom:179.427250px;}
.y8e{bottom:181.532965px;}
.y1ef{bottom:182.021481px;}
.y1e5{bottom:182.021483px;}
.y20d{bottom:182.021490px;}
.ye0{bottom:182.025876px;}
.y115{bottom:182.025884px;}
.y155{bottom:182.027333px;}
.y14b{bottom:182.027346px;}
.y176{bottom:182.027347px;}
.y182{bottom:182.027352px;}
.y9a{bottom:185.901128px;}
.ya{bottom:188.705199px;}
.y102{bottom:190.448736px;}
.y13c{bottom:194.660151px;}
.y1bf{bottom:194.660157px;}
.y12c{bottom:194.660159px;}
.yc7{bottom:195.363276px;}
.y39{bottom:197.934449px;}
.y6c{bottom:202.257565px;}
.y1dc{bottom:207.292965px;}
.y16f{bottom:207.292970px;}
.y1fe{bottom:207.298822px;}
.yab{bottom:208.907230px;}
.y8d{bottom:211.012945px;}
.y154{bottom:219.928702px;}
.ydf{bottom:219.928709px;}
.y14a{bottom:219.928712px;}
.y10f{bottom:219.928716px;}
.y12e{bottom:219.928717px;}
.y1df{bottom:219.931631px;}
.y1b6{bottom:219.931633px;}
.y1b1{bottom:219.931641px;}
.y1d3{bottom:219.931643px;}
.y1aa{bottom:219.931647px;}
.y22{bottom:226.831786px;}
.y101{bottom:228.351569px;}
.y6b{bottom:231.737185px;}
.y12b{bottom:232.562991px;}
.y13b{bottom:232.564446px;}
.y1a0{bottom:232.564447px;}
.yc6{bottom:233.266112px;}
.y38{bottom:233.731562px;}
.yaa{bottom:238.387210px;}
.y8c{bottom:240.492925px;}
.y1fd{bottom:245.197260px;}
.y16e{bottom:245.197266px;}
.y1d1{bottom:245.197272px;}
.y21{bottom:252.618346px;}
.y153{bottom:257.830071px;}
.y1c8{bottom:257.830073px;}
.y1b0{bottom:257.830077px;}
.y180{bottom:257.830082px;}
.y149{bottom:257.830085px;}
.yde{bottom:257.831541px;}
.y10e{bottom:257.831549px;}
.y212{bottom:257.835931px;}
.y1e4{bottom:257.835936px;}
.y1ee{bottom:257.835943px;}
.y6a{bottom:261.217525px;}
.y100{bottom:266.254401px;}
.y50{bottom:267.304691px;}
.ya9{bottom:267.867190px;}
.y37{bottom:269.528684px;}
.y8b{bottom:269.972905px;}
.y1be{bottom:270.462890px;}
.y13a{bottom:270.465816px;}
.y12a{bottom:270.465824px;}
.yc5{bottom:271.168942px;}
.y9{bottom:274.548525px;}
.y20{bottom:278.404906px;}
.y1fc{bottom:283.095697px;}
.y1db{bottom:283.101560px;}
.y18e{bottom:283.101563px;}
.y16d{bottom:283.101567px;}
.y69{bottom:290.697505px;}
.y1af{bottom:295.734368px;}
.y195{bottom:295.734372px;}
.ydd{bottom:295.734374px;}
.y213{bottom:295.734375px;}
.y10d{bottom:295.734381px;}
.ya8{bottom:297.347170px;}
.y8a{bottom:299.452885px;}
.yff{bottom:304.157219px;}
.y36{bottom:305.325806px;}
.y139{bottom:308.367185px;}
.y129{bottom:308.368656px;}
.yc4{bottom:309.071774px;}
.y68{bottom:320.177125px;}
.y18d{bottom:321.002927px;}
.y16c{bottom:321.002931px;}
.y1da{bottom:321.005856px;}
.y1d0{bottom:321.005863px;}
.y4f{bottom:321.101804px;}
.ya7{bottom:326.827150px;}
.y218{bottom:327.481198px;}
.y89{bottom:328.932865px;}
.y1e3{bottom:333.632811px;}
.y20c{bottom:333.632812px;}
.ydc{bottom:333.637206px;}
.y114{bottom:333.637208px;}
.y10c{bottom:333.637214px;}
.y194{bottom:333.638663px;}
.y1ae{bottom:333.638668px;}
.y148{bottom:333.638676px;}
.y175{bottom:333.638677px;}
.y1d4{bottom:333.638679px;}
.y1f{bottom:340.191466px;}
.yfe{bottom:342.060051px;}
.y138{bottom:346.271481px;}
.y1bd{bottom:346.271482px;}
.y128{bottom:346.271489px;}
.yc3{bottom:346.974606px;}
.y67{bottom:349.657465px;}
.y8{bottom:356.170905px;}
.ya6{bottom:356.307130px;}
.y4e{bottom:356.898917px;}
.y88{bottom:358.412845px;}
.y1d9{bottom:358.904292px;}
.y16b{bottom:358.904300px;}
.y1fb{bottom:358.910151px;}
.y35{bottom:359.122920px;}
.y1e{bottom:365.978027px;}
.y1ad{bottom:371.537106px;}
.y20b{bottom:371.537108px;}
.y217{bottom:371.537112px;}
.y1a9{bottom:371.537119px;}
.y130{bottom:371.540031px;}
.y152{bottom:371.540033px;}
.yeb{bottom:371.540039px;}
.ydb{bottom:371.540042px;}
.y10b{bottom:371.540046px;}
.y66{bottom:377.188478px;}
.yfd{bottom:379.962884px;}
.y127{bottom:384.174321px;}
.y137{bottom:384.175778px;}
.y1bc{bottom:384.175782px;}
.yc2{bottom:384.877439px;}
.ya5{bottom:385.787110px;}
.y87{bottom:387.892825px;}
.y1d{bottom:391.764586px;}
.y4d{bottom:392.696039px;}
.y34{bottom:394.920037px;}
.y1d8{bottom:396.808583px;}
.y1fa{bottom:396.808584px;}
.y16a{bottom:396.808596px;}
.y1cf{bottom:396.808602px;}
.y65{bottom:404.248901px;}
.y151{bottom:409.441397px;}
.y147{bottom:409.441400px;}
.y17f{bottom:409.441403px;}
.y1a8{bottom:409.441410px;}
.y17b{bottom:409.441415px;}
.y10a{bottom:409.442864px;}
.yea{bottom:409.442871px;}
.yda{bottom:409.442873px;}
.y206{bottom:409.447258px;}
.y1e2{bottom:409.447266px;}
.y1ed{bottom:409.447272px;}
.ya4{bottom:415.267090px;}
.y86{bottom:417.372805px;}
.y1c{bottom:417.551146px;}
.yfc{bottom:417.865716px;}
.y19f{bottom:422.077142px;}
.y126{bottom:422.077146px;}
.y136{bottom:422.077147px;}
.y1bb{bottom:422.080073px;}
.yc1{bottom:422.780271px;}
.y4c{bottom:428.493161px;}
.y33{bottom:430.717148px;}
.y1f9{bottom:434.707027px;}
.y1d7{bottom:434.712883px;}
.y169{bottom:434.712891px;}
.y1ce{bottom:434.712893px;}
.y64{bottom:436.148438px;}
.y7{bottom:437.793270px;}
.y1b{bottom:443.337706px;}
.ya3{bottom:444.747070px;}
.y85{bottom:446.852785px;}
.y109{bottom:447.345696px;}
.ye9{bottom:447.345697px;}
.y17e{bottom:447.345702px;}
.yd9{bottom:447.345704px;}
.y17a{bottom:447.345710px;}
.yfb{bottom:455.768556px;}
.y135{bottom:459.978516px;}
.y125{bottom:459.979986px;}
.yc0{bottom:460.683111px;}
.y63{bottom:461.260255px;}
.y32{bottom:466.514279px;}
.ya2{bottom:472.278083px;}
.y1d6{bottom:472.611321px;}
.y1f8{bottom:472.611327px;}
.y1cd{bottom:472.611335px;}
.y168{bottom:472.614261px;}
.y84{bottom:476.332765px;}
.y4b{bottom:482.290290px;}
.y205{bottom:485.244141px;}
.y1e1{bottom:485.244143px;}
.ye8{bottom:485.248529px;}
.yd8{bottom:485.248536px;}
.y146{bottom:485.249993px;}
.y178{bottom:485.249997px;}
.y179{bottom:485.250006px;}
.y62{bottom:490.739875px;}
.yfa{bottom:493.671381px;}
.y124{bottom:497.882811px;}
.ybf{bottom:498.585936px;}
.ya1{bottom:499.338866px;}
.y31{bottom:502.311392px;}
.y1a{bottom:505.124266px;}
.y83{bottom:505.812745px;}
.y167{bottom:510.515630px;}
.y1f7{bottom:510.521481px;}
.y4a{bottom:518.087407px;}
.y6{bottom:519.415650px;}
.y61{bottom:520.220215px;}
.y192{bottom:523.151357px;}
.ye7{bottom:523.151361px;}
.y17d{bottom:523.151363px;}
.yd7{bottom:523.151369px;}
.y1c7{bottom:523.154288px;}
.y1c6{bottom:523.154293px;}
.y20a{bottom:523.154296px;}
.y1a7{bottom:523.154301px;}
.y19{bottom:530.910826px;}
.yf9{bottom:531.574213px;}
.ya0{bottom:531.887689px;}
.y82{bottom:535.292725px;}
.y123{bottom:535.785644px;}
.y19e{bottom:535.787106px;}
.y134{bottom:535.787108px;}
.ybe{bottom:536.488768px;}
.y30{bottom:538.108514px;}
.y1f6{bottom:548.419918px;}
.y166{bottom:548.419926px;}
.y60{bottom:549.700195px;}
.y49{bottom:553.884518px;}
.y9f{bottom:558.455560px;}
.y193{bottom:561.052727px;}
.y145{bottom:561.052731px;}
.y150{bottom:561.052733px;}
.y1a6{bottom:561.052734px;}
.y1ac{bottom:561.052737px;}
.ye6{bottom:561.054194px;}
.yd6{bottom:561.054201px;}
.y216{bottom:561.058588px;}
.y1ec{bottom:561.058591px;}
.y1e0{bottom:561.058596px;}
.y81{bottom:562.823723px;}
.y99{bottom:564.772705px;}
.yf8{bottom:569.477049px;}
.y1ba{bottom:573.685550px;}
.y122{bottom:573.688476px;}
.y2f{bottom:573.905636px;}
.ybd{bottom:574.391604px;}
.y5f{bottom:579.179815px;}
.y1f5{bottom:586.318356px;}
.y165{bottom:586.324221px;}
.y9e{bottom:587.935540px;}
.y48{bottom:589.681649px;}
.y80{bottom:589.884521px;}
.y18{bottom:592.697386px;}
.y98{bottom:594.252685px;}
.ye5{bottom:598.957026px;}
.y17c{bottom:598.957027px;}
.y1c5{bottom:598.957029px;}
.y14f{bottom:598.957032px;}
.y108{bottom:598.957034px;}
.yd5{bottom:598.957037px;}
.yf7{bottom:607.379886px;}
.y5e{bottom:608.660155px;}
.y19d{bottom:611.589846px;}
.y133{bottom:611.591309px;}
.y121{bottom:611.591316px;}
.ybc{bottom:612.294441px;}
.y5{bottom:614.299806px;}
.y9d{bottom:617.415535px;}
.y17{bottom:618.483947px;}
.y7f{bottom:621.783698px;}
.y97{bottom:623.732665px;}
.y164{bottom:624.225591px;}
.y1cc{bottom:624.228516px;}
.y47{bottom:625.478762px;}
.y2e{bottom:627.702754px;}
.y1eb{bottom:636.855470px;}
.y211{bottom:636.855473px;}
.y117{bottom:636.859859px;}
.y107{bottom:636.859866px;}
.yd4{bottom:636.859868px;}
.y181{bottom:636.861321px;}
.y14e{bottom:636.861323px;}
.y144{bottom:636.861327px;}
.y5d{bottom:638.140135px;}
.y16{bottom:644.270506px;}
.yf6{bottom:645.282711px;}
.y7e{bottom:646.895515px;}
.y120{bottom:649.494141px;}
.ybb{bottom:650.197266px;}
.y96{bottom:653.212645px;}
.y46{bottom:661.275884px;}
.y163{bottom:662.126946px;}
.y18c{bottom:662.126952px;}
.y1f4{bottom:662.132811px;}
.y2d{bottom:663.499882px;}
.y5c{bottom:667.619755px;}
.y1c4{bottom:674.759760px;}
.y1a5{bottom:674.759765px;}
.y210{bottom:674.759768px;}
.y209{bottom:674.759772px;}
.y177{bottom:674.762687px;}
.y106{bottom:674.762691px;}
.y113{bottom:674.762692px;}
.yd3{bottom:674.762699px;}
.y7d{bottom:676.375495px;}
.y95{bottom:682.692625px;}
.yf5{bottom:683.185547px;}
.y132{bottom:687.396974px;}
.y11f{bottom:687.396977px;}
.y19c{bottom:687.398427px;}
.y1b9{bottom:687.398436px;}
.yba{bottom:688.100102px;}
.y45{bottom:697.073006px;}
.y5b{bottom:697.100095px;}
.y2c{bottom:699.296977px;}
.y18b{bottom:700.031240px;}
.y162{bottom:700.031250px;}
.y1cb{bottom:700.031256px;}
.y4{bottom:705.544562px;}
.y7c{bottom:705.855475px;}
.y15{bottom:706.057066px;}
.y94{bottom:712.172605px;}
.y1b5{bottom:712.664055px;}
.y159{bottom:712.664057px;}
.y143{bottom:712.664060px;}
.y1a2{bottom:712.664062px;}
.y112{bottom:712.665524px;}
.yd2{bottom:712.665531px;}
.y12f{bottom:712.665532px;}
.y1ea{bottom:712.669917px;}
.y208{bottom:712.669926px;}
.y204{bottom:712.669927px;}
.yf4{bottom:721.088377px;}
.y19b{bottom:725.299801px;}
.y131{bottom:725.299806px;}
.y11e{bottom:725.299808px;}
.y1b8{bottom:725.302737px;}
.yb9{bottom:726.002933px;}
.y5a{bottom:726.580075px;}
.y14{bottom:731.843627px;}
.y2b{bottom:735.094117px;}
.y7b{bottom:735.335455px;}
.y1f3{bottom:737.929688px;}
.y161{bottom:737.935538px;}
.y18a{bottom:737.935550px;}
.y93{bottom:739.703618px;}
.y1b4{bottom:750.568355px;}
.y111{bottom:750.568356px;}
.y1de{bottom:750.568358px;}
.y191{bottom:750.568362px;}
.yd1{bottom:750.568364px;}
.y203{bottom:750.568365px;}
.y44{bottom:750.870115px;}
.y59{bottom:756.059695px;}
.y13{bottom:757.630186px;}
.yf3{bottom:758.991209px;}
.y19a{bottom:763.201175px;}
.y11d{bottom:763.202639px;}
.yb8{bottom:763.905764px;}
.y7a{bottom:764.815435px;}
.y92{bottom:766.764401px;}
.y2a{bottom:770.891235px;}
.y1ca{bottom:775.833975px;}
.y160{bottom:775.836912px;}
.y12{bottom:783.416746px;}
.y58{bottom:785.540035px;}
.y43{bottom:786.667226px;}
.y1e9{bottom:788.466788px;}
.y20f{bottom:788.466795px;}
.y207{bottom:788.466801px;}
.y202{bottom:788.466802px;}
.y110{bottom:788.471189px;}
.yd0{bottom:788.471196px;}
.y14d{bottom:788.472651px;}
.y158{bottom:788.472652px;}
.y190{bottom:788.472655px;}
.y142{bottom:788.472657px;}
.y79{bottom:794.295415px;}
.y3{bottom:796.789307px;}
.yf2{bottom:796.894041px;}
.y91{bottom:798.663578px;}
.y199{bottom:801.105468px;}
.y11c{bottom:801.105471px;}
.yb7{bottom:801.808596px;}
.y29{bottom:806.688352px;}
.y11{bottom:809.203306px;}
.y189{bottom:813.738280px;}
.y15f{bottom:813.738285px;}
.y1f2{bottom:813.744135px;}
.y57{bottom:815.020015px;}
.y42{bottom:822.464357px;}
.y78{bottom:823.775395px;}
.ycf{bottom:826.374021px;}
.y105{bottom:826.374023px;}
.ye4{bottom:826.374029px;}
.y1b3{bottom:826.376946px;}
.y1a4{bottom:826.376948px;}
.y1ab{bottom:826.376953px;}
.y1d5{bottom:826.376955px;}
.y201{bottom:826.376960px;}
.yf1{bottom:834.796874px;}
.y11b{bottom:839.008304px;}
.y198{bottom:839.009768px;}
.yb6{bottom:839.711429px;}
.y28{bottom:842.485463px;}
.y56{bottom:844.499635px;}
.y15e{bottom:851.642579px;}
.y188{bottom:851.642580px;}
.y77{bottom:853.255375px;}
.yb0{bottom:855.205076px;}
.y41{bottom:858.261470px;}
.y157{bottom:864.275389px;}
.y141{bottom:864.275390px;}
.y18f{bottom:864.275393px;}
.yce{bottom:864.276854px;}
.y104{bottom:864.276855px;}
.ye3{bottom:864.276861px;}
.y1e8{bottom:864.281246px;}
.y20e{bottom:864.281248px;}
.y215{bottom:864.281250px;}
.y200{bottom:864.281256px;}
.y10{bottom:870.989866px;}
.yf0{bottom:872.699706px;}
.y55{bottom:873.979975px;}
.y1b7{bottom:876.908205px;}
.y197{bottom:876.911132px;}
.y11a{bottom:876.911136px;}
.yb5{bottom:877.614261px;}
.y27{bottom:878.282594px;}
.y76{bottom:882.735355px;}
.yaf{bottom:887.103518px;}
.y2{bottom:888.034060px;}
.y1f1{bottom:889.541016px;}
.y187{bottom:889.546871px;}
.y15d{bottom:889.546878px;}
.y40{bottom:894.058592px;}
.yf{bottom:896.776427px;}
.y1c3{bottom:902.179684px;}
.ycd{bottom:902.179686px;}
.y103{bottom:902.179688px;}
.y174{bottom:902.179691px;}
.y54{bottom:903.459955px;}
.yef{bottom:910.602540px;}
.y75{bottom:912.215335px;}
.y26{bottom:914.079707px;}
.y196{bottom:914.812501px;}
.y119{bottom:914.813965px;}
.yb4{bottom:915.517090px;}
.ye{bottom:922.562986px;}
.y186{bottom:927.448240px;}
.y15c{bottom:927.448242px;}
.y1c9{bottom:927.451169px;}
.y3f{bottom:929.855714px;}
.y53{bottom:930.990601px;}
.y214{bottom:940.078125px;}
.y1e7{bottom:940.078126px;}
.ycc{bottom:940.082520px;}
.y173{bottom:940.083982px;}
.y14c{bottom:940.083984px;}
.y140{bottom:940.083987px;}
.y74{bottom:941.695314px;}
.yd{bottom:948.349546px;}
.yee{bottom:949.804688px;}
.y25{bottom:949.876829px;}
.y118{bottom:952.716796px;}
.yb3{bottom:954.719972px;}
.y52{bottom:958.051759px;}
.y185{bottom:965.349609px;}
.y15b{bottom:965.349611px;}
.y1f0{bottom:965.355469px;}
.y73{bottom:971.175294px;}
.yc{bottom:974.136106px;}
.y1b2{bottom:977.982421px;}
.y1a3{bottom:977.982425px;}
.ye2{bottom:977.985351px;}
.ycb{bottom:977.985352px;}
.y1{bottom:979.278811px;}
.y3e{bottom:983.652827px;}
.y24{bottom:985.673951px;}
.yed{bottom:994.517578px;}
.y51{bottom:996.066283px;}
.yb2{bottom:999.432861px;}
.y72{bottom:1000.655274px;}
.y15a{bottom:1003.253907px;}
.y184{bottom:1007.150391px;}
.y172{bottom:1015.886719px;}
.y13f{bottom:1015.886720px;}
.yca{bottom:1015.888184px;}
.y1e6{bottom:1015.892578px;}
.y3d{bottom:1019.449949px;}
.y71{bottom:1030.135255px;}
.yb{bottom:1043.418459px;}
.yec{bottom:1045.054688px;}
.yb1{bottom:1047.639403px;}
.yc9{bottom:1053.791016px;}
.y3c{bottom:1055.247071px;}
.y70{bottom:1059.615235px;}
.h5{height:43.710936px;}
.h9{height:47.920900px;}
.h7{height:48.082032px;}
.hb{height:52.277344px;}
.h4{height:56.824221px;}
.ha{height:60.292967px;}
.h6{height:73.212888px;}
.h8{height:74.059568px;}
.hf{height:77.519531px;}
.he{height:78.416016px;}
.h10{height:78.626953px;}
.h11{height:78.679688px;}
.hd{height:87.128904px;}
.h2{height:100.467771px;}
.h12{height:100.535154px;}
.hc{height:104.554688px;}
.h3{height:113.572270px;}
.h1{height:201.070308px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x5{left:148.500000px;}
.x6{left:162.000000px;}
.x8{left:189.000000px;}
.x7{left:216.000000px;}
.x4{left:282.375000px;}
.x3{left:310.585624px;}
.x2{left:810.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:619.999999pt;}
.ws1{word-spacing:-21.703125pt;}
.ws0{word-spacing:0.000000pt;}
._3e{margin-left:-9.869125pt;}
._b{margin-left:-8.876397pt;}
._2{margin-left:-7.762353pt;}
._1c{margin-left:-6.515548pt;}
._c{margin-left:-5.246348pt;}
._5{margin-left:-3.884466pt;}
._a{margin-left:-2.586835pt;}
._e{margin-left:-1.280337pt;}
._16{width:1.065357pt;}
._9{width:3.904164pt;}
._1f{width:4.853994pt;}
._1{width:7.975763pt;}
._3c{width:8.864747pt;}
._0{width:11.924838pt;}
._2d{width:12.813733pt;}
._8{width:15.377300pt;}
._7{width:16.531394pt;}
._f{width:19.322048pt;}
._6{width:20.606428pt;}
._4{width:23.923840pt;}
._23{width:24.864702pt;}
._3{width:27.931795pt;}
._38{width:28.827185pt;}
._d{width:31.939932pt;}
._34{width:32.874368pt;}
._1e{width:35.788178pt;}
._1d{width:36.778556pt;}
._19{width:39.121853pt;}
._18{width:40.623269pt;}
._17{width:43.905338pt;}
._22{width:44.841785pt;}
._20{width:47.170963pt;}
._21{width:48.861214pt;}
._1b{width:51.993201pt;}
._1a{width:55.967887pt;}
._26{width:56.864529pt;}
._25{width:59.308141pt;}
._15{width:60.464318pt;}
._35{width:63.207125pt;}
._14{width:64.104466pt;}
._13{width:67.875542pt;}
._2c{width:68.834835pt;}
._2b{width:71.203138pt;}
._2a{width:72.875880pt;}
._12{width:75.703410pt;}
._11{width:76.779539pt;}
._10{width:79.637507pt;}
._40{width:80.660649pt;}
._24{width:83.999998pt;}
._36{width:87.950379pt;}
._37{width:88.858461pt;}
._41{width:91.338160pt;}
._3f{width:92.811390pt;}
._3a{width:95.953141pt;}
._3b{width:96.867193pt;}
._29{width:99.217838pt;}
._28{width:100.571193pt;}
._27{width:104.014714pt;}
._30{width:107.276690pt;}
._2f{width:108.872658pt;}
._2e{width:112.044139pt;}
._3d{width:116.304671pt;}
._43{width:119.390610pt;}
._42{width:120.867174pt;}
._33{width:123.654391pt;}
._32{width:124.618096pt;}
._31{width:127.999998pt;}
._46{width:135.217838pt;}
._47{width:136.571191pt;}
._49{width:147.241334pt;}
._48{width:152.867158pt;}
._45{width:160.000011pt;}
._44{width:163.874088pt;}
._39{width:619.999999pt;}
.fs4{font-size:53.333332pt;}
.fs6{font-size:58.666668pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:69.333336pt;}
.fs7{font-size:74.666664pt;}
.fs5{font-size:90.666664pt;}
.fsb{font-size:96.000000pt;}
.fsa{font-size:106.666664pt;}
.fs1{font-size:122.666664pt;}
.fs9{font-size:128.000000pt;}
.fs2{font-size:138.666672pt;}
.fs0{font-size:245.333328pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:101.171222pt;}
.y13e{bottom:105.648433pt;}
.y1c1{bottom:105.651035pt;}
.yae{bottom:107.082036pt;}
.y90{bottom:108.953782pt;}
.y3b{bottom:112.302407pt;}
.y9c{bottom:112.836594pt;}
.y171{bottom:116.880207pt;}
.y6e{bottom:127.375329pt;}
.y156{bottom:128.109371pt;}
.ye1{bottom:128.109372pt;}
.y1c2{bottom:128.109378pt;}
.y116{bottom:128.109379pt;}
.y183{bottom:128.109380pt;}
.yad{bottom:133.286462pt;}
.y8f{bottom:135.158209pt;}
.y9b{bottom:136.890623pt;}
.y1a1{bottom:139.338535pt;}
.y13d{bottom:139.338538pt;}
.y1c0{bottom:139.338540pt;}
.y12d{bottom:139.339847pt;}
.yc8{bottom:139.964845pt;}
.y3a{bottom:144.122061pt;}
.y23{bottom:146.706869pt;}
.y1ff{bottom:150.567695pt;}
.y1dd{bottom:150.567710pt;}
.y1d2{bottom:150.567711pt;}
.y170{bottom:150.570312pt;}
.y6d{bottom:153.580076pt;}
.yac{bottom:159.490889pt;}
.y8e{bottom:161.362636pt;}
.y1ef{bottom:161.796872pt;}
.y1e5{bottom:161.796874pt;}
.y20d{bottom:161.796880pt;}
.ye0{bottom:161.800778pt;}
.y115{bottom:161.800786pt;}
.y155{bottom:161.802074pt;}
.y14b{bottom:161.802085pt;}
.y176{bottom:161.802087pt;}
.y182{bottom:161.802091pt;}
.y9a{bottom:165.245447pt;}
.ya{bottom:167.737955pt;}
.y102{bottom:169.287765pt;}
.y13c{bottom:173.031245pt;}
.y1bf{bottom:173.031251pt;}
.y12c{bottom:173.031253pt;}
.yc7{bottom:173.656245pt;}
.y39{bottom:175.941733pt;}
.y6c{bottom:179.784502pt;}
.y1dc{bottom:184.260413pt;}
.y16f{bottom:184.260418pt;}
.y1fe{bottom:184.265620pt;}
.yab{bottom:185.695316pt;}
.y8d{bottom:187.567062pt;}
.y154{bottom:195.492180pt;}
.ydf{bottom:195.492186pt;}
.y14a{bottom:195.492189pt;}
.y10f{bottom:195.492192pt;}
.y12e{bottom:195.492193pt;}
.y1df{bottom:195.494783pt;}
.y1b6{bottom:195.494785pt;}
.y1b1{bottom:195.494792pt;}
.y1d3{bottom:195.494794pt;}
.y1aa{bottom:195.494798pt;}
.y22{bottom:201.628254pt;}
.y101{bottom:202.979172pt;}
.y6b{bottom:205.988609pt;}
.y12b{bottom:206.722659pt;}
.y13b{bottom:206.723952pt;}
.y1a0{bottom:206.723953pt;}
.yc6{bottom:207.347655pt;}
.y38{bottom:207.761389pt;}
.yaa{bottom:211.899742pt;}
.y8c{bottom:213.771489pt;}
.y1fd{bottom:217.953120pt;}
.y16e{bottom:217.953125pt;}
.y1d1{bottom:217.953131pt;}
.y21{bottom:224.549641pt;}
.y153{bottom:229.182285pt;}
.y1c8{bottom:229.182287pt;}
.y1b0{bottom:229.182291pt;}
.y180{bottom:229.182295pt;}
.y149{bottom:229.182298pt;}
.yde{bottom:229.183592pt;}
.y10e{bottom:229.183599pt;}
.y212{bottom:229.187494pt;}
.y1e4{bottom:229.187498pt;}
.y1ee{bottom:229.187505pt;}
.y6a{bottom:232.193356pt;}
.y100{bottom:236.670578pt;}
.y50{bottom:237.604170pt;}
.ya9{bottom:238.104169pt;}
.y37{bottom:239.581053pt;}
.y8b{bottom:239.975916pt;}
.y1be{bottom:240.411458pt;}
.y13a{bottom:240.414059pt;}
.y12a{bottom:240.414066pt;}
.yc5{bottom:241.039060pt;}
.y9{bottom:244.043134pt;}
.y20{bottom:247.471027pt;}
.y1fc{bottom:251.640620pt;}
.y1db{bottom:251.645831pt;}
.y18e{bottom:251.645833pt;}
.y16d{bottom:251.645838pt;}
.y69{bottom:258.397782pt;}
.y1af{bottom:262.874994pt;}
.y195{bottom:262.874998pt;}
.ydd{bottom:262.874999pt;}
.y213{bottom:262.875000pt;}
.y10d{bottom:262.875005pt;}
.ya8{bottom:264.308596pt;}
.y8a{bottom:266.180342pt;}
.yff{bottom:270.361973pt;}
.y36{bottom:271.400717pt;}
.y139{bottom:274.104165pt;}
.y129{bottom:274.105472pt;}
.yc4{bottom:274.730466pt;}
.y68{bottom:284.601889pt;}
.y18d{bottom:285.335935pt;}
.y16c{bottom:285.335939pt;}
.y1da{bottom:285.338538pt;}
.y1d0{bottom:285.338545pt;}
.y4f{bottom:285.423826pt;}
.ya7{bottom:290.513022pt;}
.y218{bottom:291.094398pt;}
.y89{bottom:292.384769pt;}
.y1e3{bottom:296.562498pt;}
.y20c{bottom:296.562500pt;}
.ydc{bottom:296.566405pt;}
.y114{bottom:296.566407pt;}
.y10c{bottom:296.566412pt;}
.y194{bottom:296.567701pt;}
.y1ae{bottom:296.567705pt;}
.y148{bottom:296.567712pt;}
.y175{bottom:296.567713pt;}
.y1d4{bottom:296.567715pt;}
.y1f{bottom:302.392415pt;}
.yfe{bottom:304.053379pt;}
.y138{bottom:307.796872pt;}
.y1bd{bottom:307.796873pt;}
.y128{bottom:307.796879pt;}
.yc3{bottom:308.421872pt;}
.y67{bottom:310.806636pt;}
.y8{bottom:316.596360pt;}
.ya6{bottom:316.717449pt;}
.y4e{bottom:317.243482pt;}
.y88{bottom:318.589196pt;}
.y1d9{bottom:319.026038pt;}
.y16b{bottom:319.026045pt;}
.y1fb{bottom:319.031245pt;}
.y35{bottom:319.220373pt;}
.y1e{bottom:325.313802pt;}
.y1ad{bottom:330.255205pt;}
.y20b{bottom:330.255207pt;}
.y217{bottom:330.255211pt;}
.y1a9{bottom:330.255217pt;}
.y130{bottom:330.257805pt;}
.y152{bottom:330.257807pt;}
.yeb{bottom:330.257812pt;}
.ydb{bottom:330.257815pt;}
.y10b{bottom:330.257818pt;}
.y66{bottom:335.278647pt;}
.yfd{bottom:337.744786pt;}
.y127{bottom:341.488285pt;}
.y137{bottom:341.489581pt;}
.y1bc{bottom:341.489584pt;}
.yc2{bottom:342.113279pt;}
.ya5{bottom:342.921876pt;}
.y87{bottom:344.793622pt;}
.y1d{bottom:348.235188pt;}
.y4d{bottom:349.063146pt;}
.y34{bottom:351.040033pt;}
.y1d8{bottom:352.718741pt;}
.y1fa{bottom:352.718742pt;}
.y16a{bottom:352.718752pt;}
.y1cf{bottom:352.718758pt;}
.y65{bottom:359.332357pt;}
.y151{bottom:363.947909pt;}
.y147{bottom:363.947911pt;}
.y17f{bottom:363.947913pt;}
.y1a8{bottom:363.947920pt;}
.y17b{bottom:363.947924pt;}
.y10a{bottom:363.949212pt;}
.yea{bottom:363.949218pt;}
.yda{bottom:363.949220pt;}
.y206{bottom:363.953118pt;}
.y1e2{bottom:363.953125pt;}
.y1ed{bottom:363.953131pt;}
.ya4{bottom:369.126302pt;}
.y86{bottom:370.998049pt;}
.y1c{bottom:371.156575pt;}
.yfc{bottom:371.436192pt;}
.y19f{bottom:375.179682pt;}
.y126{bottom:375.179685pt;}
.y136{bottom:375.179687pt;}
.y1bb{bottom:375.182287pt;}
.yc1{bottom:375.804685pt;}
.y4c{bottom:380.882810pt;}
.y33{bottom:382.859687pt;}
.y1f9{bottom:386.406247pt;}
.y1d7{bottom:386.411452pt;}
.y169{bottom:386.411458pt;}
.y1ce{bottom:386.411461pt;}
.y64{bottom:387.687500pt;}
.y7{bottom:389.149574pt;}
.y1b{bottom:394.077960pt;}
.ya3{bottom:395.330729pt;}
.y85{bottom:397.202476pt;}
.y109{bottom:397.640618pt;}
.ye9{bottom:397.640620pt;}
.y17e{bottom:397.640624pt;}
.yd9{bottom:397.640626pt;}
.y17a{bottom:397.640631pt;}
.yfb{bottom:405.127605pt;}
.y135{bottom:408.869792pt;}
.y125{bottom:408.871098pt;}
.yc0{bottom:409.496098pt;}
.y63{bottom:410.009116pt;}
.y32{bottom:414.679359pt;}
.ya2{bottom:419.802741pt;}
.y1d6{bottom:420.098952pt;}
.y1f8{bottom:420.098958pt;}
.y1cd{bottom:420.098965pt;}
.y168{bottom:420.101565pt;}
.y84{bottom:423.406902pt;}
.y4b{bottom:428.702480pt;}
.y205{bottom:431.328125pt;}
.y1e1{bottom:431.328127pt;}
.ye8{bottom:431.332026pt;}
.yd8{bottom:431.332032pt;}
.y146{bottom:431.333327pt;}
.y178{bottom:431.333331pt;}
.y179{bottom:431.333338pt;}
.y62{bottom:436.213222pt;}
.yfa{bottom:438.819005pt;}
.y124{bottom:442.562499pt;}
.ybf{bottom:443.187498pt;}
.ya1{bottom:443.856770pt;}
.y31{bottom:446.499015pt;}
.y1a{bottom:448.999348pt;}
.y83{bottom:449.611329pt;}
.y167{bottom:453.791671pt;}
.y1f7{bottom:453.796872pt;}
.y4a{bottom:460.522140pt;}
.y6{bottom:461.702800pt;}
.y61{bottom:462.417969pt;}
.y192{bottom:465.023429pt;}
.ye7{bottom:465.023432pt;}
.y17d{bottom:465.023433pt;}
.yd7{bottom:465.023439pt;}
.y1c7{bottom:465.026034pt;}
.y1c6{bottom:465.026038pt;}
.y20a{bottom:465.026041pt;}
.y1a7{bottom:465.026045pt;}
.y19{bottom:471.920734pt;}
.yf9{bottom:472.510412pt;}
.ya0{bottom:472.789057pt;}
.y82{bottom:475.815756pt;}
.y123{bottom:476.253906pt;}
.y19e{bottom:476.255205pt;}
.y134{bottom:476.255207pt;}
.ybe{bottom:476.878905pt;}
.y30{bottom:478.318679pt;}
.y1f6{bottom:487.484372pt;}
.y166{bottom:487.484378pt;}
.y60{bottom:488.622396pt;}
.y49{bottom:492.341794pt;}
.y9f{bottom:496.404942pt;}
.y193{bottom:498.713535pt;}
.y145{bottom:498.713538pt;}
.y150{bottom:498.713540pt;}
.y1a6{bottom:498.713542pt;}
.y1ac{bottom:498.713544pt;}
.ye6{bottom:498.714839pt;}
.yd6{bottom:498.714845pt;}
.y216{bottom:498.718745pt;}
.y1ec{bottom:498.718747pt;}
.y1e0{bottom:498.718752pt;}
.y81{bottom:500.287754pt;}
.y99{bottom:502.020182pt;}
.yf8{bottom:506.201822pt;}
.y1ba{bottom:509.942711pt;}
.y122{bottom:509.945312pt;}
.y2f{bottom:510.138343pt;}
.ybd{bottom:510.570315pt;}
.y5f{bottom:514.826502pt;}
.y1f5{bottom:521.171872pt;}
.y165{bottom:521.177085pt;}
.y9e{bottom:522.609369pt;}
.y48{bottom:524.161466pt;}
.y80{bottom:524.341797pt;}
.y18{bottom:526.842121pt;}
.y98{bottom:528.224609pt;}
.ye5{bottom:532.406245pt;}
.y17c{bottom:532.406247pt;}
.y1c5{bottom:532.406248pt;}
.y14f{bottom:532.406251pt;}
.y108{bottom:532.406252pt;}
.yd5{bottom:532.406255pt;}
.yf7{bottom:539.893232pt;}
.y5e{bottom:541.031249pt;}
.y19d{bottom:543.635418pt;}
.y133{bottom:543.636719pt;}
.y121{bottom:543.636725pt;}
.ybc{bottom:544.261725pt;}
.y5{bottom:546.044272pt;}
.y9d{bottom:548.813809pt;}
.y17{bottom:549.763508pt;}
.y7f{bottom:552.696620pt;}
.y97{bottom:554.429036pt;}
.y164{bottom:554.867192pt;}
.y1cc{bottom:554.869792pt;}
.y47{bottom:555.981122pt;}
.y2e{bottom:557.958003pt;}
.y1eb{bottom:566.093751pt;}
.y211{bottom:566.093753pt;}
.y117{bottom:566.097653pt;}
.y107{bottom:566.097658pt;}
.yd4{bottom:566.097660pt;}
.y181{bottom:566.098952pt;}
.y14e{bottom:566.098954pt;}
.y144{bottom:566.098958pt;}
.y5d{bottom:567.235676pt;}
.y16{bottom:572.684894pt;}
.yf6{bottom:573.584632pt;}
.y7e{bottom:575.018236pt;}
.y120{bottom:577.328125pt;}
.ybb{bottom:577.953125pt;}
.y96{bottom:580.633462pt;}
.y46{bottom:587.800786pt;}
.y163{bottom:588.557285pt;}
.y18c{bottom:588.557291pt;}
.y1f4{bottom:588.562498pt;}
.y2d{bottom:589.777673pt;}
.y5c{bottom:593.439782pt;}
.y1c4{bottom:599.786453pt;}
.y1a5{bottom:599.786458pt;}
.y210{bottom:599.786460pt;}
.y209{bottom:599.786464pt;}
.y177{bottom:599.789055pt;}
.y106{bottom:599.789058pt;}
.y113{bottom:599.789060pt;}
.yd3{bottom:599.789066pt;}
.y7d{bottom:601.222662pt;}
.y95{bottom:606.837889pt;}
.yf5{bottom:607.276042pt;}
.y132{bottom:611.019532pt;}
.y11f{bottom:611.019535pt;}
.y19c{bottom:611.020824pt;}
.y1b9{bottom:611.020832pt;}
.yba{bottom:611.644535pt;}
.y45{bottom:619.620450pt;}
.y5b{bottom:619.644529pt;}
.y2c{bottom:621.597313pt;}
.y18b{bottom:622.249991pt;}
.y162{bottom:622.250000pt;}
.y1cb{bottom:622.250005pt;}
.y4{bottom:627.150722pt;}
.y7c{bottom:627.427089pt;}
.y15{bottom:627.606281pt;}
.y94{bottom:633.042316pt;}
.y1b5{bottom:633.479160pt;}
.y159{bottom:633.479162pt;}
.y143{bottom:633.479165pt;}
.y1a2{bottom:633.479167pt;}
.y112{bottom:633.480466pt;}
.yd2{bottom:633.480472pt;}
.y12f{bottom:633.480473pt;}
.y1ea{bottom:633.484371pt;}
.y208{bottom:633.484378pt;}
.y204{bottom:633.484380pt;}
.yf4{bottom:640.967447pt;}
.y19b{bottom:644.710934pt;}
.y131{bottom:644.710938pt;}
.y11e{bottom:644.710940pt;}
.y1b8{bottom:644.713544pt;}
.yb9{bottom:645.335940pt;}
.y5a{bottom:645.848956pt;}
.y14{bottom:650.527668pt;}
.y2b{bottom:653.416993pt;}
.y7b{bottom:653.631516pt;}
.y1f3{bottom:655.937500pt;}
.y161{bottom:655.942700pt;}
.y18a{bottom:655.942711pt;}
.y93{bottom:657.514327pt;}
.y1b4{bottom:667.171871pt;}
.y111{bottom:667.171872pt;}
.y1de{bottom:667.171873pt;}
.y191{bottom:667.171878pt;}
.yd1{bottom:667.171879pt;}
.y203{bottom:667.171880pt;}
.y44{bottom:667.440102pt;}
.y59{bottom:672.053062pt;}
.y13{bottom:673.449054pt;}
.yf3{bottom:674.658853pt;}
.y19a{bottom:678.401044pt;}
.y11d{bottom:678.402346pt;}
.yb8{bottom:679.027346pt;}
.y7a{bottom:679.835942pt;}
.y92{bottom:681.568357pt;}
.y2a{bottom:685.236653pt;}
.y1ca{bottom:689.630200pt;}
.y160{bottom:689.632810pt;}
.y12{bottom:696.370441pt;}
.y58{bottom:698.257809pt;}
.y43{bottom:699.259756pt;}
.y1e9{bottom:700.859367pt;}
.y20f{bottom:700.859373pt;}
.y207{bottom:700.859378pt;}
.y202{bottom:700.859380pt;}
.y110{bottom:700.863279pt;}
.yd0{bottom:700.863285pt;}
.y14d{bottom:700.864578pt;}
.y158{bottom:700.864580pt;}
.y190{bottom:700.864583pt;}
.y142{bottom:700.864584pt;}
.y79{bottom:706.040369pt;}
.y3{bottom:708.257162pt;}
.yf2{bottom:708.350259pt;}
.y91{bottom:709.923181pt;}
.y199{bottom:712.093749pt;}
.y11c{bottom:712.093752pt;}
.yb7{bottom:712.718752pt;}
.y29{bottom:717.056313pt;}
.y11{bottom:719.291827pt;}
.y189{bottom:723.322916pt;}
.y15f{bottom:723.322920pt;}
.y1f2{bottom:723.328120pt;}
.y57{bottom:724.462236pt;}
.y42{bottom:731.079428pt;}
.y78{bottom:732.244796pt;}
.ycf{bottom:734.554685pt;}
.y105{bottom:734.554687pt;}
.ye4{bottom:734.554692pt;}
.y1b3{bottom:734.557285pt;}
.y1a4{bottom:734.557287pt;}
.y1ab{bottom:734.557292pt;}
.y1d5{bottom:734.557294pt;}
.y201{bottom:734.557298pt;}
.yf1{bottom:742.041666pt;}
.y11b{bottom:745.785159pt;}
.y198{bottom:745.786460pt;}
.yb6{bottom:746.410159pt;}
.y28{bottom:748.875967pt;}
.y56{bottom:750.666342pt;}
.y15e{bottom:757.015625pt;}
.y188{bottom:757.015627pt;}
.y77{bottom:758.449222pt;}
.yb0{bottom:760.182290pt;}
.y41{bottom:762.899084pt;}
.y157{bottom:768.244790pt;}
.y141{bottom:768.244791pt;}
.y18f{bottom:768.244794pt;}
.yce{bottom:768.246092pt;}
.y104{bottom:768.246093pt;}
.ye3{bottom:768.246098pt;}
.y1e8{bottom:768.249997pt;}
.y20e{bottom:768.249998pt;}
.y215{bottom:768.250000pt;}
.y200{bottom:768.250005pt;}
.y10{bottom:774.213215pt;}
.yf0{bottom:775.733072pt;}
.y55{bottom:776.871089pt;}
.y1b7{bottom:779.473960pt;}
.y197{bottom:779.476561pt;}
.y11a{bottom:779.476565pt;}
.yb5{bottom:780.101565pt;}
.y27{bottom:780.695639pt;}
.y76{bottom:784.653649pt;}
.yaf{bottom:788.536460pt;}
.y2{bottom:789.363609pt;}
.y1f1{bottom:790.703125pt;}
.y187{bottom:790.708330pt;}
.y15d{bottom:790.708336pt;}
.y40{bottom:794.718748pt;}
.yf{bottom:797.134602pt;}
.y1c3{bottom:801.937497pt;}
.ycd{bottom:801.937498pt;}
.y103{bottom:801.937500pt;}
.y174{bottom:801.937503pt;}
.y54{bottom:803.075516pt;}
.yef{bottom:809.424480pt;}
.y75{bottom:810.858076pt;}
.y26{bottom:812.515295pt;}
.y196{bottom:813.166667pt;}
.y119{bottom:813.167969pt;}
.yb4{bottom:813.792969pt;}
.ye{bottom:820.055988pt;}
.y186{bottom:824.398436pt;}
.y15c{bottom:824.398437pt;}
.y1c9{bottom:824.401039pt;}
.y3f{bottom:826.538413pt;}
.y53{bottom:827.547201pt;}
.y214{bottom:835.625000pt;}
.y1e7{bottom:835.625001pt;}
.ycc{bottom:835.628906pt;}
.y173{bottom:835.630206pt;}
.y14c{bottom:835.630208pt;}
.y140{bottom:835.630211pt;}
.y74{bottom:837.062501pt;}
.yd{bottom:842.977375pt;}
.yee{bottom:844.270833pt;}
.y25{bottom:844.334959pt;}
.y118{bottom:846.859374pt;}
.yb3{bottom:848.639975pt;}
.y52{bottom:851.601563pt;}
.y185{bottom:858.088541pt;}
.y15b{bottom:858.088543pt;}
.y1f0{bottom:858.093750pt;}
.y73{bottom:863.266928pt;}
.yc{bottom:865.898760pt;}
.y1b2{bottom:869.317708pt;}
.y1a3{bottom:869.317711pt;}
.ye2{bottom:869.320312pt;}
.ycb{bottom:869.320313pt;}
.y1{bottom:870.470054pt;}
.y3e{bottom:874.358068pt;}
.y24{bottom:876.154623pt;}
.yed{bottom:884.015625pt;}
.y51{bottom:885.392252pt;}
.yb2{bottom:888.384765pt;}
.y72{bottom:889.471354pt;}
.y15a{bottom:891.781250pt;}
.y184{bottom:895.244792pt;}
.y172{bottom:903.010417pt;}
.y13f{bottom:903.010418pt;}
.yca{bottom:903.011719pt;}
.y1e6{bottom:903.015625pt;}
.y3d{bottom:906.177732pt;}
.y71{bottom:915.675782pt;}
.yb{bottom:927.483075pt;}
.yec{bottom:928.937500pt;}
.yb1{bottom:931.235025pt;}
.yc9{bottom:936.703125pt;}
.y3c{bottom:937.997396pt;}
.y70{bottom:941.880209pt;}
.h5{height:38.854166pt;}
.h9{height:42.596355pt;}
.h7{height:42.739584pt;}
.hb{height:46.468750pt;}
.h4{height:50.510419pt;}
.ha{height:53.593748pt;}
.h6{height:65.078123pt;}
.h8{height:65.830727pt;}
.hf{height:68.906250pt;}
.he{height:69.703125pt;}
.h10{height:69.890625pt;}
.h11{height:69.937500pt;}
.hd{height:77.447915pt;}
.h2{height:89.304686pt;}
.h12{height:89.364581pt;}
.hc{height:92.937500pt;}
.h3{height:100.953129pt;}
.h1{height:178.729163pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x5{left:132.000000pt;}
.x6{left:144.000000pt;}
.x8{left:168.000000pt;}
.x7{left:192.000000pt;}
.x4{left:251.000000pt;}
.x3{left:276.076110pt;}
.x2{left:720.000000pt;}
}




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