
    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_997ca64947e3568ff323215c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_39eafa62163b5a45b41b9505.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_a14041928c601f4a796fb853.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_855681603ee8c3fc747b3d95.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.754395;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_9e1b4ce41c8b360ab93af4f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.754395;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_997ca64947e3568ff323215c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_60e7b2f5c0cc730d5b1a5b2f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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);}
.v4{vertical-align:-30.959947px;}
.v2{vertical-align:-29.519920px;}
.v5{vertical-align:-4.319815px;}
.v3{vertical-align:-2.879873px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.880194px;}
.v7{vertical-align:40.319905px;}
.v1{vertical-align:44.639900px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.221027px;}
.lse{letter-spacing:0.221033px;}
.ls10{letter-spacing:0.288059px;}
.ls7{letter-spacing:53.645470px;}
.lsc{letter-spacing:69.485514px;}
.ls5{letter-spacing:98.465364px;}
.ls9{letter-spacing:104.945450px;}
.ls8{letter-spacing:109.985413px;}
.ls4{letter-spacing:124.385341px;}
.lsf{letter-spacing:127.613921px;}
.lsd{letter-spacing:148.145234px;}
.lsa{letter-spacing:167.585305px;}
.ls6{letter-spacing:169.025247px;}
.ls11{letter-spacing:238.037171px;}
.lsb{letter-spacing:246.065031px;}
.ls2{letter-spacing:531.916316px;}
.ls13{letter-spacing:569.416222px;}
.ls12{letter-spacing:587.356394px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-20.087950px;}
.ws4{word-spacing:-19.871950px;}
.ws6{word-spacing:-18.480914px;}
.ws7{word-spacing:-18.282194px;}
.ws3{word-spacing:-13.499102px;}
.ws2{word-spacing:-13.458926px;}
.ws1{word-spacing:-13.314207px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-3.828296px;}
._27{margin-left:-2.781773px;}
._1{margin-left:-1.007997px;}
._0{width:1.439996px;}
._c{width:2.591994px;}
._7{width:4.463989px;}
._1d{width:5.543986px;}
._5{width:6.767983px;}
._4{width:7.919980px;}
._10{width:9.863975px;}
._6{width:11.303972px;}
._11{width:12.455969px;}
._d{width:13.535966px;}
._f{width:14.759963px;}
._8{width:16.691189px;}
._17{width:18.241494px;}
._3{width:21.575934px;}
._32{width:23.471941px;}
._24{width:24.623938px;}
._9{width:26.135935px;}
._30{width:27.935930px;}
._a{width:28.943928px;}
._b{width:29.951925px;}
._19{width:31.463921px;}
._2a{width:32.615918px;}
._2b{width:33.767916px;}
._1c{width:34.847913px;}
._33{width:36.863908px;}
._16{width:38.231904px;}
._23{width:39.671901px;}
._2f{width:41.615896px;}
._13{width:42.911893px;}
._e{width:44.852679px;}
._14{width:46.655883px;}
._22{width:48.599879px;}
._3c{width:49.679876px;}
._31{width:51.119872px;}
._2e{width:52.847868px;}
._2c{width:53.927865px;}
._34{width:55.511861px;}
._29{width:57.887855px;}
._28{width:59.255852px;}
._2d{width:61.199847px;}
._1f{width:65.015837px;}
._20{width:66.455834px;}
._35{width:70.847823px;}
._39{width:72.359819px;}
._3b{width:73.799815px;}
._12{width:76.607808px;}
._25{width:81.647796px;}
._26{width:84.455789px;}
._21{width:85.535786px;}
._1b{width:86.543784px;}
._1a{width:87.983780px;}
._18{width:89.063777px;}
._1e{width:90.719773px;}
._15{width:92.519769px;}
._3a{width:96.479759px;}
._38{width:159.478059px;}
._36{width:170.085607px;}
._37{width:172.677690px;}
.fc6{color:rgb(0,128,128);}
.fc5{color:rgb(13,119,110);}
.fc4{color:rgb(0,103,120);}
.fc3{color:rgb(33,37,41);}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.239879px;}
.fs5{font-size:48.383879px;}
.fs0{font-size:59.759851px;}
.fs3{font-size:66.239834px;}
.fs6{font-size:66.383834px;}
.fs1{font-size:71.999820px;}
.fs2{font-size:72.143820px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.498183px;}
.y85{bottom:2.699975px;}
.ye8{bottom:8.999978px;}
.y3{bottom:23.759890px;}
.y31{bottom:29.879900px;}
.y30{bottom:51.839867px;}
.y4{bottom:54.359849px;}
.ye7{bottom:69.659830px;}
.yb5{bottom:71.279760px;}
.y2f{bottom:73.289794px;}
.y11d{bottom:80.849742px;}
.y149{bottom:88.229790px;}
.ye6{bottom:91.829727px;}
.yb4{bottom:93.269756px;}
.y2e{bottom:95.249762px;}
.y82{bottom:101.909750px;}
.y11c{bottom:102.809710px;}
.y148{bottom:110.189666px;}
.ye5{bottom:113.789693px;}
.yb3{bottom:115.409716px;}
.y81{bottom:116.489668px;}
.y2d{bottom:117.389722px;}
.y11b{bottom:124.949670px;}
.y80{bottom:131.249672px;}
.y84{bottom:131.429664px;}
.y147{bottom:132.329626px;}
.ye4{bottom:135.929653px;}
.yb2{bottom:137.369591px;}
.y2c{bottom:139.529590px;}
.y7f{bottom:146.009584px;}
.y11a{bottom:147.089629px;}
.y146{bottom:154.469585px;}
.ye3{bottom:158.069612px;}
.yb1{bottom:159.509550px;}
.y7e{bottom:160.769588px;}
.y2b{bottom:161.489556px;}
.y83{bottom:164.549607px;}
.y119{bottom:169.049595px;}
.y145{bottom:176.429551px;}
.ye2{bottom:180.029488px;}
.y7c{bottom:181.109532px;}
.yb0{bottom:181.649510px;}
.y2a{bottom:183.629515px;}
.y118{bottom:191.189464px;}
.y7b{bottom:195.869444px;}
.y144{bottom:198.569511px;}
.ye1{bottom:202.169447px;}
.yaf{bottom:203.609476px;}
.y29{bottom:205.769475px;}
.y7a{bottom:210.629448px;}
.y117{bottom:213.329423px;}
.y143{bottom:220.529387px;}
.ye0{bottom:224.129414px;}
.y79{bottom:225.389452px;}
.yae{bottom:225.749436px;}
.y7d{bottom:225.929428px;}
.y28{bottom:227.729441px;}
.y116{bottom:235.289389px;}
.y78{bottom:242.669345px;}
.y142{bottom:243.389407px;}
.ydf{bottom:246.269374px;}
.yad{bottom:247.709312px;}
.y27{bottom:249.869309px;}
.y73{bottom:250.049393px;}
.y77{bottom:257.429349px;}
.y72{bottom:264.629313px;}
.y141{bottom:264.809305px;}
.yde{bottom:268.409333px;}
.yac{bottom:269.849270px;}
.y26{bottom:271.829277px;}
.y76{bottom:272.009269px;}
.y71{bottom:279.389317px;}
.y75{bottom:286.769273px;}
.ydd{bottom:290.369208px;}
.yab{bottom:291.989230px;}
.y25{bottom:293.969237px;}
.y70{bottom:294.329221px;}
.y115{bottom:301.529185px;}
.y74{bottom:302.249244px;}
.y140{bottom:308.909232px;}
.ydc{bottom:312.509168px;}
.yaa{bottom:313.949197px;}
.y24{bottom:316.109195px;}
.y6c{bottom:318.629178px;}
.y114{bottom:323.669143px;}
.y6f{bottom:326.009134px;}
.y13f{bottom:331.049190px;}
.y6b{bottom:333.389182px;}
.ydb{bottom:334.649127px;}
.ya9{bottom:336.089157px;}
.y23{bottom:338.069162px;}
.y6e{bottom:340.814089px;}
.y113{bottom:345.674154px;}
.y6a{bottom:348.194137px;}
.y13e{bottom:353.054110px;}
.yda{bottom:356.654047px;}
.ya8{bottom:358.094076px;}
.y22{bottom:360.254074px;}
.y69{bottom:362.954049px;}
.y6d{bottom:363.494025px;}
.y112{bottom:367.814022px;}
.y13d{bottom:375.194070px;}
.yd9{bottom:378.794005px;}
.ya7{bottom:380.234034px;}
.y21{bottom:382.214041px;}
.y67{bottom:387.433998px;}
.y111{bottom:389.773990px;}
.y13c{bottom:397.153946px;}
.yd8{bottom:400.753973px;}
.y66{bottom:402.194002px;}
.ya6{bottom:402.373994px;}
.y20{bottom:404.354000px;}
.y110{bottom:411.913948px;}
.y65{bottom:416.953914px;}
.y13b{bottom:419.293904px;}
.yd7{bottom:422.893932px;}
.ya5{bottom:424.333870px;}
.y68{bottom:424.873938px;}
.y1f{bottom:426.493868px;}
.y63{bottom:441.433863px;}
.yd6{bottom:445.033892px;}
.ya4{bottom:446.473828px;}
.y1e{bottom:448.453835px;}
.y10f{bottom:453.493800px;}
.y62{bottom:456.193867px;}
.y13a{bottom:463.393831px;}
.y10c{bottom:463.573823px;}
.yd5{bottom:466.993767px;}
.ya3{bottom:468.613788px;}
.y1d{bottom:470.593795px;}
.y61{bottom:470.953779px;}
.y10e{bottom:473.653754px;}
.y10b{bottom:483.733776px;}
.y139{bottom:485.533791px;}
.y60{bottom:485.713783px;}
.y64{bottom:486.253759px;}
.yd4{bottom:489.133726px;}
.ya2{bottom:490.573756px;}
.y1c{bottom:492.553761px;}
.y10d{bottom:493.993699px;}
.y138{bottom:507.493712px;}
.y5e{bottom:510.193686px;}
.yd3{bottom:511.093694px;}
.ya1{bottom:512.713715px;}
.y1b{bottom:514.693674px;}
.y10a{bottom:515.773675px;}
.y5d{bottom:524.773652px;}
.y137{bottom:529.633670px;}
.yd2{bottom:533.233652px;}
.ya0{bottom:534.673636px;}
.y109{bottom:536.113619px;}
.y1a{bottom:536.833634px;}
.y5c{bottom:539.533609px;}
.y136{bottom:551.773585px;}
.y5b{bottom:554.473605px;}
.yd1{bottom:555.373567px;}
.y9f{bottom:556.813596px;}
.y108{bottom:557.713603px;}
.y19{bottom:558.793555px;}
.y5f{bottom:562.213591px;}
.y105{bottom:567.793533px;}
.y135{bottom:573.733551px;}
.yd0{bottom:577.333533px;}
.y107{bottom:577.873510px;}
.y59{bottom:578.773517px;}
.y9e{bottom:578.953509px;}
.y18{bottom:580.933515px;}
.y104{bottom:587.953487px;}
.y58{bottom:593.533474px;}
.y134{bottom:595.873465px;}
.y106{bottom:598.213501px;}
.ycf{bottom:599.473492px;}
.y9d{bottom:600.913475px;}
.y17{bottom:602.893482px;}
.y57{bottom:608.323461px;}
.y133{bottom:617.863415px;}
.y101{bottom:620.023414px;}
.yce{bottom:621.463443px;}
.y56{bottom:623.083418px;}
.y5a{bottom:623.623396px;}
.y16{bottom:625.063425px;}
.y103{bottom:630.103390px;}
.y132{bottom:640.003374px;}
.y100{bottom:640.183367px;}
.y54{bottom:640.363359px;}
.ycd{bottom:643.603356px;}
.y9c{bottom:645.043339px;}
.y15{bottom:647.203338px;}
.y102{bottom:650.263343px;}
.y53{bottom:654.943324px;}
.yff{bottom:660.523313px;}
.y14a{bottom:662.143334px;}
.y131{bottom:662.863302px;}
.ycc{bottom:665.743316px;}
.y9b{bottom:667.183299px;}
.y52{bottom:669.703282px;}
.y14{bottom:669.883319px;}
.yfe{bottom:681.943256px;}
.y130{bottom:684.103255px;}
.y51{bottom:684.463286px;}
.y55{bottom:685.183254px;}
.ycb{bottom:687.703237px;}
.y13{bottom:691.303264px;}
.y4d{bottom:701.383241px;}
.y9a{bottom:701.923218px;}
.yfc{bottom:702.283202px;}
.y12f{bottom:706.243215px;}
.yca{bottom:709.843197px;}
.y12{bottom:713.443177px;}
.y4c{bottom:715.963207px;}
.yfb{bottom:722.443155px;}
.y50{bottom:723.343163px;}
.y99{bottom:724.063178px;}
.y12e{bottom:728.203136px;}
.y4b{bottom:730.723164px;}
.yc9{bottom:731.803163px;}
.y11{bottom:736.123115px;}
.y4f{bottom:738.103120px;}
.yfd{bottom:742.783101px;}
.y4a{bottom:745.483121px;}
.y98{bottom:746.023099px;}
.y12d{bottom:750.343096px;}
.y4e{bottom:752.863077px;}
.yc8{bottom:753.943076px;}
.y10{bottom:757.543058px;}
.y49{bottom:760.243080px;}
.yfa{bottom:765.283045px;}
.y97{bottom:768.163057px;}
.y12c{bottom:772.483054px;}
.y48{bottom:775.003037px;}
.yf9{bottom:775.363021px;}
.yc7{bottom:776.083036px;}
.yf{bottom:779.503026px;}
.y96{bottom:790.303017px;}
.y12b{bottom:794.442975px;}
.yc6{bottom:798.042957px;}
.y47{bottom:798.402987px;}
.ye{bottom:802.362954px;}
.y42{bottom:805.782944px;}
.y95{bottom:812.262938px;}
.y46{bottom:813.162945px;}
.y12a{bottom:816.582935px;}
.yf8{bottom:819.822932px;}
.yc5{bottom:820.182917px;}
.y41{bottom:820.542901px;}
.yd{bottom:823.782899px;}
.y45{bottom:827.922903px;}
.y94{bottom:834.402897px;}
.y40{bottom:835.482896px;}
.y129{bottom:838.542856px;}
.yf7{bottom:841.782854px;}
.yc4{bottom:842.142884px;}
.y44{bottom:842.682860px;}
.yc{bottom:846.462881px;}
.y3f{bottom:850.062863px;}
.y93{bottom:856.362819px;}
.y128{bottom:860.682815px;}
.yf6{bottom:863.922813px;}
.yc3{bottom:864.282797px;}
.y43{bottom:864.822820px;}
.yb{bottom:868.602794px;}
.y92{bottom:878.547777px;}
.y127{bottom:882.867773px;}
.y3e{bottom:885.027771px;}
.yf5{bottom:886.107770px;}
.yc2{bottom:886.467755px;}
.ya{bottom:889.887744px;}
.y91{bottom:900.687712px;}
.y3a{bottom:904.827717px;}
.yf4{bottom:908.067715px;}
.yc1{bottom:908.427699px;}
.y9{bottom:912.027703px;}
.y3d{bottom:912.207695px;}
.y39{bottom:919.587674px;}
.y90{bottom:922.647657px;}
.y3c{bottom:926.967654px;}
.yf3{bottom:930.207650px;}
.yc0{bottom:930.567659px;}
.y8{bottom:934.167641px;}
.y38{bottom:934.347633px;}
.y3b{bottom:941.727611px;}
.y8f{bottom:944.787616px;}
.y37{bottom:949.107612px;}
.yf2{bottom:952.347588px;}
.ybf{bottom:952.707594px;}
.y7{bottom:956.127584px;}
.y36{bottom:963.867571px;}
.y8e{bottom:966.747561px;}
.y126{bottom:971.067557px;}
.yf1{bottom:974.307531px;}
.ybe{bottom:974.667539px;}
.y6{bottom:978.267521px;}
.y35{bottom:980.067535px;}
.y8d{bottom:988.887496px;}
.y125{bottom:993.207493px;}
.yf0{bottom:996.447491px;}
.ybd{bottom:996.807475px;}
.y5{bottom:1000.947480px;}
.y34{bottom:1003.107477px;}
.y124{bottom:1015.167438px;}
.y33{bottom:1017.867436px;}
.yef{bottom:1018.407434px;}
.ybc{bottom:1018.767420px;}
.y32{bottom:1021.467418px;}
.y8c{bottom:1022.907423px;}
.y123{bottom:1037.307374px;}
.yee{bottom:1040.547372px;}
.ybb{bottom:1040.907378px;}
.y8b{bottom:1057.827334px;}
.y122{bottom:1059.447333px;}
.yed{bottom:1062.687307px;}
.yba{bottom:1063.047315px;}
.y8a{bottom:1079.787278px;}
.y121{bottom:1081.407266px;}
.yec{bottom:1084.647263px;}
.yb9{bottom:1085.007259px;}
.y89{bottom:1101.927215px;}
.y120{bottom:1103.547214px;}
.yeb{bottom:1106.787211px;}
.yb8{bottom:1107.147207px;}
.y88{bottom:1123.161171px;}
.y11f{bottom:1125.501161px;}
.yea{bottom:1128.741147px;}
.yb7{bottom:1129.101155px;}
.y87{bottom:1146.057114px;}
.y11e{bottom:1147.677101px;}
.ye9{bottom:1150.917099px;}
.yb6{bottom:1151.277093px;}
.y86{bottom:1219.856925px;}
.y2{bottom:1234.076888px;}
.h7{height:36.179910px;}
.h8{height:36.287909px;}
.h9{height:48.774253px;}
.hf{height:49.679876px;}
.h10{height:49.787876px;}
.ha{height:53.015492px;}
.h4{height:53.999865px;}
.h5{height:54.107865px;}
.h3{height:59.438875px;}
.hc{height:69.654447px;}
.hb{height:71.613102px;}
.h6{height:80.819810px;}
.hd{height:89.999781px;}
.h11{height:89.999787px;}
.he{height:130.319686px;}
.h12{height:131.039654px;}
.h2{height:1262.876798px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1{width:892.977765px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:22.679930px;}
.x14{left:24.659926px;}
.x11{left:26.639920px;}
.x15{left:29.339912px;}
.x13{left:30.599910px;}
.x18{left:31.859907px;}
.x10{left:37.439891px;}
.x16{left:44.459874px;}
.x1{left:46.799871px;}
.x12{left:48.599868px;}
.x70{left:50.579862px;}
.x19{left:55.079850px;}
.x6{left:59.219838px;}
.x1a{left:64.799826px;}
.x53{left:67.859820px;}
.x56{left:69.659811px;}
.x6f{left:71.099812px;}
.x4b{left:82.079783px;}
.x52{left:90.035758px;}
.x6b{left:91.655757px;}
.x5b{left:95.255751px;}
.x58{left:99.395738px;}
.x5c{left:101.915732px;}
.x67{left:103.535731px;}
.xd{left:104.615729px;}
.xa{left:108.935716px;}
.x61{left:111.275705px;}
.xb{left:115.775694px;}
.x66{left:117.575697px;}
.xc{left:127.115673px;}
.xf{left:129.815660px;}
.x4{left:134.855648px;}
.x8{left:136.115651px;}
.xe{left:139.175634px;}
.x3{left:142.415630px;}
.x9{left:143.675623px;}
.x7{left:151.409611px;}
.x50{left:166.889572px;}
.x5{left:180.389539px;}
.x62{left:212.789456px;}
.x5d{left:216.209444px;}
.x6c{left:241.229394px;}
.x6d{left:245.189384px;}
.x59{left:246.449375px;}
.x5e{left:256.889337px;}
.x51{left:269.129311px;}
.x63{left:273.629299px;}
.x4c{left:307.154225px;}
.x42{left:366.914071px;}
.x2e{left:368.714062px;}
.x38{left:370.334059px;}
.x3b{left:372.494058px;}
.x22{left:374.114057px;}
.x45{left:376.094040px;}
.x1f{left:377.354054px;}
.x1b{left:378.614046px;}
.x21{left:380.054029px;}
.x34{left:381.314044px;}
.x48{left:382.934019px;}
.x1d{left:384.554018px;}
.x33{left:386.534023px;}
.x5f{left:389.413990px;}
.x47{left:391.934020px;}
.x29{left:393.733987px;}
.x28{left:396.793993px;}
.x3c{left:399.493968px;}
.x37{left:402.013996px;}
.x69{left:411.013974px;}
.x60{left:414.613956px;}
.x2c{left:416.413923px;}
.x49{left:420.733920px;}
.x39{left:422.893919px;}
.x20{left:424.873924px;}
.x4e{left:435.673915px;}
.x2d{left:438.553883px;}
.x55{left:459.973828px;}
.x2f{left:462.313817px;}
.x71{left:463.753847px;}
.x68{left:468.103827px;}
.x2{left:471.343825px;}
.x64{left:479.803779px;}
.x54{left:481.063770px;}
.x57{left:482.863785px;}
.x72{left:484.303768px;}
.x4d{left:527.503687px;}
.x27{left:576.463542px;}
.x1c{left:577.723533px;}
.x1e{left:616.963441px;}
.x23{left:627.583440px;}
.x2a{left:644.323358px;}
.x35{left:645.583395px;}
.x3d{left:646.663347px;}
.x2b{left:648.643354px;}
.x31{left:651.343375px;}
.x36{left:652.603365px;}
.x25{left:655.168347px;}
.x65{left:656.248346px;}
.x3f{left:657.688329px;}
.x43{left:658.768329px;}
.x32{left:663.088326px;}
.x46{left:667.408321px;}
.x30{left:670.288288px;}
.x3e{left:672.448287px;}
.x44{left:678.568298px;}
.x41{left:688.468282px;}
.x24{left:693.868232px;}
.x6e{left:695.848238px;}
.x40{left:707.368199px;}
.x5a{left:709.168212px;}
.x6a{left:711.688194px;}
.x26{left:730.588157px;}
.x3a{left:738.868120px;}
.x4a{left:755.428090px;}
.x4f{left:847.977877px;}
@media print{
.v4{vertical-align:-27.519953pt;}
.v2{vertical-align:-26.239929pt;}
.v5{vertical-align:-3.839836pt;}
.v3{vertical-align:-2.559887pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:18.560172pt;}
.v7{vertical-align:35.839916pt;}
.v1{vertical-align:39.679911pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.196469pt;}
.lse{letter-spacing:0.196474pt;}
.ls10{letter-spacing:0.256053pt;}
.ls7{letter-spacing:47.684862pt;}
.lsc{letter-spacing:61.764902pt;}
.ls5{letter-spacing:87.524768pt;}
.ls9{letter-spacing:93.284844pt;}
.ls8{letter-spacing:97.764812pt;}
.ls4{letter-spacing:110.564748pt;}
.lsf{letter-spacing:113.434596pt;}
.lsd{letter-spacing:131.684652pt;}
.lsa{letter-spacing:148.964716pt;}
.ls6{letter-spacing:150.244664pt;}
.ls11{letter-spacing:211.588596pt;}
.lsb{letter-spacing:218.724472pt;}
.ls2{letter-spacing:472.814503pt;}
.ls13{letter-spacing:506.147753pt;}
.ls12{letter-spacing:522.094572pt;}
.ws5{word-spacing:-17.855955pt;}
.ws4{word-spacing:-17.663956pt;}
.ws6{word-spacing:-16.427479pt;}
.ws7{word-spacing:-16.250839pt;}
.ws3{word-spacing:-11.999202pt;}
.ws2{word-spacing:-11.963490pt;}
.ws1{word-spacing:-11.834850pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-3.402930pt;}
._27{margin-left:-2.472687pt;}
._1{margin-left:-0.895998pt;}
._0{width:1.279997pt;}
._c{width:2.303994pt;}
._7{width:3.967990pt;}
._1d{width:4.927988pt;}
._5{width:6.015985pt;}
._4{width:7.039982pt;}
._10{width:8.767978pt;}
._6{width:10.047975pt;}
._11{width:11.071972pt;}
._d{width:12.031970pt;}
._f{width:13.119967pt;}
._8{width:14.836612pt;}
._17{width:16.214661pt;}
._3{width:19.178608pt;}
._32{width:20.863948pt;}
._24{width:21.887945pt;}
._9{width:23.231942pt;}
._30{width:24.831938pt;}
._a{width:25.727936pt;}
._b{width:26.623933pt;}
._19{width:27.967930pt;}
._2a{width:28.991928pt;}
._2b{width:30.015925pt;}
._1c{width:30.975923pt;}
._33{width:32.767918pt;}
._16{width:33.983915pt;}
._23{width:35.263912pt;}
._2f{width:36.991908pt;}
._13{width:38.143905pt;}
._e{width:39.869048pt;}
._14{width:41.471896pt;}
._22{width:43.199892pt;}
._3c{width:44.159890pt;}
._31{width:45.439886pt;}
._2e{width:46.975883pt;}
._2c{width:47.935880pt;}
._34{width:49.343877pt;}
._29{width:51.455871pt;}
._28{width:52.671868pt;}
._2d{width:54.399864pt;}
._1f{width:57.791856pt;}
._20{width:59.071852pt;}
._35{width:62.975843pt;}
._39{width:64.319839pt;}
._3b{width:65.599836pt;}
._12{width:68.095830pt;}
._25{width:72.575819pt;}
._26{width:75.071812pt;}
._21{width:76.031810pt;}
._1b{width:76.927808pt;}
._1a{width:78.207804pt;}
._18{width:79.167802pt;}
._1e{width:80.639798pt;}
._15{width:82.239794pt;}
._3a{width:85.759786pt;}
._38{width:141.758275pt;}
._36{width:151.187206pt;}
._37{width:153.491280pt;}
.fs4{font-size:42.879893pt;}
.fs5{font-size:43.007892pt;}
.fs0{font-size:53.119867pt;}
.fs3{font-size:58.879853pt;}
.fs6{font-size:59.007852pt;}
.fs1{font-size:63.999840pt;}
.fs2{font-size:64.127840pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.442829pt;}
.y85{bottom:2.399978pt;}
.ye8{bottom:7.999980pt;}
.y3{bottom:21.119902pt;}
.y31{bottom:26.559911pt;}
.y30{bottom:46.079882pt;}
.y4{bottom:48.319866pt;}
.ye7{bottom:61.919849pt;}
.yb5{bottom:63.359787pt;}
.y2f{bottom:65.146484pt;}
.y11d{bottom:71.866438pt;}
.y149{bottom:78.426480pt;}
.ye6{bottom:81.626424pt;}
.yb4{bottom:82.906450pt;}
.y2e{bottom:84.666455pt;}
.y82{bottom:90.586444pt;}
.y11c{bottom:91.386409pt;}
.y148{bottom:97.946370pt;}
.ye5{bottom:101.146394pt;}
.yb3{bottom:102.586414pt;}
.y81{bottom:103.546372pt;}
.y2d{bottom:104.346419pt;}
.y11b{bottom:111.066373pt;}
.y80{bottom:116.666375pt;}
.y84{bottom:116.826368pt;}
.y147{bottom:117.626334pt;}
.ye4{bottom:120.826358pt;}
.yb2{bottom:122.106303pt;}
.y2c{bottom:124.026302pt;}
.y7f{bottom:129.786297pt;}
.y11a{bottom:130.746337pt;}
.y146{bottom:137.306298pt;}
.ye3{bottom:140.506322pt;}
.yb1{bottom:141.786267pt;}
.y7e{bottom:142.906300pt;}
.y2b{bottom:143.546272pt;}
.y83{bottom:146.266317pt;}
.y119{bottom:150.266307pt;}
.y145{bottom:156.826268pt;}
.ye2{bottom:160.026212pt;}
.y7c{bottom:160.986251pt;}
.yb0{bottom:161.466231pt;}
.y2a{bottom:163.226236pt;}
.y118{bottom:169.946190pt;}
.y7b{bottom:174.106173pt;}
.y144{bottom:176.506232pt;}
.ye1{bottom:179.706175pt;}
.yaf{bottom:180.986201pt;}
.y29{bottom:182.906200pt;}
.y7a{bottom:187.226176pt;}
.y117{bottom:189.626154pt;}
.y143{bottom:196.026122pt;}
.ye0{bottom:199.226146pt;}
.y79{bottom:200.346179pt;}
.yae{bottom:200.666165pt;}
.y7d{bottom:200.826158pt;}
.y28{bottom:202.426170pt;}
.y116{bottom:209.146124pt;}
.y78{bottom:215.706085pt;}
.y142{bottom:216.346139pt;}
.ydf{bottom:218.906110pt;}
.yad{bottom:220.186055pt;}
.y27{bottom:222.106053pt;}
.y73{bottom:222.266127pt;}
.y77{bottom:228.826088pt;}
.y72{bottom:235.226056pt;}
.y141{bottom:235.386049pt;}
.yde{bottom:238.586074pt;}
.yac{bottom:239.866018pt;}
.y26{bottom:241.626024pt;}
.y76{bottom:241.786017pt;}
.y71{bottom:248.346059pt;}
.y75{bottom:254.906020pt;}
.ydd{bottom:258.105963pt;}
.yab{bottom:259.545982pt;}
.y25{bottom:261.305988pt;}
.y70{bottom:261.625974pt;}
.y115{bottom:268.025942pt;}
.y74{bottom:268.665995pt;}
.y140{bottom:274.585984pt;}
.ydc{bottom:277.785927pt;}
.yaa{bottom:279.065953pt;}
.y24{bottom:280.985951pt;}
.y6c{bottom:283.225936pt;}
.y114{bottom:287.705905pt;}
.y6f{bottom:289.785897pt;}
.y13f{bottom:294.265947pt;}
.y6b{bottom:296.345939pt;}
.ydb{bottom:297.465891pt;}
.ya9{bottom:298.745917pt;}
.y23{bottom:300.505922pt;}
.y6e{bottom:302.945857pt;}
.y113{bottom:307.265914pt;}
.y6a{bottom:309.505900pt;}
.y13e{bottom:313.825875pt;}
.yda{bottom:317.025819pt;}
.ya8{bottom:318.305846pt;}
.y22{bottom:320.225843pt;}
.y69{bottom:322.625821pt;}
.y6d{bottom:323.105800pt;}
.y112{bottom:326.945797pt;}
.y13d{bottom:333.505840pt;}
.yd9{bottom:336.705782pt;}
.ya7{bottom:337.985808pt;}
.y21{bottom:339.745815pt;}
.y67{bottom:344.385776pt;}
.y111{bottom:346.465769pt;}
.y13c{bottom:353.025729pt;}
.yd8{bottom:356.225753pt;}
.y66{bottom:357.505780pt;}
.ya6{bottom:357.665773pt;}
.y20{bottom:359.425777pt;}
.y110{bottom:366.145731pt;}
.y65{bottom:370.625701pt;}
.y13b{bottom:372.705692pt;}
.yd7{bottom:375.905718pt;}
.ya5{bottom:377.185662pt;}
.y68{bottom:377.665723pt;}
.y1f{bottom:379.105660pt;}
.y63{bottom:392.385656pt;}
.yd6{bottom:395.585682pt;}
.ya4{bottom:396.865625pt;}
.y1e{bottom:398.625631pt;}
.y10f{bottom:403.105600pt;}
.y62{bottom:405.505660pt;}
.y13a{bottom:411.905628pt;}
.y10c{bottom:412.065621pt;}
.yd5{bottom:415.105570pt;}
.ya3{bottom:416.545589pt;}
.y1d{bottom:418.305596pt;}
.y61{bottom:418.625581pt;}
.y10e{bottom:421.025559pt;}
.y10b{bottom:429.985578pt;}
.y139{bottom:431.585592pt;}
.y60{bottom:431.745585pt;}
.y64{bottom:432.225563pt;}
.yd4{bottom:434.785534pt;}
.ya2{bottom:436.065561pt;}
.y1c{bottom:437.825565pt;}
.y10d{bottom:439.105510pt;}
.y138{bottom:451.105522pt;}
.y5e{bottom:453.505498pt;}
.yd3{bottom:454.305506pt;}
.ya1{bottom:455.745525pt;}
.y1b{bottom:457.505488pt;}
.y10a{bottom:458.465489pt;}
.y5d{bottom:466.465469pt;}
.y137{bottom:470.785484pt;}
.yd2{bottom:473.985468pt;}
.ya0{bottom:475.265455pt;}
.y109{bottom:476.545439pt;}
.y1a{bottom:477.185452pt;}
.y5c{bottom:479.585430pt;}
.y136{bottom:490.465409pt;}
.y5b{bottom:492.865427pt;}
.yd1{bottom:493.665393pt;}
.y9f{bottom:494.945419pt;}
.y108{bottom:495.745425pt;}
.y19{bottom:496.705382pt;}
.y5f{bottom:499.745415pt;}
.y105{bottom:504.705362pt;}
.y135{bottom:509.985378pt;}
.yd0{bottom:513.185362pt;}
.y107{bottom:513.665343pt;}
.y59{bottom:514.465349pt;}
.y9e{bottom:514.625341pt;}
.y18{bottom:516.385346pt;}
.y104{bottom:522.625321pt;}
.y58{bottom:527.585310pt;}
.y134{bottom:529.665303pt;}
.y106{bottom:531.745335pt;}
.ycf{bottom:532.865327pt;}
.y9d{bottom:534.145311pt;}
.y17{bottom:535.905318pt;}
.y57{bottom:540.731966pt;}
.y133{bottom:549.211924pt;}
.y101{bottom:551.131924pt;}
.yce{bottom:552.411950pt;}
.y56{bottom:553.851927pt;}
.y5a{bottom:554.331908pt;}
.y16{bottom:555.611934pt;}
.y103{bottom:560.091902pt;}
.y132{bottom:568.891888pt;}
.y100{bottom:569.051881pt;}
.y54{bottom:569.211874pt;}
.ycd{bottom:572.091872pt;}
.y9c{bottom:573.371857pt;}
.y15{bottom:575.291856pt;}
.y102{bottom:578.011860pt;}
.y53{bottom:582.171843pt;}
.yff{bottom:587.131834pt;}
.y14a{bottom:588.571853pt;}
.y131{bottom:589.211824pt;}
.ycc{bottom:591.771837pt;}
.y9b{bottom:593.051821pt;}
.y52{bottom:595.291806pt;}
.y14{bottom:595.451839pt;}
.yfe{bottom:606.171783pt;}
.y130{bottom:608.091782pt;}
.y51{bottom:608.411810pt;}
.y55{bottom:609.051781pt;}
.ycb{bottom:611.291766pt;}
.y13{bottom:614.491790pt;}
.y4d{bottom:623.451769pt;}
.y9a{bottom:623.931750pt;}
.yfc{bottom:624.251735pt;}
.y12f{bottom:627.771747pt;}
.yca{bottom:630.971731pt;}
.y12{bottom:634.171713pt;}
.y4c{bottom:636.411740pt;}
.yfb{bottom:642.171693pt;}
.y50{bottom:642.971701pt;}
.y99{bottom:643.611714pt;}
.y12e{bottom:647.291676pt;}
.y4b{bottom:649.531702pt;}
.yc9{bottom:650.491700pt;}
.y11{bottom:654.331658pt;}
.y4f{bottom:656.091662pt;}
.yfd{bottom:660.251645pt;}
.y4a{bottom:662.651663pt;}
.y98{bottom:663.131644pt;}
.y12d{bottom:666.971641pt;}
.y4e{bottom:669.211624pt;}
.yc8{bottom:670.171623pt;}
.y10{bottom:673.371607pt;}
.y49{bottom:675.771627pt;}
.yfa{bottom:680.251595pt;}
.y97{bottom:682.811606pt;}
.y12c{bottom:686.651603pt;}
.y48{bottom:688.891588pt;}
.yf9{bottom:689.211574pt;}
.yc7{bottom:689.851587pt;}
.yf{bottom:692.891578pt;}
.y96{bottom:702.491570pt;}
.y12b{bottom:706.171533pt;}
.yc6{bottom:709.371517pt;}
.y47{bottom:709.691544pt;}
.ye{bottom:713.211514pt;}
.y42{bottom:716.251505pt;}
.y95{bottom:722.011500pt;}
.y46{bottom:722.811506pt;}
.y12a{bottom:725.851497pt;}
.yf8{bottom:728.731496pt;}
.yc5{bottom:729.051481pt;}
.y41{bottom:729.371467pt;}
.yd{bottom:732.251465pt;}
.y45{bottom:735.931470pt;}
.y94{bottom:741.691464pt;}
.y40{bottom:742.651463pt;}
.y129{bottom:745.371427pt;}
.yf7{bottom:748.251425pt;}
.yc4{bottom:748.571453pt;}
.y44{bottom:749.051431pt;}
.yc{bottom:752.411450pt;}
.y3f{bottom:755.611434pt;}
.y93{bottom:761.211394pt;}
.y128{bottom:765.051391pt;}
.yf6{bottom:767.931390pt;}
.yc3{bottom:768.251375pt;}
.y43{bottom:768.731396pt;}
.yb{bottom:772.091372pt;}
.y92{bottom:780.931357pt;}
.y127{bottom:784.771354pt;}
.y3e{bottom:786.691352pt;}
.yf5{bottom:787.651351pt;}
.yc2{bottom:787.971338pt;}
.ya{bottom:791.011328pt;}
.y91{bottom:800.611300pt;}
.y3a{bottom:804.291304pt;}
.yf4{bottom:807.171302pt;}
.yc1{bottom:807.491288pt;}
.y9{bottom:810.691292pt;}
.y3d{bottom:810.851285pt;}
.y39{bottom:817.411266pt;}
.y90{bottom:820.131251pt;}
.y3c{bottom:823.971248pt;}
.yf3{bottom:826.851245pt;}
.yc0{bottom:827.171252pt;}
.y8{bottom:830.371236pt;}
.y38{bottom:830.531229pt;}
.y3b{bottom:837.091210pt;}
.y8f{bottom:839.811214pt;}
.y37{bottom:843.651211pt;}
.yf2{bottom:846.531189pt;}
.ybf{bottom:846.851195pt;}
.y7{bottom:849.891186pt;}
.y36{bottom:856.771174pt;}
.y8e{bottom:859.331165pt;}
.y126{bottom:863.171162pt;}
.yf1{bottom:866.051139pt;}
.ybe{bottom:866.371146pt;}
.y6{bottom:869.571130pt;}
.y35{bottom:871.171142pt;}
.y8d{bottom:879.011108pt;}
.y125{bottom:882.851105pt;}
.yf0{bottom:885.731103pt;}
.ybd{bottom:886.051089pt;}
.y5{bottom:889.731093pt;}
.y34{bottom:891.651091pt;}
.y124{bottom:902.371056pt;}
.y33{bottom:904.771054pt;}
.yef{bottom:905.251053pt;}
.ybc{bottom:905.571040pt;}
.y32{bottom:907.971038pt;}
.y8c{bottom:909.251043pt;}
.y123{bottom:922.050999pt;}
.yee{bottom:924.930997pt;}
.ybb{bottom:925.251003pt;}
.y8b{bottom:940.290964pt;}
.y122{bottom:941.730963pt;}
.yed{bottom:944.610940pt;}
.yba{bottom:944.930947pt;}
.y8a{bottom:959.810914pt;}
.y121{bottom:961.250904pt;}
.yec{bottom:964.130900pt;}
.yb9{bottom:964.450897pt;}
.y89{bottom:979.490858pt;}
.y120{bottom:980.930857pt;}
.yeb{bottom:983.810854pt;}
.yb8{bottom:984.130850pt;}
.y88{bottom:998.365485pt;}
.y11f{bottom:1000.445476pt;}
.yea{bottom:1003.325464pt;}
.yb7{bottom:1003.645471pt;}
.y87{bottom:1018.717435pt;}
.y11e{bottom:1020.157423pt;}
.ye9{bottom:1023.037421pt;}
.yb6{bottom:1023.357416pt;}
.y86{bottom:1084.317267pt;}
.y2{bottom:1096.957234pt;}
.h7{height:32.159920pt;}
.h8{height:32.255919pt;}
.h9{height:43.354892pt;}
.hf{height:44.159890pt;}
.h10{height:44.255889pt;}
.ha{height:47.124882pt;}
.h4{height:47.999880pt;}
.h5{height:48.095880pt;}
.h3{height:52.834555pt;}
.hc{height:61.915064pt;}
.hb{height:63.656091pt;}
.h6{height:71.839831pt;}
.hd{height:79.999805pt;}
.h11{height:79.999811pt;}
.he{height:115.839721pt;}
.h12{height:116.479693pt;}
.h2{height:1122.557154pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1{width:793.758013pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:20.159938pt;}
.x14{left:21.919935pt;}
.x11{left:23.679929pt;}
.x15{left:26.079921pt;}
.x13{left:27.199920pt;}
.x18{left:28.319917pt;}
.x10{left:33.279903pt;}
.x16{left:39.519888pt;}
.x1{left:41.599885pt;}
.x12{left:43.199883pt;}
.x70{left:44.959877pt;}
.x19{left:48.959867pt;}
.x6{left:52.639856pt;}
.x1a{left:57.599845pt;}
.x53{left:60.319840pt;}
.x56{left:61.919832pt;}
.x6f{left:63.199833pt;}
.x4b{left:72.959807pt;}
.x52{left:80.031785pt;}
.x6b{left:81.471784pt;}
.x5b{left:84.671779pt;}
.x58{left:88.351767pt;}
.x5c{left:90.591762pt;}
.x67{left:92.031761pt;}
.xd{left:92.991760pt;}
.xa{left:96.831747pt;}
.x61{left:98.911738pt;}
.xb{left:102.911728pt;}
.x66{left:104.511731pt;}
.xc{left:112.991710pt;}
.xf{left:115.391698pt;}
.x4{left:119.871687pt;}
.x8{left:120.991690pt;}
.xe{left:123.711675pt;}
.x3{left:126.591672pt;}
.x9{left:127.711665pt;}
.x7{left:134.586321pt;}
.x50{left:148.346286pt;}
.x5{left:160.346256pt;}
.x62{left:189.146183pt;}
.x5d{left:192.186173pt;}
.x6c{left:214.426128pt;}
.x6d{left:217.946119pt;}
.x59{left:219.066111pt;}
.x5e{left:228.346077pt;}
.x51{left:239.226054pt;}
.x63{left:243.226044pt;}
.x4c{left:273.025977pt;}
.x42{left:326.145841pt;}
.x2e{left:327.745833pt;}
.x38{left:329.185830pt;}
.x3b{left:331.105830pt;}
.x22{left:332.545829pt;}
.x45{left:334.305814pt;}
.x1f{left:335.425825pt;}
.x1b{left:336.545819pt;}
.x21{left:337.825803pt;}
.x34{left:338.945817pt;}
.x48{left:340.385794pt;}
.x1d{left:341.825793pt;}
.x33{left:343.585798pt;}
.x5f{left:346.145769pt;}
.x47{left:348.385796pt;}
.x29{left:349.985766pt;}
.x28{left:352.705772pt;}
.x3c{left:355.105750pt;}
.x37{left:357.345775pt;}
.x69{left:365.345755pt;}
.x60{left:368.545739pt;}
.x2c{left:370.145709pt;}
.x49{left:373.985706pt;}
.x39{left:375.905706pt;}
.x20{left:377.665711pt;}
.x4e{left:387.265702pt;}
.x2d{left:389.825673pt;}
.x55{left:408.865625pt;}
.x2f{left:410.945615pt;}
.x71{left:412.225641pt;}
.x68{left:416.092290pt;}
.x2{left:418.972289pt;}
.x64{left:426.492248pt;}
.x54{left:427.612240pt;}
.x57{left:429.212254pt;}
.x72{left:430.492238pt;}
.x4d{left:468.892166pt;}
.x27{left:512.412038pt;}
.x1c{left:513.532030pt;}
.x1e{left:548.411948pt;}
.x23{left:557.851947pt;}
.x2a{left:572.731874pt;}
.x35{left:573.851907pt;}
.x3d{left:574.811864pt;}
.x2b{left:576.571871pt;}
.x31{left:578.971889pt;}
.x36{left:580.091880pt;}
.x25{left:582.371864pt;}
.x65{left:583.331863pt;}
.x3f{left:584.611848pt;}
.x43{left:585.571848pt;}
.x32{left:589.411845pt;}
.x46{left:593.251841pt;}
.x30{left:595.811812pt;}
.x3e{left:597.731811pt;}
.x44{left:603.171820pt;}
.x41{left:611.971806pt;}
.x24{left:616.771762pt;}
.x6e{left:618.531767pt;}
.x40{left:628.771732pt;}
.x5a{left:630.371744pt;}
.x6a{left:632.611728pt;}
.x26{left:649.411695pt;}
.x3a{left:656.771662pt;}
.x4a{left:671.491636pt;}
.x4f{left:753.758113pt;}
}




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