
    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_a4ec80a5e83716c528be4700.woff')format("woff");}.ff1{font-family:ff1;line-height:1.154785;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_f336601d7893dae5b912b5ef.woff')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_0e993ad0d7fbedccc5a256d4.woff')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_2fe28fcf6b1cf225751cd9c2.woff')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_d43b14b1dde35e8e265cd5cb.woff')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_7d89a5c97aa221526cd3d6cb.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_971441567bb774937c16e289.woff')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.v3{vertical-align:-2.879873px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880194px;}
.v1{vertical-align:44.639900px;}
.v6{vertical-align:53.999865px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.031830px;}
.ls1{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.221027px;}
.lse{letter-spacing:0.221033px;}
.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:198.467498px;}
.ls13{letter-spacing:201.307813px;}
.lsb{letter-spacing:246.065031px;}
.ls2{letter-spacing:531.916316px;}
.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:-16.271959px;}
.ws3{word-spacing:-13.499102px;}
.ws2{word-spacing:-13.458926px;}
.ws1{word-spacing:-13.314207px;}
.ws0{word-spacing:0.000000px;}
._45{margin-left:-5.075741px;}
._2{margin-left:-3.828296px;}
._1f{margin-left:-2.231874px;}
._1{margin-left:-1.007997px;}
._0{width:1.439996px;}
._b{width:2.807993px;}
._c{width:4.463989px;}
._4{width:6.443924px;}
._3{width:7.823986px;}
._17{width:8.879972px;}
._f{width:10.871973px;}
._18{width:12.023970px;}
._19{width:13.187955px;}
._31{width:14.315976px;}
._9{width:15.335962px;}
._8{width:16.487959px;}
._16{width:17.495956px;}
._12{width:18.503954px;}
._7{width:20.927984px;}
._1e{width:22.295872px;}
._10{width:23.975940px;}
._11{width:25.055937px;}
._25{width:26.135935px;}
._5{width:27.719931px;}
._6{width:29.303927px;}
._24{width:30.584074px;}
._26{width:31.656404px;}
._28{width:33.287434px;}
._2d{width:34.367311px;}
._2c{width:35.616394px;}
._20{width:38.519904px;}
._37{width:39.887900px;}
._4d{width:40.967658px;}
._43{width:41.975895px;}
._46{width:43.271892px;}
._15{width:44.279889px;}
._14{width:45.647886px;}
._1d{width:47.447881px;}
._47{width:49.247637px;}
._27{width:51.047872px;}
._13{width:52.415869px;}
._29{width:54.431864px;}
._2a{width:55.655861px;}
._2e{width:58.103855px;}
._4f{width:59.111852px;}
._33{width:60.635187px;}
._2b{width:62.927723px;}
._30{width:64.296079px;}
._38{width:65.519356px;}
._23{width:66.743833px;}
._1b{width:67.823830px;}
._1a{width:69.191827px;}
._36{width:70.775823px;}
._21{width:72.503819px;}
._22{width:73.511816px;}
._4c{width:75.023812px;}
._a{width:76.391809px;}
._48{width:78.479804px;}
._49{width:79.847800px;}
._4a{width:81.431796px;}
._35{width:82.799793px;}
._4e{width:83.807790px;}
._1c{width:85.103787px;}
._d{width:86.687783px;}
._e{width:87.911780px;}
._2f{width:88.991778px;}
._44{width:90.071775px;}
._32{width:91.440473px;}
._34{width:92.615846px;}
._4b{width:94.847757px;}
._3c{width:332.315127px;}
._41{width:342.395240px;}
._39{width:356.975006px;}
._3f{width:367.262358px;}
._3b{width:379.331106px;}
._3d{width:389.411032px;}
._42{width:399.274882px;}
._3a{width:400.871028px;}
._3e{width:409.571078px;}
._40{width:420.463727px;}
.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;}
.fs1{font-size:71.999820px;}
.fs2{font-size:72.143820px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.498183px;}
.y85{bottom:8.999978px;}
.y3{bottom:23.759890px;}
.y31{bottom:29.879900px;}
.y30{bottom:51.839867px;}
.y4{bottom:54.359849px;}
.y2f{bottom:73.289794px;}
.yb5{bottom:75.629785px;}
.ye8{bottom:82.469765px;}
.y11a{bottom:84.629763px;}
.y13b{bottom:84.809755px;}
.y2e{bottom:95.249762px;}
.yb4{bottom:97.769745px;}
.y82{bottom:101.909750px;}
.ye7{bottom:104.609723px;}
.y119{bottom:106.769723px;}
.y13a{bottom:106.949715px;}
.y81{bottom:116.489668px;}
.y2d{bottom:117.389722px;}
.yb3{bottom:119.729711px;}
.ye6{bottom:126.569691px;}
.y118{bottom:128.729689px;}
.y139{bottom:129.089674px;}
.y80{bottom:131.249672px;}
.y84{bottom:131.429664px;}
.y2c{bottom:139.529590px;}
.yb2{bottom:141.869579px;}
.y7f{bottom:146.009584px;}
.ye5{bottom:148.709559px;}
.y117{bottom:150.869557px;}
.y138{bottom:151.049640px;}
.y7e{bottom:160.769588px;}
.y2b{bottom:161.489556px;}
.yb1{bottom:164.009539px;}
.y83{bottom:164.549607px;}
.ye4{bottom:170.669525px;}
.y116{bottom:172.829524px;}
.y137{bottom:173.189509px;}
.y7c{bottom:181.109532px;}
.y2a{bottom:183.629515px;}
.yb0{bottom:185.969507px;}
.ye3{bottom:192.809485px;}
.y115{bottom:194.969484px;}
.y136{bottom:195.149476px;}
.y7b{bottom:195.869444px;}
.y29{bottom:205.769475px;}
.yaf{bottom:208.109465px;}
.y7a{bottom:210.629448px;}
.ye2{bottom:214.949445px;}
.y114{bottom:217.109442px;}
.y135{bottom:217.289434px;}
.y79{bottom:225.389452px;}
.y7d{bottom:225.929428px;}
.y28{bottom:227.729441px;}
.yae{bottom:230.069432px;}
.ye1{bottom:236.909412px;}
.y113{bottom:239.069410px;}
.y134{bottom:239.429394px;}
.y78{bottom:242.669345px;}
.y27{bottom:249.869309px;}
.y73{bottom:250.049393px;}
.yad{bottom:252.209300px;}
.y77{bottom:257.429349px;}
.ye0{bottom:259.049370px;}
.y112{bottom:261.209278px;}
.y133{bottom:261.389362px;}
.y72{bottom:264.629313px;}
.y26{bottom:271.829277px;}
.y76{bottom:272.009269px;}
.yac{bottom:274.349259px;}
.y71{bottom:279.389317px;}
.ydf{bottom:281.009246px;}
.y111{bottom:283.169244px;}
.y132{bottom:283.529230px;}
.y75{bottom:286.769273px;}
.y25{bottom:293.969237px;}
.y70{bottom:294.329221px;}
.yab{bottom:296.309226px;}
.y74{bottom:302.249244px;}
.yde{bottom:303.149206px;}
.y110{bottom:305.309204px;}
.y131{bottom:305.489196px;}
.y24{bottom:316.109195px;}
.yaa{bottom:318.449186px;}
.y6c{bottom:318.629178px;}
.ydd{bottom:325.289164px;}
.y6f{bottom:326.009134px;}
.y10f{bottom:327.449163px;}
.y130{bottom:327.629155px;}
.y6b{bottom:333.389182px;}
.y23{bottom:338.069162px;}
.ya9{bottom:340.454105px;}
.y6e{bottom:340.814089px;}
.ydc{bottom:347.294084px;}
.y6a{bottom:348.194137px;}
.y10e{bottom:349.454083px;}
.y12f{bottom:349.814067px;}
.y22{bottom:360.254074px;}
.ya8{bottom:362.594065px;}
.y69{bottom:362.954049px;}
.y6d{bottom:363.494025px;}
.ydb{bottom:369.434043px;}
.y10d{bottom:371.594043px;}
.y12e{bottom:371.774035px;}
.y21{bottom:382.214041px;}
.ya7{bottom:384.734023px;}
.y67{bottom:387.433998px;}
.yda{bottom:391.394011px;}
.y10c{bottom:393.554009px;}
.y12d{bottom:393.913993px;}
.y66{bottom:402.194002px;}
.y20{bottom:404.354000px;}
.ya6{bottom:406.693991px;}
.yd9{bottom:413.533971px;}
.y10b{bottom:415.693968px;}
.y12c{bottom:415.873960px;}
.y65{bottom:416.953914px;}
.y68{bottom:424.873938px;}
.y1f{bottom:426.493868px;}
.ya5{bottom:428.833859px;}
.yd8{bottom:435.673929px;}
.y10a{bottom:437.833836px;}
.y12b{bottom:438.013920px;}
.y63{bottom:441.433863px;}
.y1e{bottom:448.453835px;}
.ya4{bottom:450.793825px;}
.y62{bottom:456.193867px;}
.yd7{bottom:457.633805px;}
.y109{bottom:459.793803px;}
.y12a{bottom:460.153788px;}
.y1d{bottom:470.593795px;}
.y61{bottom:470.953779px;}
.ya3{bottom:472.933785px;}
.yd6{bottom:479.773765px;}
.y129{bottom:482.113754px;}
.y60{bottom:485.713783px;}
.y64{bottom:486.253759px;}
.y1c{bottom:492.553761px;}
.ya2{bottom:495.073744px;}
.y107{bottom:501.553739px;}
.yd5{bottom:501.733731px;}
.y128{bottom:504.253714px;}
.y5e{bottom:510.193686px;}
.y106{bottom:512.713715px;}
.y1b{bottom:514.693674px;}
.ya1{bottom:517.033665px;}
.yd4{bottom:523.873645px;}
.y108{bottom:524.053682px;}
.y5d{bottom:524.773652px;}
.y127{bottom:526.213681px;}
.y1a{bottom:536.833634px;}
.ya0{bottom:539.173625px;}
.y5c{bottom:539.533609px;}
.yd3{bottom:546.013603px;}
.y105{bottom:546.373589px;}
.y158{bottom:547.633625px;}
.y126{bottom:548.353595px;}
.y5b{bottom:554.473605px;}
.y104{bottom:557.533564px;}
.y19{bottom:558.793555px;}
.y9f{bottom:561.313585px;}
.y5f{bottom:562.213591px;}
.yd2{bottom:567.973571px;}
.y157{bottom:569.773540px;}
.y125{bottom:570.493554px;}
.y59{bottom:578.773517px;}
.y18{bottom:580.933515px;}
.y9e{bottom:583.273506px;}
.yd1{bottom:590.113484px;}
.y156{bottom:591.733506px;}
.y124{bottom:592.453475px;}
.y103{bottom:593.353482px;}
.y58{bottom:593.533474px;}
.y17{bottom:602.893482px;}
.y9d{bottom:605.413464px;}
.y102{bottom:606.883477px;}
.y57{bottom:608.323461px;}
.yd0{bottom:612.103435px;}
.y155{bottom:613.903449px;}
.y123{bottom:614.623418px;}
.y56{bottom:623.083418px;}
.y5a{bottom:623.623396px;}
.y16{bottom:625.063425px;}
.y9c{bottom:627.403415px;}
.yb7{bottom:628.123385px;}
.ycf{bottom:634.243395px;}
.y154{bottom:636.043362px;}
.y122{bottom:636.763377px;}
.y54{bottom:640.363359px;}
.y101{bottom:645.223378px;}
.y15{bottom:647.203338px;}
.y9b{bottom:649.543328px;}
.y53{bottom:654.943324px;}
.yce{bottom:656.383353px;}
.y153{bottom:658.003329px;}
.y121{bottom:658.723344px;}
.yff{bottom:667.903314px;}
.y52{bottom:669.703282px;}
.y14{bottom:669.883319px;}
.y9a{bottom:671.683288px;}
.ycd{bottom:678.343276px;}
.y152{bottom:680.143289px;}
.y120{bottom:680.863257px;}
.y51{bottom:684.463286px;}
.y55{bottom:685.183254px;}
.yfe{bottom:689.863235px;}
.y100{bottom:690.223265px;}
.y13{bottom:691.303264px;}
.y99{bottom:693.643255px;}
.ycc{bottom:700.483234px;}
.y4d{bottom:701.383241px;}
.y151{bottom:702.103210px;}
.y11f{bottom:702.823225px;}
.y12{bottom:713.443177px;}
.y98{bottom:715.783169px;}
.y4c{bottom:715.963207px;}
.ycb{bottom:722.623148px;}
.y50{bottom:723.343163px;}
.y150{bottom:724.243170px;}
.y11e{bottom:724.963185px;}
.y4b{bottom:730.723164px;}
.y11{bottom:736.123115px;}
.y97{bottom:737.743136px;}
.y4f{bottom:738.103120px;}
.yfd{bottom:739.183119px;}
.yfb{bottom:741.703102px;}
.yca{bottom:744.583115px;}
.y4a{bottom:745.483121px;}
.y14f{bottom:746.383128px;}
.y11d{bottom:747.103098px;}
.y4e{bottom:752.863077px;}
.y10{bottom:757.543058px;}
.y96{bottom:759.883094px;}
.y49{bottom:760.243080px;}
.yfa{bottom:763.663068px;}
.yc9{bottom:766.723074px;}
.yfc{bottom:768.163057px;}
.y14e{bottom:768.343051px;}
.y11c{bottom:769.063065px;}
.y48{bottom:775.003037px;}
.yf{bottom:779.503026px;}
.y95{bottom:782.023009px;}
.ye9{bottom:788.682995px;}
.yc8{bottom:789.403010px;}
.y14d{bottom:790.483009px;}
.y11b{bottom:791.202978px;}
.yf9{bottom:793.902999px;}
.y47{bottom:798.402987px;}
.ye{bottom:802.362954px;}
.yb6{bottom:803.982975px;}
.y94{bottom:804.702945px;}
.y42{bottom:805.782944px;}
.yc7{bottom:810.822955px;}
.y14c{bottom:812.442930px;}
.y46{bottom:813.162945px;}
.yf7{bottom:815.862920px;}
.y41{bottom:820.542901px;}
.yd{bottom:823.782899px;}
.y45{bottom:827.922903px;}
.yc6{bottom:832.962915px;}
.y14b{bottom:834.582890px;}
.y40{bottom:835.482896px;}
.y13c{bottom:835.842882px;}
.y93{bottom:836.022874px;}
.yf8{bottom:838.002879px;}
.y44{bottom:842.682860px;}
.yc{bottom:846.462881px;}
.y3f{bottom:850.062863px;}
.yc5{bottom:854.922836px;}
.y14a{bottom:856.722849px;}
.y92{bottom:858.162832px;}
.y43{bottom:864.822820px;}
.yb{bottom:868.602794px;}
.yf6{bottom:869.862785px;}
.yc4{bottom:877.107792px;}
.y149{bottom:878.727769px;}
.y91{bottom:880.167776px;}
.y3e{bottom:885.027771px;}
.ya{bottom:889.887744px;}
.yf5{bottom:892.047743px;}
.yc3{bottom:899.067737px;}
.y148{bottom:900.867728px;}
.y90{bottom:902.307711px;}
.y3a{bottom:904.827717px;}
.y9{bottom:912.027703px;}
.y3d{bottom:912.207695px;}
.y39{bottom:919.587674px;}
.yc2{bottom:921.207673px;}
.y15a{bottom:922.827672px;}
.y147{bottom:923.547664px;}
.y8f{bottom:924.267656px;}
.y3c{bottom:926.967654px;}
.yf4{bottom:930.747651px;}
.y8{bottom:934.167641px;}
.y38{bottom:934.347633px;}
.y3b{bottom:941.727611px;}
.yc1{bottom:943.347610px;}
.y146{bottom:944.967609px;}
.y8e{bottom:946.407614px;}
.y37{bottom:949.107612px;}
.yf3{bottom:952.887586px;}
.y7{bottom:956.127584px;}
.y36{bottom:963.867571px;}
.yc0{bottom:965.307554px;}
.y145{bottom:967.107567px;}
.y8d{bottom:968.547552px;}
.yf2{bottom:974.847531px;}
.y6{bottom:978.267521px;}
.y35{bottom:980.067535px;}
.ybf{bottom:987.447513px;}
.y144{bottom:989.067512px;}
.y8c{bottom:990.507495px;}
.yf1{bottom:996.987490px;}
.y5{bottom:1000.947480px;}
.y34{bottom:1003.107477px;}
.ybe{bottom:1009.407457px;}
.y143{bottom:1011.207448px;}
.y8b{bottom:1012.647432px;}
.y33{bottom:1017.867436px;}
.yf0{bottom:1018.947435px;}
.y32{bottom:1021.467418px;}
.ybd{bottom:1031.547394px;}
.y142{bottom:1033.167393px;}
.yef{bottom:1041.087370px;}
.y8a{bottom:1046.667359px;}
.ybc{bottom:1053.687330px;}
.y141{bottom:1055.307329px;}
.yee{bottom:1063.227307px;}
.ybb{bottom:1075.647285px;}
.y140{bottom:1077.447276px;}
.y89{bottom:1081.407266px;}
.yed{bottom:1085.187263px;}
.yba{bottom:1097.787233px;}
.y13f{bottom:1099.407221px;}
.yec{bottom:1107.327211px;}
.y88{bottom:1114.881186px;}
.yb9{bottom:1119.741169px;}
.y13e{bottom:1121.541172px;}
.yeb{bottom:1129.461151px;}
.yb8{bottom:1141.917121px;}
.y13d{bottom:1143.537119px;}
.y159{bottom:1144.257111px;}
.y87{bottom:1149.657096px;}
.yea{bottom:1151.457097px;}
.y86{bottom:1219.856925px;}
.y2{bottom:1234.076888px;}
.h7{height:36.179910px;}
.h8{height:36.287909px;}
.ha{height:48.774253px;}
.hb{height:53.015492px;}
.h4{height:53.999865px;}
.h5{height:54.107865px;}
.h3{height:59.438875px;}
.h9{height:69.654447px;}
.hc{height:71.613102px;}
.h6{height:80.819810px;}
.h10{height:97.919611px;}
.hd{height:97.919617px;}
.hf{height:97.919797px;}
.he{height:108.107730px;}
.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;}
.x62{left:50.579862px;}
.x54{left:53.639849px;}
.x19{left:55.079850px;}
.x6{left:59.219838px;}
.x1a{left:64.799826px;}
.x52{left:70.019811px;}
.x61{left:71.279808px;}
.x51{left:72.719805px;}
.x4b{left:82.079783px;}
.x65{left:98.315739px;}
.xd{left:104.615729px;}
.xa{left:108.935716px;}
.x5e{left:110.915709px;}
.x60{left:112.715700px;}
.xb{left:115.775694px;}
.x5d{left:123.515681px;}
.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;}
.x4f{left:156.989600px;}
.x5{left:180.389539px;}
.x55{left:224.849415px;}
.x50{left:248.429358px;}
.x5c{left:272.549301px;}
.x5b{left:278.354301px;}
.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;}
.x47{left:391.934020px;}
.x29{left:393.733987px;}
.x28{left:396.793993px;}
.x3c{left:399.493968px;}
.x37{left:402.013996px;}
.x57{left:403.453979px;}
.x2c{left:416.413923px;}
.x56{left:417.853952px;}
.x49{left:420.733920px;}
.x39{left:422.893919px;}
.x20{left:424.873924px;}
.x2d{left:438.553883px;}
.x2f{left:462.313817px;}
.x63{left:463.573810px;}
.x2{left:471.343825px;}
.x53{left:483.043777px;}
.x64{left:484.303768px;}
.x4d{left:508.783718px;}
.x58{left:527.503687px;}
.x59{left:543.523637px;}
.x4e{left:555.763612px;}
.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;}
.x3f{left:657.688329px;}
.x43{left:658.768329px;}
.x32{left:663.088326px;}
.x46{left:667.408321px;}
.x30{left:670.288288px;}
.x3e{left:672.448287px;}
.x5f{left:673.708325px;}
.x5a{left:676.588292px;}
.x44{left:678.568298px;}
.x41{left:688.468282px;}
.x24{left:693.868232px;}
.x40{left:707.368199px;}
.x26{left:730.588157px;}
.x3a{left:738.868120px;}
.x4a{left:755.428090px;}
@media print{
.v4{vertical-align:-27.519953pt;}
.v2{vertical-align:-26.239929pt;}
.v3{vertical-align:-2.559887pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560172pt;}
.v1{vertical-align:39.679911pt;}
.v6{vertical-align:47.999880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.028293pt;}
.ls1{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.196469pt;}
.lse{letter-spacing:0.196474pt;}
.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:176.415554pt;}
.ls13{letter-spacing:178.940278pt;}
.lsb{letter-spacing:218.724472pt;}
.ls2{letter-spacing:472.814503pt;}
.ws5{word-spacing:-17.855955pt;}
.ws4{word-spacing:-17.663956pt;}
.ws6{word-spacing:-14.463964pt;}
.ws3{word-spacing:-11.999202pt;}
.ws2{word-spacing:-11.963490pt;}
.ws1{word-spacing:-11.834850pt;}
.ws0{word-spacing:0.000000pt;}
._45{margin-left:-4.511770pt;}
._2{margin-left:-3.402930pt;}
._1f{margin-left:-1.983888pt;}
._1{margin-left:-0.895998pt;}
._0{width:1.279997pt;}
._b{width:2.495994pt;}
._c{width:3.967990pt;}
._4{width:5.727932pt;}
._3{width:6.954655pt;}
._17{width:7.893308pt;}
._f{width:9.663976pt;}
._18{width:10.687973pt;}
._19{width:11.722627pt;}
._31{width:12.725312pt;}
._9{width:13.631966pt;}
._8{width:14.655963pt;}
._16{width:15.551961pt;}
._12{width:16.447959pt;}
._7{width:18.602652pt;}
._1e{width:19.818553pt;}
._10{width:21.311947pt;}
._11{width:22.271944pt;}
._25{width:23.231942pt;}
._5{width:24.639938pt;}
._6{width:26.047935pt;}
._24{width:27.185844pt;}
._26{width:28.139025pt;}
._28{width:29.588830pt;}
._2d{width:30.548721pt;}
._2c{width:31.659017pt;}
._20{width:34.239914pt;}
._37{width:35.455911pt;}
._4d{width:36.415696pt;}
._43{width:37.311907pt;}
._46{width:38.463904pt;}
._15{width:39.359902pt;}
._14{width:40.575899pt;}
._1d{width:42.175895pt;}
._47{width:43.775677pt;}
._27{width:45.375887pt;}
._13{width:46.591884pt;}
._29{width:48.383879pt;}
._2a{width:49.471876pt;}
._2e{width:51.647871pt;}
._4f{width:52.543869pt;}
._33{width:53.897944pt;}
._2b{width:55.935753pt;}
._30{width:57.152070pt;}
._38{width:58.239428pt;}
._23{width:59.327852pt;}
._1b{width:60.287849pt;}
._1a{width:61.503846pt;}
._36{width:62.911843pt;}
._21{width:64.447839pt;}
._22{width:65.343837pt;}
._4c{width:66.687833pt;}
._a{width:67.903830pt;}
._48{width:69.759826pt;}
._49{width:70.975823pt;}
._4a{width:72.383819pt;}
._35{width:73.599816pt;}
._4e{width:74.495814pt;}
._1c{width:75.647811pt;}
._d{width:77.055807pt;}
._e{width:78.143805pt;}
._2f{width:79.103802pt;}
._44{width:80.063800pt;}
._32{width:81.280421pt;}
._34{width:82.325197pt;}
._4b{width:84.309117pt;}
._3c{width:295.391224pt;}
._41{width:304.351324pt;}
._39{width:317.311116pt;}
._3f{width:326.455429pt;}
._3b{width:337.183205pt;}
._3d{width:346.143140pt;}
._42{width:354.911006pt;}
._3a{width:356.329803pt;}
._3e{width:364.063181pt;}
._40{width:373.745535pt;}
.fs4{font-size:42.879893pt;}
.fs5{font-size:43.007892pt;}
.fs0{font-size:53.119867pt;}
.fs3{font-size:58.879853pt;}
.fs1{font-size:63.999840pt;}
.fs2{font-size:64.127840pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.442829pt;}
.y85{bottom:7.999980pt;}
.y3{bottom:21.119902pt;}
.y31{bottom:26.559911pt;}
.y30{bottom:46.079882pt;}
.y4{bottom:48.319866pt;}
.y2f{bottom:65.146484pt;}
.yb5{bottom:67.226476pt;}
.ye8{bottom:73.306458pt;}
.y11a{bottom:75.226456pt;}
.y13b{bottom:75.386449pt;}
.y2e{bottom:84.666455pt;}
.yb4{bottom:86.906440pt;}
.y82{bottom:90.586444pt;}
.ye7{bottom:92.986421pt;}
.y119{bottom:94.906420pt;}
.y13a{bottom:95.066413pt;}
.y81{bottom:103.546372pt;}
.y2d{bottom:104.346419pt;}
.yb3{bottom:106.426410pt;}
.ye6{bottom:112.506392pt;}
.y118{bottom:114.426390pt;}
.y139{bottom:114.746377pt;}
.y80{bottom:116.666375pt;}
.y84{bottom:116.826368pt;}
.y2c{bottom:124.026302pt;}
.yb2{bottom:126.106293pt;}
.y7f{bottom:129.786297pt;}
.ye5{bottom:132.186275pt;}
.y117{bottom:134.106273pt;}
.y138{bottom:134.266347pt;}
.y7e{bottom:142.906300pt;}
.y2b{bottom:143.546272pt;}
.yb1{bottom:145.786257pt;}
.y83{bottom:146.266317pt;}
.ye4{bottom:151.706245pt;}
.y116{bottom:153.626244pt;}
.y137{bottom:153.946230pt;}
.y7c{bottom:160.986251pt;}
.y2a{bottom:163.226236pt;}
.yb0{bottom:165.306228pt;}
.ye3{bottom:171.386209pt;}
.y115{bottom:173.306208pt;}
.y136{bottom:173.466201pt;}
.y7b{bottom:174.106173pt;}
.y29{bottom:182.906200pt;}
.yaf{bottom:184.986191pt;}
.y7a{bottom:187.226176pt;}
.ye2{bottom:191.066173pt;}
.y114{bottom:192.986171pt;}
.y135{bottom:193.146164pt;}
.y79{bottom:200.346179pt;}
.y7d{bottom:200.826158pt;}
.y28{bottom:202.426170pt;}
.yae{bottom:204.506162pt;}
.ye1{bottom:210.586144pt;}
.y113{bottom:212.506142pt;}
.y134{bottom:212.826128pt;}
.y78{bottom:215.706085pt;}
.y27{bottom:222.106053pt;}
.y73{bottom:222.266127pt;}
.yad{bottom:224.186045pt;}
.y77{bottom:228.826088pt;}
.ye0{bottom:230.266107pt;}
.y112{bottom:232.186025pt;}
.y133{bottom:232.346099pt;}
.y72{bottom:235.226056pt;}
.y26{bottom:241.626024pt;}
.y76{bottom:241.786017pt;}
.yac{bottom:243.866008pt;}
.y71{bottom:248.346059pt;}
.ydf{bottom:249.785997pt;}
.y111{bottom:251.705995pt;}
.y132{bottom:252.025982pt;}
.y75{bottom:254.906020pt;}
.y25{bottom:261.305988pt;}
.y70{bottom:261.625974pt;}
.yab{bottom:263.385979pt;}
.y74{bottom:268.665995pt;}
.yde{bottom:269.465961pt;}
.y110{bottom:271.385959pt;}
.y131{bottom:271.545952pt;}
.y24{bottom:280.985951pt;}
.yaa{bottom:283.065943pt;}
.y6c{bottom:283.225936pt;}
.ydd{bottom:289.145924pt;}
.y6f{bottom:289.785897pt;}
.y10f{bottom:291.065923pt;}
.y130{bottom:291.225916pt;}
.y6b{bottom:296.345939pt;}
.y23{bottom:300.505922pt;}
.ya9{bottom:302.625871pt;}
.y6e{bottom:302.945857pt;}
.ydc{bottom:308.705852pt;}
.y6a{bottom:309.505900pt;}
.y10e{bottom:310.625851pt;}
.y12f{bottom:310.945837pt;}
.y22{bottom:320.225843pt;}
.ya8{bottom:322.305836pt;}
.y69{bottom:322.625821pt;}
.y6d{bottom:323.105800pt;}
.ydb{bottom:328.385816pt;}
.y10d{bottom:330.305816pt;}
.y12e{bottom:330.465809pt;}
.y21{bottom:339.745815pt;}
.ya7{bottom:341.985798pt;}
.y67{bottom:344.385776pt;}
.yda{bottom:347.905788pt;}
.y10c{bottom:349.825785pt;}
.y12d{bottom:350.145771pt;}
.y66{bottom:357.505780pt;}
.y20{bottom:359.425777pt;}
.ya6{bottom:361.505770pt;}
.yd9{bottom:367.585752pt;}
.y10b{bottom:369.505750pt;}
.y12c{bottom:369.665743pt;}
.y65{bottom:370.625701pt;}
.y68{bottom:377.665723pt;}
.y1f{bottom:379.105660pt;}
.ya5{bottom:381.185652pt;}
.yd8{bottom:387.265714pt;}
.y10a{bottom:389.185632pt;}
.y12b{bottom:389.345707pt;}
.y63{bottom:392.385656pt;}
.y1e{bottom:398.625631pt;}
.ya4{bottom:400.705622pt;}
.y62{bottom:405.505660pt;}
.yd7{bottom:406.785604pt;}
.y109{bottom:408.705602pt;}
.y12a{bottom:409.025589pt;}
.y1d{bottom:418.305596pt;}
.y61{bottom:418.625581pt;}
.ya3{bottom:420.385586pt;}
.yd6{bottom:426.465569pt;}
.y129{bottom:428.545559pt;}
.y60{bottom:431.745585pt;}
.y64{bottom:432.225563pt;}
.y1c{bottom:437.825565pt;}
.ya2{bottom:440.065551pt;}
.y107{bottom:445.825545pt;}
.yd5{bottom:445.985538pt;}
.y128{bottom:448.225523pt;}
.y5e{bottom:453.505498pt;}
.y106{bottom:455.745525pt;}
.y1b{bottom:457.505488pt;}
.ya1{bottom:459.585480pt;}
.yd4{bottom:465.665463pt;}
.y108{bottom:465.825495pt;}
.y5d{bottom:466.465469pt;}
.y127{bottom:467.745495pt;}
.y1a{bottom:477.185452pt;}
.ya0{bottom:479.265445pt;}
.y5c{bottom:479.585430pt;}
.yd3{bottom:485.345425pt;}
.y105{bottom:485.665413pt;}
.y158{bottom:486.785444pt;}
.y126{bottom:487.425417pt;}
.y5b{bottom:492.865427pt;}
.y104{bottom:495.585390pt;}
.y19{bottom:496.705382pt;}
.y9f{bottom:498.945409pt;}
.y5f{bottom:499.745415pt;}
.yd2{bottom:504.865397pt;}
.y157{bottom:506.465369pt;}
.y125{bottom:507.105382pt;}
.y59{bottom:514.465349pt;}
.y18{bottom:516.385346pt;}
.y9e{bottom:518.465339pt;}
.yd1{bottom:524.545319pt;}
.y156{bottom:525.985338pt;}
.y124{bottom:526.625311pt;}
.y103{bottom:527.425317pt;}
.y58{bottom:527.585310pt;}
.y17{bottom:535.905318pt;}
.y9d{bottom:538.145301pt;}
.y102{bottom:539.451979pt;}
.y57{bottom:540.731966pt;}
.yd0{bottom:544.091942pt;}
.y155{bottom:545.691954pt;}
.y123{bottom:546.331928pt;}
.y56{bottom:553.851927pt;}
.y5a{bottom:554.331908pt;}
.y16{bottom:555.611934pt;}
.y9c{bottom:557.691924pt;}
.yb7{bottom:558.331898pt;}
.ycf{bottom:563.771907pt;}
.y154{bottom:565.371877pt;}
.y122{bottom:566.011890pt;}
.y54{bottom:569.211874pt;}
.y101{bottom:573.531892pt;}
.y15{bottom:575.291856pt;}
.y9b{bottom:577.371847pt;}
.y53{bottom:582.171843pt;}
.yce{bottom:583.451869pt;}
.y153{bottom:584.891848pt;}
.y121{bottom:585.531862pt;}
.yff{bottom:593.691834pt;}
.y52{bottom:595.291806pt;}
.y14{bottom:595.451839pt;}
.y9a{bottom:597.051811pt;}
.ycd{bottom:602.971801pt;}
.y152{bottom:604.571813pt;}
.y120{bottom:605.211784pt;}
.y51{bottom:608.411810pt;}
.y55{bottom:609.051781pt;}
.yfe{bottom:613.211764pt;}
.y100{bottom:613.531792pt;}
.y13{bottom:614.491790pt;}
.y99{bottom:616.571783pt;}
.ycc{bottom:622.651763pt;}
.y4d{bottom:623.451769pt;}
.y151{bottom:624.091742pt;}
.y11f{bottom:624.731756pt;}
.y12{bottom:634.171713pt;}
.y98{bottom:636.251705pt;}
.y4c{bottom:636.411740pt;}
.ycb{bottom:642.331688pt;}
.y50{bottom:642.971701pt;}
.y150{bottom:643.771707pt;}
.y11e{bottom:644.411720pt;}
.y4b{bottom:649.531702pt;}
.y11{bottom:654.331658pt;}
.y97{bottom:655.771677pt;}
.y4f{bottom:656.091662pt;}
.yfd{bottom:657.051661pt;}
.yfb{bottom:659.291646pt;}
.yca{bottom:661.851657pt;}
.y4a{bottom:662.651663pt;}
.y14f{bottom:663.451669pt;}
.y11d{bottom:664.091642pt;}
.y4e{bottom:669.211624pt;}
.y10{bottom:673.371607pt;}
.y96{bottom:675.451639pt;}
.y49{bottom:675.771627pt;}
.yfa{bottom:678.811616pt;}
.yc9{bottom:681.531622pt;}
.yfc{bottom:682.811606pt;}
.y14e{bottom:682.971601pt;}
.y11c{bottom:683.611614pt;}
.y48{bottom:688.891588pt;}
.yf{bottom:692.891578pt;}
.y95{bottom:695.131564pt;}
.ye9{bottom:701.051551pt;}
.yc8{bottom:701.691564pt;}
.y14d{bottom:702.651563pt;}
.y11b{bottom:703.291536pt;}
.yf9{bottom:705.691554pt;}
.y47{bottom:709.691544pt;}
.ye{bottom:713.211514pt;}
.yb6{bottom:714.651533pt;}
.y94{bottom:715.291506pt;}
.y42{bottom:716.251505pt;}
.yc7{bottom:720.731516pt;}
.y14c{bottom:722.171493pt;}
.y46{bottom:722.811506pt;}
.yf7{bottom:725.211484pt;}
.y41{bottom:729.371467pt;}
.yd{bottom:732.251465pt;}
.y45{bottom:735.931470pt;}
.yc6{bottom:740.411480pt;}
.y14b{bottom:741.851457pt;}
.y40{bottom:742.651463pt;}
.y13c{bottom:742.971451pt;}
.y93{bottom:743.131444pt;}
.yf8{bottom:744.891448pt;}
.y44{bottom:749.051431pt;}
.yc{bottom:752.411450pt;}
.y3f{bottom:755.611434pt;}
.yc5{bottom:759.931410pt;}
.y14a{bottom:761.531422pt;}
.y92{bottom:762.811406pt;}
.y43{bottom:768.731396pt;}
.yb{bottom:772.091372pt;}
.yf6{bottom:773.211364pt;}
.yc4{bottom:779.651371pt;}
.y149{bottom:781.091350pt;}
.y91{bottom:782.371356pt;}
.y3e{bottom:786.691352pt;}
.ya{bottom:791.011328pt;}
.yf5{bottom:792.931327pt;}
.yc3{bottom:799.171322pt;}
.y148{bottom:800.771314pt;}
.y90{bottom:802.051299pt;}
.y3a{bottom:804.291304pt;}
.y9{bottom:810.691292pt;}
.y3d{bottom:810.851285pt;}
.y39{bottom:817.411266pt;}
.yc2{bottom:818.851265pt;}
.y15a{bottom:820.291264pt;}
.y147{bottom:820.931257pt;}
.y8f{bottom:821.571250pt;}
.y3c{bottom:823.971248pt;}
.yf4{bottom:827.331245pt;}
.y8{bottom:830.371236pt;}
.y38{bottom:830.531229pt;}
.y3b{bottom:837.091210pt;}
.yc1{bottom:838.531209pt;}
.y146{bottom:839.971208pt;}
.y8e{bottom:841.251213pt;}
.y37{bottom:843.651211pt;}
.yf3{bottom:847.011188pt;}
.y7{bottom:849.891186pt;}
.y36{bottom:856.771174pt;}
.yc0{bottom:858.051159pt;}
.y145{bottom:859.651171pt;}
.y8d{bottom:860.931157pt;}
.yf2{bottom:866.531139pt;}
.y6{bottom:869.571130pt;}
.y35{bottom:871.171142pt;}
.ybf{bottom:877.731123pt;}
.y144{bottom:879.171122pt;}
.y8c{bottom:880.451107pt;}
.yf1{bottom:886.211102pt;}
.y5{bottom:889.731093pt;}
.y34{bottom:891.651091pt;}
.ybe{bottom:897.251073pt;}
.y143{bottom:898.851065pt;}
.y8b{bottom:900.131051pt;}
.y33{bottom:904.771054pt;}
.yf0{bottom:905.731053pt;}
.y32{bottom:907.971038pt;}
.ybd{bottom:916.931017pt;}
.y142{bottom:918.371016pt;}
.yef{bottom:925.410996pt;}
.y8a{bottom:930.370986pt;}
.ybc{bottom:936.610960pt;}
.y141{bottom:938.050959pt;}
.yee{bottom:945.090940pt;}
.ybb{bottom:956.130920pt;}
.y140{bottom:957.730912pt;}
.y89{bottom:961.250904pt;}
.yed{bottom:964.610900pt;}
.yba{bottom:975.810874pt;}
.y13f{bottom:977.250864pt;}
.yec{bottom:984.290854pt;}
.y88{bottom:991.005498pt;}
.yb9{bottom:995.325484pt;}
.y13e{bottom:996.925486pt;}
.yeb{bottom:1003.965467pt;}
.yb8{bottom:1015.037441pt;}
.y13d{bottom:1016.477439pt;}
.y159{bottom:1017.117432pt;}
.y87{bottom:1021.917419pt;}
.yea{bottom:1023.517420pt;}
.y86{bottom:1084.317267pt;}
.y2{bottom:1096.957234pt;}
.h7{height:32.159920pt;}
.h8{height:32.255919pt;}
.ha{height:43.354892pt;}
.hb{height:47.124882pt;}
.h4{height:47.999880pt;}
.h5{height:48.095880pt;}
.h3{height:52.834555pt;}
.h9{height:61.915064pt;}
.hc{height:63.656091pt;}
.h6{height:71.839831pt;}
.h10{height:87.039654pt;}
.hd{height:87.039660pt;}
.hf{height:87.039820pt;}
.he{height:96.095760pt;}
.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;}
.x62{left:44.959877pt;}
.x54{left:47.679866pt;}
.x19{left:48.959867pt;}
.x6{left:52.639856pt;}
.x1a{left:57.599845pt;}
.x52{left:62.239832pt;}
.x61{left:63.359830pt;}
.x51{left:64.639826pt;}
.x4b{left:72.959807pt;}
.x65{left:87.391768pt;}
.xd{left:92.991760pt;}
.xa{left:96.831747pt;}
.x5e{left:98.591742pt;}
.x60{left:100.191734pt;}
.xb{left:102.911728pt;}
.x5d{left:109.791716pt;}
.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;}
.x4f{left:139.546311pt;}
.x5{left:160.346256pt;}
.x55{left:199.866147pt;}
.x50{left:220.826096pt;}
.x5c{left:242.266045pt;}
.x5b{left:247.426045pt;}
.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;}
.x47{left:348.385796pt;}
.x29{left:349.985766pt;}
.x28{left:352.705772pt;}
.x3c{left:355.105750pt;}
.x37{left:357.345775pt;}
.x57{left:358.625759pt;}
.x2c{left:370.145709pt;}
.x56{left:371.425735pt;}
.x49{left:373.985706pt;}
.x39{left:375.905706pt;}
.x20{left:377.665711pt;}
.x2d{left:389.825673pt;}
.x2f{left:410.945615pt;}
.x63{left:412.065609pt;}
.x2{left:418.972289pt;}
.x53{left:429.372247pt;}
.x64{left:430.492238pt;}
.x4d{left:452.252193pt;}
.x58{left:468.892166pt;}
.x59{left:483.132122pt;}
.x4e{left:494.012100pt;}
.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;}
.x3f{left:584.611848pt;}
.x43{left:585.571848pt;}
.x32{left:589.411845pt;}
.x46{left:593.251841pt;}
.x30{left:595.811812pt;}
.x3e{left:597.731811pt;}
.x5f{left:598.851844pt;}
.x5a{left:601.411815pt;}
.x44{left:603.171820pt;}
.x41{left:611.971806pt;}
.x24{left:616.771762pt;}
.x40{left:628.771732pt;}
.x26{left:649.411695pt;}
.x3a{left:656.771662pt;}
.x4a{left:671.491636pt;}
}




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