
    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_115ebabbb73c68f0f11a98a5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.062000;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_946fe4493527c2b969ef89e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.079000;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_9739367d8322d956cc0a7c05.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.138000;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_61a85aa4e400a50204cd1ed0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.062000;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_171067030f57043439b8d0fe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.062000;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_db700cc078f2ea0d69d8c6ae.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_de40b43b1cbc84e21c8954a1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8be8fccbc56b1176acd6719b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.079000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d38eb47d895f7d95d4d3186e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.123000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_20dd7fa26ee1c1f9658d3d89.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.968000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d086faf3544309177ec2015c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.079000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_65e60838187fd44d108015f3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.101000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2021ff552c51d459384bbf28.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.123000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-20.992499px;}
.ws5{word-spacing:-18.339659px;}
.ws1{word-spacing:-17.999999px;}
.ws2{word-spacing:-16.492499px;}
.ws7{word-spacing:-14.996249px;}
.ws3{word-spacing:-12.000262px;}
.ws9{word-spacing:-10.500723px;}
.ws6{word-spacing:-6.993414px;}
.ws8{word-spacing:-4.667118px;}
.ws4{word-spacing:0.000000px;}
._1e{margin-left:-1.000112px;}
._2{width:1.869395px;}
._5{width:3.168703px;}
._7{width:4.547207px;}
._0{width:6.041771px;}
._6{width:7.395208px;}
._f{width:8.512391px;}
._b{width:9.892454px;}
._1{width:11.135578px;}
._17{width:12.433923px;}
._10{width:14.298811px;}
._16{width:15.333567px;}
._9{width:17.557680px;}
._4{width:18.879504px;}
._3{width:20.684014px;}
._8{width:21.992745px;}
._21{width:23.436392px;}
._13{width:24.948992px;}
._1a{width:26.166984px;}
._26{width:27.373254px;}
._18{width:28.954135px;}
._d{width:30.602596px;}
._e{width:32.276427px;}
._15{width:33.419801px;}
._11{width:35.048683px;}
._27{width:36.257367px;}
._12{width:37.447109px;}
._23{width:40.141511px;}
._1c{width:41.354832px;}
._2b{width:42.743490px;}
._20{width:44.201208px;}
._19{width:45.420534px;}
._14{width:47.522995px;}
._24{width:48.980404px;}
._a{width:50.126246px;}
._29{width:51.186612px;}
._2a{width:52.228789px;}
._1b{width:54.834415px;}
._25{width:56.019430px;}
._1f{width:57.197569px;}
._1d{width:59.269264px;}
._30{width:62.079492px;}
._2c{width:63.401118px;}
._22{width:67.339678px;}
._2e{width:75.278564px;}
._c{width:85.098624px;}
._2f{width:88.910289px;}
._28{width:93.799809px;}
._2d{width:100.180996px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,76,62);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.668471px;}
.fs5{font-size:27.973655px;}
.fs8{font-size:30.291504px;}
.fs9{font-size:42.002892px;}
.fs3{font-size:48.001047px;}
.fs4{font-size:53.999998px;}
.fs6{font-size:59.984997px;}
.fs0{font-size:65.969996px;}
.fs2{font-size:71.999997px;}
.fs1{font-size:83.969997px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y14e{bottom:5.686134px;}
.y149{bottom:9.495020px;}
.y143{bottom:15.310622px;}
.y14d{bottom:15.783302px;}
.y14c{bottom:25.880469px;}
.yd1{bottom:30.443903px;}
.y142{bottom:33.659749px;}
.y148{bottom:34.532562px;}
.y14b{bottom:35.977637px;}
.y14a{bottom:46.074805px;}
.y141{bottom:50.791392px;}
.yd0{bottom:52.943902px;}
.y54{bottom:65.609895px;}
.ycf{bottom:75.443901px;}
.y2d{bottom:88.720664px;}
.yce{bottom:97.943900px;}
.yc3{bottom:99.654008px;}
.y2c{bottom:111.220663px;}
.y7d{bottom:117.165745px;}
.y14f{bottom:120.255428px;}
.ycd{bottom:120.443899px;}
.yc2{bottom:122.154007px;}
.y2b{bottom:133.720662px;}
.ycc{bottom:142.943898px;}
.yc1{bottom:144.654006px;}
.y145{bottom:154.585002px;}
.y12d{bottom:155.511858px;}
.y2a{bottom:156.220661px;}
.y98{bottom:159.327497px;}
.yc0{bottom:167.154005px;}
.yf1{bottom:176.457592px;}
.y12c{bottom:178.011857px;}
.y29{bottom:178.720661px;}
.y97{bottom:181.827496px;}
.y146{bottom:184.059928px;}
.ybf{bottom:189.654004px;}
.y70{bottom:191.505844px;}
.yf0{bottom:192.457941px;}
.y12b{bottom:200.511856px;}
.y28{bottom:201.220660px;}
.y96{bottom:204.327495px;}
.y1e{bottom:206.463051px;}
.ybe{bottom:212.154003px;}
.y6f{bottom:214.005843px;}
.y12a{bottom:223.011855px;}
.y27{bottom:223.720659px;}
.y95{bottom:226.827495px;}
.y1d{bottom:228.963050px;}
.ybd{bottom:234.654002px;}
.y6e{bottom:236.505842px;}
.y144{bottom:240.952742px;}
.y129{bottom:245.511854px;}
.y26{bottom:246.220658px;}
.y94{bottom:249.327494px;}
.y1c{bottom:251.463050px;}
.y58{bottom:253.680829px;}
.ybc{bottom:257.154001px;}
.y6d{bottom:259.005841px;}
.y4c{bottom:259.089145px;}
.y128{bottom:268.011853px;}
.y25{bottom:268.720657px;}
.y57{bottom:269.681178px;}
.y93{bottom:271.827493px;}
.y1b{bottom:273.963049px;}
.y147{bottom:275.270533px;}
.ybb{bottom:279.654000px;}
.ye8{bottom:280.003344px;}
.y6c{bottom:281.505840px;}
.y4b{bottom:281.589144px;}
.y127{bottom:290.511852px;}
.y24{bottom:291.220656px;}
.y92{bottom:294.327492px;}
.y1a{bottom:296.463048px;}
.yba{bottom:302.153999px;}
.ye7{bottom:302.503343px;}
.y6b{bottom:304.005839px;}
.y4a{bottom:304.089143px;}
.y126{bottom:313.011851px;}
.y23{bottom:313.720655px;}
.y91{bottom:316.827491px;}
.y19{bottom:318.963047px;}
.yb9{bottom:324.653998px;}
.ye6{bottom:325.003342px;}
.y13d{bottom:325.120108px;}
.y49{bottom:326.589142px;}
.y125{bottom:335.511850px;}
.y22{bottom:336.220654px;}
.y90{bottom:339.327490px;}
.y18{bottom:341.463046px;}
.y5a{bottom:345.559018px;}
.yb8{bottom:347.153998px;}
.ye5{bottom:347.503342px;}
.y13c{bottom:347.620108px;}
.y48{bottom:349.089141px;}
.y53{bottom:356.476527px;}
.y124{bottom:358.011849px;}
.y21{bottom:358.720653px;}
.y8f{bottom:361.827489px;}
.y17{bottom:363.963045px;}
.yb7{bottom:369.653997px;}
.ye4{bottom:370.003341px;}
.y13b{bottom:370.120107px;}
.y47{bottom:371.589141px;}
.y123{bottom:380.511848px;}
.y8e{bottom:384.327488px;}
.y77{bottom:385.678537px;}
.y16{bottom:386.463044px;}
.ya4{bottom:388.054460px;}
.y15{bottom:388.227151px;}
.yb6{bottom:392.153996px;}
.ye3{bottom:392.503340px;}
.y13a{bottom:392.620106px;}
.y46{bottom:394.089140px;}
.y122{bottom:403.011847px;}
.y14{bottom:404.227501px;}
.y8d{bottom:406.827487px;}
.ya3{bottom:410.554459px;}
.ye2{bottom:415.003339px;}
.y139{bottom:415.120105px;}
.y45{bottom:416.589139px;}
.y13{bottom:421.246104px;}
.y121{bottom:425.511846px;}
.yef{bottom:429.042762px;}
.y8c{bottom:429.327486px;}
.ya2{bottom:433.054458px;}
.ye1{bottom:437.503338px;}
.y138{bottom:437.620104px;}
.yee{bottom:445.043111px;}
.y31{bottom:445.767245px;}
.y120{bottom:448.011845px;}
.y8b{bottom:451.827485px;}
.ya1{bottom:455.554457px;}
.ye0{bottom:460.003337px;}
.y137{bottom:460.120103px;}
.y11f{bottom:470.511844px;}
.y8a{bottom:474.327484px;}
.ya0{bottom:478.054456px;}
.ydf{bottom:482.503336px;}
.y136{bottom:482.620102px;}
.y52{bottom:487.011765px;}
.y11e{bottom:493.011843px;}
.y6a{bottom:495.667553px;}
.y89{bottom:496.827483px;}
.y9f{bottom:500.554455px;}
.y135{bottom:505.120101px;}
.y11d{bottom:515.511843px;}
.y69{bottom:518.167552px;}
.yec{bottom:518.431406px;}
.y88{bottom:519.327482px;}
.y56{bottom:522.459704px;}
.y9e{bottom:523.054454px;}
.yde{bottom:524.702703px;}
.y134{bottom:527.620100px;}
.y11c{bottom:538.011842px;}
.y68{bottom:540.667551px;}
.y9d{bottom:545.554453px;}
.ydd{bottom:547.202702px;}
.ya5{bottom:548.505697px;}
.y133{bottom:550.120099px;}
.ycb{bottom:554.356471px;}
.y11b{bottom:560.511841px;}
.y67{bottom:563.167550px;}
.y9c{bottom:568.054452px;}
.ydc{bottom:569.702701px;}
.y132{bottom:572.620098px;}
.yca{bottom:576.856470px;}
.y66{bottom:585.667549px;}
.y9b{bottom:590.554451px;}
.ydb{bottom:592.202701px;}
.y87{bottom:593.182682px;}
.y131{bottom:595.120097px;}
.yc9{bottom:599.356469px;}
.y13f{bottom:602.382827px;}
.y65{bottom:608.167548px;}
.y9a{bottom:613.054450px;}
.yda{bottom:614.702700px;}
.y86{bottom:615.682681px;}
.y130{bottom:617.620096px;}
.y13e{bottom:618.383176px;}
.yc8{bottom:621.856468px;}
.y51{bottom:625.562619px;}
.y64{bottom:630.667547px;}
.y99{bottom:635.554450px;}
.yd9{bottom:637.202699px;}
.y85{bottom:638.182680px;}
.y12f{bottom:640.120095px;}
.yc7{bottom:644.356467px;}
.y63{bottom:653.167546px;}
.y20{bottom:657.975339px;}
.yd8{bottom:659.702698px;}
.y84{bottom:660.682679px;}
.y12e{bottom:662.620094px;}
.yc6{bottom:666.856466px;}
.ya6{bottom:672.607678px;}
.y62{bottom:675.667545px;}
.y1f{bottom:680.475338px;}
.yd7{bottom:682.202697px;}
.y83{bottom:683.182678px;}
.yc5{bottom:689.356465px;}
.y140{bottom:695.994933px;}
.y61{bottom:698.167544px;}
.y12{bottom:702.975337px;}
.yd6{bottom:704.702696px;}
.y82{bottom:705.682677px;}
.y7c{bottom:708.379575px;}
.yc4{bottom:711.856464px;}
.y60{bottom:720.667543px;}
.y11{bottom:725.475336px;}
.yd5{bottom:727.202695px;}
.y81{bottom:728.182676px;}
.yf3{bottom:742.998907px;}
.y5f{bottom:743.167542px;}
.y11a{bottom:745.324083px;}
.y10{bottom:747.975335px;}
.yd4{bottom:749.702694px;}
.y80{bottom:750.682675px;}
.y106{bottom:756.625069px;}
.yf2{bottom:758.999256px;}
.y5e{bottom:765.667541px;}
.y119{bottom:767.824082px;}
.yf{bottom:770.475334px;}
.yd3{bottom:772.202693px;}
.y7f{bottom:773.182674px;}
.y76{bottom:778.608626px;}
.y105{bottom:779.125068px;}
.y5d{bottom:788.167540px;}
.y118{bottom:790.324081px;}
.ye{bottom:792.975333px;}
.yd2{bottom:794.702692px;}
.y75{bottom:801.108625px;}
.y104{bottom:801.625067px;}
.y7e{bottom:802.105498px;}
.y5c{bottom:810.667539px;}
.y117{bottom:812.824080px;}
.y74{bottom:823.608624px;}
.y103{bottom:824.125066px;}
.y44{bottom:824.796045px;}
.yeb{bottom:825.009046px;}
.yd{bottom:830.920703px;}
.y5b{bottom:833.167538px;}
.y116{bottom:835.324079px;}
.y7a{bottom:840.755828px;}
.y73{bottom:846.108624px;}
.y102{bottom:846.625065px;}
.y43{bottom:847.296044px;}
.yea{bottom:849.759045px;}
.yb2{bottom:851.432451px;}
.yc{bottom:855.670702px;}
.y79{bottom:856.756177px;}
.y115{bottom:857.824078px;}
.y59{bottom:864.595688px;}
.y72{bottom:868.608623px;}
.y101{bottom:869.125064px;}
.y42{bottom:869.796043px;}
.y78{bottom:872.756526px;}
.yb1{bottom:873.932450px;}
.y114{bottom:880.324077px;}
.yb5{bottom:889.059030px;}
.y71{bottom:891.108622px;}
.y100{bottom:891.625063px;}
.y41{bottom:892.296042px;}
.yb0{bottom:896.432449px;}
.y113{bottom:902.824076px;}
.y55{bottom:904.994543px;}
.yb4{bottom:911.559029px;}
.y9{bottom:912.093744px;}
.y3d{bottom:913.608621px;}
.yff{bottom:914.125062px;}
.y40{bottom:914.796041px;}
.yaf{bottom:918.932448px;}
.y112{bottom:925.324075px;}
.yb3{bottom:934.059028px;}
.y8{bottom:934.593743px;}
.y3c{bottom:936.108620px;}
.yfe{bottom:936.625061px;}
.y3f{bottom:937.296040px;}
.yae{bottom:941.432447px;}
.y111{bottom:947.824074px;}
.y7b{bottom:950.723483px;}
.y7{bottom:957.093743px;}
.y3b{bottom:958.608619px;}
.yfd{bottom:959.125060px;}
.y3e{bottom:959.796039px;}
.yad{bottom:963.932446px;}
.ye9{bottom:964.007143px;}
.y110{bottom:970.324073px;}
.y6{bottom:979.593742px;}
.y3a{bottom:981.108618px;}
.yfc{bottom:981.625059px;}
.yac{bottom:986.432445px;}
.y10f{bottom:992.824072px;}
.y30{bottom:993.474232px;}
.y5{bottom:1002.093741px;}
.y39{bottom:1003.608617px;}
.yfb{bottom:1004.125059px;}
.yab{bottom:1008.932444px;}
.y10e{bottom:1015.324071px;}
.y4{bottom:1024.593740px;}
.y38{bottom:1026.108616px;}
.yfa{bottom:1026.625058px;}
.yaa{bottom:1031.432443px;}
.y50{bottom:1035.898891px;}
.y10d{bottom:1037.824070px;}
.y3{bottom:1047.093739px;}
.y37{bottom:1048.608615px;}
.yf9{bottom:1049.125057px;}
.ya9{bottom:1053.932442px;}
.y4f{bottom:1058.398890px;}
.y10c{bottom:1060.324069px;}
.y2{bottom:1069.593738px;}
.y36{bottom:1071.108614px;}
.yf8{bottom:1071.625056px;}
.ya8{bottom:1076.432442px;}
.y10b{bottom:1082.824068px;}
.y35{bottom:1093.608613px;}
.yf7{bottom:1094.125055px;}
.ya7{bottom:1098.932441px;}
.y2e{bottom:1102.316602px;}
.y4e{bottom:1103.398888px;}
.y10a{bottom:1105.324068px;}
.y34{bottom:1116.108612px;}
.yf6{bottom:1116.625054px;}
.y4d{bottom:1125.898887px;}
.y109{bottom:1127.824067px;}
.yed{bottom:1135.383616px;}
.y33{bottom:1138.608611px;}
.yf5{bottom:1139.125053px;}
.y108{bottom:1150.324066px;}
.yb{bottom:1153.569376px;}
.y2f{bottom:1160.133615px;}
.y32{bottom:1161.108610px;}
.yf4{bottom:1171.849059px;}
.y107{bottom:1172.824065px;}
.ya{bottom:1182.819374px;}
.hd{height:16.820292px;}
.hb{height:24.476948px;}
.hf{height:26.505066px;}
.h10{height:36.752530px;}
.h6{height:39.072852px;}
.ha{height:42.000916px;}
.h7{height:43.955998px;}
.hc{height:52.486872px;}
.h3{height:53.699577px;}
.he{height:54.359998px;}
.h9{height:57.723747px;}
.h5{height:59.615998px;}
.h8{height:64.871997px;}
.h4{height:69.527157px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:227.519991px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:41.152553px;}
.x5{left:43.535941px;}
.x9{left:45.283108px;}
.xc{left:46.576910px;}
.xb{left:58.009669px;}
.xd{left:71.573049px;}
.xa{left:73.320216px;}
.x12{left:108.719995px;}
.x13{left:127.061404px;}
.x2{left:137.560862px;}
.x3{left:396.064757px;}
.x4{left:467.536139px;}
.x7{left:469.058798px;}
.x6{left:470.283378px;}
.x10{left:475.311955px;}
.x8{left:497.095906px;}
.x11{left:558.903361px;}
.xf{left:668.837816px;}
.xe{left:670.741820px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-18.659999pt;}
.ws5{word-spacing:-16.301919pt;}
.ws1{word-spacing:-15.999999pt;}
.ws2{word-spacing:-14.659999pt;}
.ws7{word-spacing:-13.329999pt;}
.ws3{word-spacing:-10.666899pt;}
.ws9{word-spacing:-9.333976pt;}
.ws6{word-spacing:-6.216368pt;}
.ws8{word-spacing:-4.148549pt;}
.ws4{word-spacing:0.000000pt;}
._1e{margin-left:-0.888989pt;}
._2{width:1.661684pt;}
._5{width:2.816625pt;}
._7{width:4.041961pt;}
._0{width:5.370463pt;}
._6{width:6.573519pt;}
._f{width:7.566570pt;}
._b{width:8.793292pt;}
._1{width:9.898292pt;}
._17{width:11.052376pt;}
._10{width:12.710054pt;}
._16{width:13.629837pt;}
._9{width:15.606827pt;}
._4{width:16.781781pt;}
._3{width:18.385791pt;}
._8{width:19.549106pt;}
._21{width:20.832349pt;}
._13{width:22.176881pt;}
._1a{width:23.259541pt;}
._26{width:24.331781pt;}
._18{width:25.737009pt;}
._d{width:27.202308pt;}
._e{width:28.690157pt;}
._15{width:29.706490pt;}
._11{width:31.154385pt;}
._27{width:32.228771pt;}
._12{width:33.286319pt;}
._23{width:35.681343pt;}
._1c{width:36.759851pt;}
._2b{width:37.994213pt;}
._20{width:39.289962pt;}
._19{width:40.373808pt;}
._14{width:42.242662pt;}
._24{width:43.538137pt;}
._a{width:44.556663pt;}
._29{width:45.499211pt;}
._2a{width:46.425590pt;}
._1b{width:48.741702pt;}
._25{width:49.795049pt;}
._1f{width:50.842283pt;}
._1d{width:52.683790pt;}
._30{width:55.181771pt;}
._2c{width:56.356550pt;}
._22{width:59.857492pt;}
._2e{width:66.914279pt;}
._c{width:75.643222pt;}
._2f{width:79.031368pt;}
._28{width:83.377608pt;}
._2d{width:89.049774pt;}
.fs7{font-size:16.594196pt;}
.fs5{font-size:24.865471pt;}
.fs8{font-size:26.925781pt;}
.fs9{font-size:37.335904pt;}
.fs3{font-size:42.667598pt;}
.fs4{font-size:47.999998pt;}
.fs6{font-size:53.319997pt;}
.fs0{font-size:58.639997pt;}
.fs2{font-size:63.999997pt;}
.fs1{font-size:74.639997pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y14e{bottom:5.054341pt;}
.y149{bottom:8.440018pt;}
.y143{bottom:13.609442pt;}
.y14d{bottom:14.029601pt;}
.y14c{bottom:23.004862pt;}
.yd1{bottom:27.061247pt;}
.y142{bottom:29.919777pt;}
.y148{bottom:30.695610pt;}
.y14b{bottom:31.980122pt;}
.y14a{bottom:40.955382pt;}
.y141{bottom:45.147904pt;}
.yd0{bottom:47.061246pt;}
.y54{bottom:58.319906pt;}
.ycf{bottom:67.061245pt;}
.y2d{bottom:78.862813pt;}
.yce{bottom:87.061244pt;}
.yc3{bottom:88.581340pt;}
.y2c{bottom:98.862812pt;}
.y7d{bottom:104.147328pt;}
.y14f{bottom:106.893714pt;}
.ycd{bottom:107.061244pt;}
.yc2{bottom:108.581339pt;}
.y2b{bottom:118.862811pt;}
.ycc{bottom:127.061243pt;}
.yc1{bottom:128.581339pt;}
.y145{bottom:137.408890pt;}
.y12d{bottom:138.232762pt;}
.y2a{bottom:138.862810pt;}
.y98{bottom:141.624442pt;}
.yc0{bottom:148.581338pt;}
.yf1{bottom:156.851193pt;}
.y12c{bottom:158.232761pt;}
.y29{bottom:158.862809pt;}
.y97{bottom:161.624441pt;}
.y146{bottom:163.608825pt;}
.ybf{bottom:168.581337pt;}
.y70{bottom:170.227417pt;}
.yf0{bottom:171.073726pt;}
.y12b{bottom:178.232761pt;}
.y28{bottom:178.862809pt;}
.y96{bottom:181.624440pt;}
.y1e{bottom:183.522712pt;}
.ybe{bottom:188.581336pt;}
.y6f{bottom:190.227416pt;}
.y12a{bottom:198.232760pt;}
.y27{bottom:198.862808pt;}
.y95{bottom:201.624440pt;}
.y1d{bottom:203.522712pt;}
.ybd{bottom:208.581335pt;}
.y6e{bottom:210.227415pt;}
.y144{bottom:214.180215pt;}
.y129{bottom:218.232759pt;}
.y26{bottom:218.862807pt;}
.y94{bottom:221.624439pt;}
.y1c{bottom:223.522711pt;}
.y58{bottom:225.494070pt;}
.ybc{bottom:228.581334pt;}
.y6d{bottom:230.227414pt;}
.y4c{bottom:230.301462pt;}
.y128{bottom:238.232758pt;}
.y25{bottom:238.862806pt;}
.y57{bottom:239.716603pt;}
.y93{bottom:241.624438pt;}
.y1b{bottom:243.522710pt;}
.y147{bottom:244.684918pt;}
.ybb{bottom:248.581334pt;}
.ye8{bottom:248.891862pt;}
.y6c{bottom:250.227414pt;}
.y4b{bottom:250.301462pt;}
.y127{bottom:258.232757pt;}
.y24{bottom:258.862805pt;}
.y92{bottom:261.624437pt;}
.y1a{bottom:263.522709pt;}
.yba{bottom:268.581333pt;}
.ye7{bottom:268.891861pt;}
.y6b{bottom:270.227413pt;}
.y4a{bottom:270.301461pt;}
.y126{bottom:278.232756pt;}
.y23{bottom:278.862804pt;}
.y91{bottom:281.624436pt;}
.y19{bottom:283.522708pt;}
.yb9{bottom:288.581332pt;}
.ye6{bottom:288.891860pt;}
.y13d{bottom:288.995652pt;}
.y49{bottom:290.301460pt;}
.y125{bottom:298.232756pt;}
.y22{bottom:298.862804pt;}
.y90{bottom:301.624435pt;}
.y18{bottom:303.522707pt;}
.y5a{bottom:307.163571pt;}
.yb8{bottom:308.581331pt;}
.ye5{bottom:308.891859pt;}
.y13c{bottom:308.995651pt;}
.y48{bottom:310.301459pt;}
.y53{bottom:316.868024pt;}
.y124{bottom:318.232755pt;}
.y21{bottom:318.862803pt;}
.y8f{bottom:321.624435pt;}
.y17{bottom:323.522707pt;}
.yb7{bottom:328.581330pt;}
.ye4{bottom:328.891858pt;}
.y13b{bottom:328.995650pt;}
.y47{bottom:330.301458pt;}
.y123{bottom:338.232754pt;}
.y8e{bottom:341.624434pt;}
.y77{bottom:342.825367pt;}
.y16{bottom:343.522706pt;}
.ya4{bottom:344.937298pt;}
.y15{bottom:345.090801pt;}
.yb6{bottom:348.581329pt;}
.ye3{bottom:348.891857pt;}
.y13a{bottom:348.995649pt;}
.y46{bottom:350.301457pt;}
.y122{bottom:358.232753pt;}
.y14{bottom:359.313334pt;}
.y8d{bottom:361.624433pt;}
.ya3{bottom:364.937297pt;}
.ye2{bottom:368.891857pt;}
.y139{bottom:368.995649pt;}
.y45{bottom:370.301457pt;}
.y13{bottom:374.440981pt;}
.y121{bottom:378.232752pt;}
.yef{bottom:381.371344pt;}
.y8c{bottom:381.624432pt;}
.ya2{bottom:384.937296pt;}
.ye1{bottom:388.891856pt;}
.y138{bottom:388.995648pt;}
.yee{bottom:395.593876pt;}
.y31{bottom:396.237551pt;}
.y120{bottom:398.232751pt;}
.y8b{bottom:401.624431pt;}
.ya1{bottom:404.937295pt;}
.ye0{bottom:408.891855pt;}
.y137{bottom:408.995647pt;}
.y11f{bottom:418.232751pt;}
.y8a{bottom:421.624430pt;}
.ya0{bottom:424.937294pt;}
.ydf{bottom:428.891854pt;}
.y136{bottom:428.995646pt;}
.y52{bottom:432.899347pt;}
.y11e{bottom:438.232750pt;}
.y6a{bottom:440.593380pt;}
.y89{bottom:441.624430pt;}
.y9f{bottom:444.937293pt;}
.y135{bottom:448.995645pt;}
.y11d{bottom:458.232749pt;}
.y69{bottom:460.593379pt;}
.yec{bottom:460.827917pt;}
.y88{bottom:461.624429pt;}
.y56{bottom:464.408625pt;}
.y9e{bottom:464.937293pt;}
.yde{bottom:466.402403pt;}
.y134{bottom:468.995644pt;}
.y11c{bottom:478.232748pt;}
.y68{bottom:480.593378pt;}
.y9d{bottom:484.937292pt;}
.ydd{bottom:486.402402pt;}
.ya5{bottom:487.560620pt;}
.y133{bottom:488.995644pt;}
.ycb{bottom:492.761307pt;}
.y11b{bottom:498.232747pt;}
.y67{bottom:500.593378pt;}
.y9c{bottom:504.937291pt;}
.ydc{bottom:506.402401pt;}
.y132{bottom:508.995643pt;}
.yca{bottom:512.761307pt;}
.y66{bottom:520.593377pt;}
.y9b{bottom:524.937290pt;}
.ydb{bottom:526.402400pt;}
.y87{bottom:527.273495pt;}
.y131{bottom:528.995642pt;}
.yc9{bottom:532.761306pt;}
.y13f{bottom:535.451401pt;}
.y65{bottom:540.593376pt;}
.y9a{bottom:544.937289pt;}
.yda{bottom:546.402400pt;}
.y86{bottom:547.273494pt;}
.y130{bottom:548.995641pt;}
.y13e{bottom:549.673934pt;}
.yc8{bottom:552.761305pt;}
.y51{bottom:556.055662pt;}
.y64{bottom:560.593375pt;}
.y99{bottom:564.937288pt;}
.yd9{bottom:566.402399pt;}
.y85{bottom:567.273493pt;}
.y12f{bottom:568.995640pt;}
.yc7{bottom:572.761304pt;}
.y63{bottom:580.593374pt;}
.y20{bottom:584.866968pt;}
.yd8{bottom:586.402398pt;}
.y84{bottom:587.273492pt;}
.y12e{bottom:588.995639pt;}
.yc6{bottom:592.761303pt;}
.ya6{bottom:597.873492pt;}
.y62{bottom:600.593373pt;}
.y1f{bottom:604.866967pt;}
.yd7{bottom:606.402397pt;}
.y83{bottom:607.273491pt;}
.yc5{bottom:612.761302pt;}
.y140{bottom:618.662163pt;}
.y61{bottom:620.593373pt;}
.y12{bottom:624.866966pt;}
.yd6{bottom:626.402396pt;}
.y82{bottom:627.273491pt;}
.y7c{bottom:629.670734pt;}
.yc4{bottom:632.761302pt;}
.y60{bottom:640.593372pt;}
.y11{bottom:644.866965pt;}
.yd5{bottom:646.402395pt;}
.y81{bottom:647.273490pt;}
.yf3{bottom:660.443473pt;}
.y5f{bottom:660.593371pt;}
.y11a{bottom:662.510296pt;}
.y10{bottom:664.866964pt;}
.yd4{bottom:666.402395pt;}
.y80{bottom:667.273489pt;}
.y106{bottom:672.555617pt;}
.yf2{bottom:674.666005pt;}
.y5e{bottom:680.593370pt;}
.y119{bottom:682.510295pt;}
.yf{bottom:684.866963pt;}
.yd3{bottom:686.402394pt;}
.y7f{bottom:687.273488pt;}
.y76{bottom:692.096557pt;}
.y105{bottom:692.555616pt;}
.y5d{bottom:700.593369pt;}
.y118{bottom:702.510294pt;}
.ye{bottom:704.866963pt;}
.yd2{bottom:706.402393pt;}
.y75{bottom:712.096556pt;}
.y104{bottom:712.555615pt;}
.y7e{bottom:712.982665pt;}
.y5c{bottom:720.593368pt;}
.y117{bottom:722.510293pt;}
.y74{bottom:732.096555pt;}
.y103{bottom:732.555614pt;}
.y44{bottom:733.152040pt;}
.yeb{bottom:733.341374pt;}
.yd{bottom:738.596180pt;}
.y5b{bottom:740.593368pt;}
.y116{bottom:742.510292pt;}
.y7a{bottom:747.338514pt;}
.y73{bottom:752.096554pt;}
.y102{bottom:752.555613pt;}
.y43{bottom:753.152039pt;}
.yea{bottom:755.341373pt;}
.yb2{bottom:756.828845pt;}
.yc{bottom:760.596180pt;}
.y79{bottom:761.561046pt;}
.y115{bottom:762.510291pt;}
.y59{bottom:768.529501pt;}
.y72{bottom:772.096553pt;}
.y101{bottom:772.555613pt;}
.y42{bottom:773.152038pt;}
.y78{bottom:775.783579pt;}
.yb1{bottom:776.828844pt;}
.y114{bottom:782.510291pt;}
.yb5{bottom:790.274693pt;}
.y71{bottom:792.096553pt;}
.y100{bottom:792.555612pt;}
.y41{bottom:793.152037pt;}
.yb0{bottom:796.828844pt;}
.y113{bottom:802.510290pt;}
.y55{bottom:804.439594pt;}
.yb4{bottom:810.274693pt;}
.y9{bottom:810.749995pt;}
.y3d{bottom:812.096552pt;}
.yff{bottom:812.555611pt;}
.y40{bottom:813.152037pt;}
.yaf{bottom:816.828843pt;}
.y112{bottom:822.510289pt;}
.yb3{bottom:830.274692pt;}
.y8{bottom:830.749994pt;}
.y3c{bottom:832.096551pt;}
.yfe{bottom:832.555610pt;}
.y3f{bottom:833.152036pt;}
.yae{bottom:836.828842pt;}
.y111{bottom:842.510288pt;}
.y7b{bottom:845.087541pt;}
.y7{bottom:850.749993pt;}
.y3b{bottom:852.096550pt;}
.yfd{bottom:852.555609pt;}
.y3e{bottom:853.152035pt;}
.yad{bottom:856.828841pt;}
.ye9{bottom:856.895238pt;}
.y110{bottom:862.510287pt;}
.y6{bottom:870.749993pt;}
.y3a{bottom:872.096549pt;}
.yfc{bottom:872.555608pt;}
.yac{bottom:876.828840pt;}
.y10f{bottom:882.510286pt;}
.y30{bottom:883.088206pt;}
.y5{bottom:890.749992pt;}
.y39{bottom:892.096548pt;}
.yfb{bottom:892.555608pt;}
.yab{bottom:896.828839pt;}
.y10e{bottom:902.510286pt;}
.y4{bottom:910.749991pt;}
.y38{bottom:912.096548pt;}
.yfa{bottom:912.555607pt;}
.yaa{bottom:916.828839pt;}
.y50{bottom:920.799014pt;}
.y10d{bottom:922.510285pt;}
.y3{bottom:930.749990pt;}
.y37{bottom:932.096547pt;}
.yf9{bottom:932.555606pt;}
.ya9{bottom:936.828838pt;}
.y4f{bottom:940.799014pt;}
.y10c{bottom:942.510284pt;}
.y2{bottom:950.749989pt;}
.y36{bottom:952.096546pt;}
.yf8{bottom:952.555605pt;}
.ya8{bottom:956.828837pt;}
.y10b{bottom:962.510283pt;}
.y35{bottom:972.096545pt;}
.yf7{bottom:972.555604pt;}
.ya7{bottom:976.828836pt;}
.y2e{bottom:979.836980pt;}
.y4e{bottom:980.799012pt;}
.y10a{bottom:982.510282pt;}
.y34{bottom:992.096544pt;}
.yf6{bottom:992.555603pt;}
.y4d{bottom:1000.799011pt;}
.y109{bottom:1002.510281pt;}
.yed{bottom:1009.229881pt;}
.y33{bottom:1012.096543pt;}
.yf5{bottom:1012.555603pt;}
.y108{bottom:1022.510281pt;}
.yb{bottom:1025.395000pt;}
.y2f{bottom:1031.229880pt;}
.y32{bottom:1032.096543pt;}
.yf4{bottom:1041.643608pt;}
.y107{bottom:1042.510280pt;}
.ya{bottom:1051.394999pt;}
.hd{height:14.951371pt;}
.hb{height:21.757287pt;}
.hf{height:23.560058pt;}
.h10{height:32.668916pt;}
.h6{height:34.731424pt;}
.ha{height:37.334148pt;}
.h7{height:39.071998pt;}
.hc{height:46.654998pt;}
.h3{height:47.732957pt;}
.he{height:48.319998pt;}
.h9{height:51.309997pt;}
.h5{height:52.991998pt;}
.h8{height:57.663998pt;}
.h4{height:61.801917pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:202.239992pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:36.580047pt;}
.x5{left:38.698614pt;}
.x9{left:40.251651pt;}
.xc{left:41.401697pt;}
.xb{left:51.564151pt;}
.xd{left:63.620488pt;}
.xa{left:65.173525pt;}
.x12{left:96.639996pt;}
.x13{left:112.943470pt;}
.x2{left:122.276322pt;}
.x3{left:352.057562pt;}
.x4{left:415.587679pt;}
.x7{left:416.941154pt;}
.x6{left:418.029669pt;}
.x10{left:422.499515pt;}
.x8{left:441.863028pt;}
.x11{left:496.802987pt;}
.xf{left:594.522503pt;}
.xe{left:596.214951pt;}
}




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