
    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_971441567bb774937c16e289.woff')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_e161e53627c72f15e40f6f3a.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_a11152dea0915424c9fdc942.woff')format("woff");}.ff3{font-family:ff3;line-height:0.988281;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_cc1a2a0df8c65ab911531433.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_0d7a8e0099825d3c2481472c.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_99bdbfaed064ffa9c4d3c5a6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_69d4a4423cefcebd785c337c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000012px;}
.ls1{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.221027px;}
.lse{letter-spacing:0.221033px;}
.ls13{letter-spacing:0.359999px;}
.ls14{letter-spacing:0.360041px;}
.ls10{letter-spacing:0.576101px;}
.ls18{letter-spacing:0.576107px;}
.ls11{letter-spacing:0.756094px;}
.ls7{letter-spacing:53.645470px;}
.lsc{letter-spacing:69.485514px;}
.ls16{letter-spacing:77.327879px;}
.ls5{letter-spacing:98.465364px;}
.ls17{letter-spacing:100.367803px;}
.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;}
.ls15{letter-spacing:158.687615px;}
.lsa{letter-spacing:167.585305px;}
.ls6{letter-spacing:169.025247px;}
.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;}
}
.ws6{word-spacing:-71.999820px;}
.ws5{word-spacing:-20.087950px;}
.ws4{word-spacing:-19.871950px;}
.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;}
._5{margin-left:-2.087995px;}
._1{margin-left:-1.007997px;}
._0{width:1.439996px;}
._a{width:2.519994px;}
._b{width:3.887990px;}
._e{width:4.967988px;}
._d{width:6.407984px;}
._16{width:8.279973px;}
._9{width:9.575976px;}
._7{width:11.519971px;}
._8{width:12.743968px;}
._c{width:14.255964px;}
._4{width:15.623961px;}
._6{width:16.991958px;}
._19{width:18.863953px;}
._1d{width:21.095947px;}
._12{width:22.175945px;}
._13{width:23.327942px;}
._15{width:24.335939px;}
._1b{width:25.343937px;}
._21{width:26.423934px;}
._1c{width:28.295929px;}
._14{width:29.303927px;}
._20{width:30.527918px;}
._17{width:31.751921px;}
._3{width:33.629119px;}
._10{width:35.223647px;}
._11{width:36.832161px;}
._22{width:38.879903px;}
._26{width:39.959900px;}
._f{width:40.967898px;}
._18{width:42.479894px;}
._28{width:44.751389px;}
._27{width:46.372029px;}
._29{width:47.807880px;}
._25{width:49.103877px;}
._24{width:51.335872px;}
._23{width:52.703868px;}
._1e{width:55.673390px;}
._1f{width:57.959855px;}
._3b{width:60.839854px;}
._3c{width:62.423838px;}
._3d{width:65.519836px;}
._39{width:76.363651px;}
._38{width:82.439794px;}
._37{width:83.951790px;}
._3a{width:85.463774px;}
._1a{width:86.615783px;}
._31{width:90.179631px;}
._30{width:123.239788px;}
._35{width:129.347743px;}
._2e{width:157.583636px;}
._34{width:163.127502px;}
._2d{width:169.235463px;}
._2f{width:182.339490px;}
._2c{width:203.015588px;}
._2a{width:221.303405px;}
._33{width:222.947545px;}
._36{width:229.289043px;}
._2b{width:262.835349px;}
._32{width:391.654973px;}
.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;}
.y116{bottom:72.929810px;}
.y2f{bottom:73.289794px;}
.ya0{bottom:77.969777px;}
.ye5{bottom:80.309766px;}
.y145{bottom:83.189734px;}
.y2e{bottom:95.249762px;}
.y115{bottom:97.769745px;}
.y9f{bottom:100.109735px;}
.y82{bottom:101.909750px;}
.ye4{bottom:102.449726px;}
.y144{bottom:105.329693px;}
.y81{bottom:116.489668px;}
.y2d{bottom:117.389722px;}
.y114{bottom:119.909705px;}
.y9e{bottom:122.069702px;}
.ye3{bottom:124.589686px;}
.y143{bottom:127.289659px;}
.y80{bottom:131.249672px;}
.y84{bottom:131.429664px;}
.y2c{bottom:139.529590px;}
.y113{bottom:143.489601px;}
.y9d{bottom:144.209570px;}
.y7f{bottom:146.009584px;}
.ye2{bottom:146.549652px;}
.y142{bottom:149.429619px;}
.y7e{bottom:160.769588px;}
.y2b{bottom:161.489556px;}
.y83{bottom:164.549607px;}
.y112{bottom:165.629560px;}
.y9c{bottom:166.169537px;}
.ye1{bottom:168.689520px;}
.y141{bottom:172.289547px;}
.y7c{bottom:181.109532px;}
.y2a{bottom:183.629515px;}
.y9b{bottom:188.309496px;}
.ye0{bottom:190.649487px;}
.y140{bottom:193.529455px;}
.y7b{bottom:195.869444px;}
.y111{bottom:200.009449px;}
.y29{bottom:205.769475px;}
.y9a{bottom:210.449456px;}
.y7a{bottom:210.629448px;}
.ydf{bottom:212.789446px;}
.y13f{bottom:215.669413px;}
.y79{bottom:225.389452px;}
.y7d{bottom:225.929428px;}
.y28{bottom:227.729441px;}
.y99{bottom:232.409423px;}
.yde{bottom:234.929405px;}
.y110{bottom:236.009359px;}
.y13e{bottom:237.629380px;}
.y78{bottom:242.669345px;}
.y27{bottom:249.869309px;}
.y73{bottom:250.049393px;}
.y98{bottom:254.549382px;}
.ydd{bottom:256.889373px;}
.y77{bottom:257.429349px;}
.y13d{bottom:259.769340px;}
.y10e{bottom:261.929338px;}
.y72{bottom:264.629313px;}
.y26{bottom:271.829277px;}
.y76{bottom:272.009269px;}
.y10d{bottom:273.089314px;}
.y97{bottom:276.509258px;}
.ydc{bottom:279.029241px;}
.y71{bottom:279.389317px;}
.y13c{bottom:281.909300px;}
.y10f{bottom:284.069297px;}
.y75{bottom:286.769273px;}
.y25{bottom:293.969237px;}
.y70{bottom:294.329221px;}
.y96{bottom:298.649217px;}
.ydb{bottom:300.989207px;}
.y74{bottom:302.249244px;}
.y13b{bottom:303.869174px;}
.y10c{bottom:314.129189px;}
.y24{bottom:316.109195px;}
.y6c{bottom:318.629178px;}
.y95{bottom:320.789176px;}
.yda{bottom:323.129167px;}
.y6f{bottom:326.009134px;}
.y6b{bottom:333.389182px;}
.y10b{bottom:336.269149px;}
.y23{bottom:338.069162px;}
.y6e{bottom:340.814089px;}
.y94{bottom:342.794095px;}
.yd9{bottom:345.314078px;}
.y13a{bottom:348.014145px;}
.y6a{bottom:348.194137px;}
.y22{bottom:360.254074px;}
.y69{bottom:362.954049px;}
.y6d{bottom:363.494025px;}
.y93{bottom:364.934055px;}
.yd8{bottom:367.274046px;}
.y139{bottom:370.154013px;}
.y109{bottom:372.134019px;}
.y21{bottom:382.214041px;}
.y92{bottom:387.074014px;}
.y67{bottom:387.433998px;}
.yd7{bottom:389.414004px;}
.y138{bottom:392.293971px;}
.y108{bottom:394.273978px;}
.y66{bottom:402.194002px;}
.y20{bottom:404.354000px;}
.y91{bottom:409.033982px;}
.yd6{bottom:411.373972px;}
.y137{bottom:414.253939px;}
.y107{bottom:416.233944px;}
.y65{bottom:416.953914px;}
.y68{bottom:424.873938px;}
.y1f{bottom:426.493868px;}
.y90{bottom:431.173940px;}
.yd5{bottom:433.513931px;}
.y136{bottom:436.393899px;}
.y10a{bottom:438.373904px;}
.y106{bottom:439.093874px;}
.y63{bottom:441.433863px;}
.y1e{bottom:448.453835px;}
.y8f{bottom:453.133816px;}
.yd4{bottom:455.653799px;}
.y62{bottom:456.193867px;}
.y135{bottom:458.353865px;}
.y105{bottom:460.513864px;}
.y1d{bottom:470.593795px;}
.y61{bottom:470.953779px;}
.y8e{bottom:475.273776px;}
.yd3{bottom:477.613765px;}
.y134{bottom:480.493733px;}
.y104{bottom:482.473738px;}
.y60{bottom:485.713783px;}
.y64{bottom:486.253759px;}
.y1c{bottom:492.553761px;}
.y8d{bottom:497.413734px;}
.yd2{bottom:499.753725px;}
.y133{bottom:502.633737px;}
.y103{bottom:504.613698px;}
.y5e{bottom:510.193686px;}
.y1b{bottom:514.693674px;}
.y8c{bottom:519.373657px;}
.yd1{bottom:521.713693px;}
.y132{bottom:524.593660px;}
.y5d{bottom:524.773652px;}
.y102{bottom:526.573666px;}
.y1a{bottom:536.833634px;}
.y5c{bottom:539.533609px;}
.y8b{bottom:541.513615px;}
.yd0{bottom:543.853606px;}
.y131{bottom:546.733618px;}
.y101{bottom:548.713625px;}
.y5b{bottom:554.473605px;}
.y19{bottom:558.793555px;}
.y5f{bottom:562.213591px;}
.y8a{bottom:563.473582px;}
.ycf{bottom:565.993566px;}
.y130{bottom:568.693539px;}
.y100{bottom:570.853538px;}
.y59{bottom:578.773517px;}
.y18{bottom:580.933515px;}
.y89{bottom:585.613495px;}
.yce{bottom:587.953487px;}
.y12f{bottom:590.833499px;}
.yff{bottom:592.813506px;}
.y58{bottom:593.533474px;}
.y17{bottom:602.893482px;}
.y88{bottom:607.783439px;}
.y57{bottom:608.323461px;}
.ycd{bottom:610.123430px;}
.y12e{bottom:613.003442px;}
.y146{bottom:613.723457px;}
.yfe{bottom:614.983448px;}
.y56{bottom:623.083418px;}
.y5a{bottom:623.623396px;}
.y16{bottom:625.063425px;}
.ya1{bottom:629.743406px;}
.y87{bottom:630.463421px;}
.ycc{bottom:632.263388px;}
.y12d{bottom:634.963410px;}
.yfd{bottom:636.943369px;}
.y54{bottom:640.363359px;}
.y15{bottom:647.203338px;}
.ycb{bottom:654.223355px;}
.y53{bottom:654.943324px;}
.y12c{bottom:657.103323px;}
.yfc{bottom:659.083328px;}
.y52{bottom:669.703282px;}
.y14{bottom:669.883319px;}
.yb4{bottom:672.043272px;}
.yca{bottom:676.363269px;}
.y12b{bottom:679.063290px;}
.yfb{bottom:681.223288px;}
.y51{bottom:684.463286px;}
.y55{bottom:685.183254px;}
.y13{bottom:691.303264px;}
.yb3{bottom:694.003239px;}
.yc9{bottom:698.323236px;}
.y12a{bottom:701.203203px;}
.y4d{bottom:701.383241px;}
.yfa{bottom:703.183209px;}
.y12{bottom:713.443177px;}
.y4c{bottom:715.963207px;}
.yb2{bottom:716.143199px;}
.yc8{bottom:720.463196px;}
.y50{bottom:723.343163px;}
.yf9{bottom:725.323169px;}
.y4b{bottom:730.723164px;}
.y11{bottom:736.123115px;}
.y4f{bottom:738.103120px;}
.yb1{bottom:738.283112px;}
.yc7{bottom:742.603109px;}
.y129{bottom:745.303129px;}
.y4a{bottom:745.483121px;}
.yf8{bottom:747.283090px;}
.y4e{bottom:752.863077px;}
.y10{bottom:757.543058px;}
.y49{bottom:760.243080px;}
.yc6{bottom:764.563077px;}
.y128{bottom:767.443042px;}
.yf7{bottom:769.423049px;}
.y48{bottom:775.003037px;}
.yf{bottom:779.503026px;}
.yb0{bottom:782.383038px;}
.yc5{bottom:786.702990px;}
.y127{bottom:789.583002px;}
.yf6{bottom:791.563009px;}
.y47{bottom:798.402987px;}
.ye{bottom:802.362954px;}
.yaf{bottom:804.342961px;}
.y42{bottom:805.782944px;}
.yc4{bottom:808.662956px;}
.y126{bottom:811.542923px;}
.y46{bottom:813.162945px;}
.yf5{bottom:813.522930px;}
.y41{bottom:820.542901px;}
.yd{bottom:823.782899px;}
.yae{bottom:826.482919px;}
.y45{bottom:827.922903px;}
.yc3{bottom:830.802915px;}
.y125{bottom:833.682883px;}
.y40{bottom:835.482896px;}
.yf4{bottom:835.662888px;}
.y44{bottom:842.682860px;}
.yc{bottom:846.462881px;}
.yad{bottom:848.622833px;}
.y3f{bottom:850.062863px;}
.yc2{bottom:852.942829px;}
.y124{bottom:855.642850px;}
.yf3{bottom:857.802848px;}
.y43{bottom:864.822820px;}
.yb{bottom:868.602794px;}
.yac{bottom:870.582800px;}
.yc1{bottom:874.947795px;}
.y123{bottom:877.827762px;}
.yf2{bottom:879.807767px;}
.y3e{bottom:885.027771px;}
.ya{bottom:889.887744px;}
.yab{bottom:892.767735px;}
.yc0{bottom:897.087730px;}
.y122{bottom:899.967722px;}
.yf1{bottom:901.947727px;}
.y3a{bottom:904.827717px;}
.y9{bottom:912.027703px;}
.y3d{bottom:912.207695px;}
.yaa{bottom:914.727679px;}
.ybf{bottom:919.047675px;}
.y39{bottom:919.587674px;}
.y121{bottom:921.927665px;}
.yf0{bottom:923.907671px;}
.y3c{bottom:926.967654px;}
.y8{bottom:934.167641px;}
.y38{bottom:934.347633px;}
.ya9{bottom:936.867638px;}
.ybe{bottom:941.187611px;}
.y3b{bottom:941.727611px;}
.y120{bottom:944.067625px;}
.yef{bottom:946.047608px;}
.y37{bottom:949.107612px;}
.y7{bottom:956.127584px;}
.ya8{bottom:959.007574px;}
.ybd{bottom:963.327571px;}
.y36{bottom:963.867571px;}
.y11f{bottom:966.027568px;}
.yee{bottom:968.187544px;}
.y6{bottom:978.267521px;}
.y35{bottom:980.067535px;}
.ybc{bottom:985.287514px;}
.y11e{bottom:988.167506px;}
.yed{bottom:990.147489px;}
.ya7{bottom:997.167483px;}
.y5{bottom:1000.947480px;}
.y34{bottom:1003.107477px;}
.ybb{bottom:1007.427451px;}
.y11d{bottom:1010.307441px;}
.yec{bottom:1012.287447px;}
.y33{bottom:1017.867436px;}
.y32{bottom:1021.467418px;}
.yba{bottom:1029.387395px;}
.y11c{bottom:1032.267386px;}
.yeb{bottom:1034.247392px;}
.ya6{bottom:1036.227375px;}
.yb9{bottom:1051.527355px;}
.y11b{bottom:1054.407344px;}
.yea{bottom:1056.387328px;}
.ya5{bottom:1062.507315px;}
.yb8{bottom:1073.667292px;}
.y11a{bottom:1076.367290px;}
.ye9{bottom:1078.527275px;}
.yb7{bottom:1095.627235px;}
.y119{bottom:1098.507225px;}
.ya4{bottom:1099.947220px;}
.ye8{bottom:1100.487220px;}
.yb6{bottom:1117.761176px;}
.y118{bottom:1120.641177px;}
.ye7{bottom:1122.621171px;}
.ya3{bottom:1126.221165px;}
.yb5{bottom:1139.721131px;}
.y117{bottom:1142.637112px;}
.ye6{bottom:1144.617119px;}
.ya2{bottom:1153.257088px;}
.y86{bottom:1219.856925px;}
.y2{bottom:1234.076888px;}
.ha{height:36.179910px;}
.h8{height:37.640297px;}
.h9{height:37.752656px;}
.hc{height:48.774253px;}
.hd{height:53.015492px;}
.h4{height:53.999865px;}
.he{height:54.107865px;}
.h5{height:56.179547px;}
.h6{height:56.291906px;}
.h3{height:59.438875px;}
.hf{height:60.679536px;}
.hb{height:69.654447px;}
.h7{height:82.280197px;}
.h10{height:97.919797px;}
.h12{height:100.819447px;}
.h11{height:100.819453px;}
.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;}
.x19{left:55.079850px;}
.x6{left:59.219838px;}
.x1a{left:64.799826px;}
.x4d{left:70.019811px;}
.x4b{left:82.079783px;}
.x5b{left:87.335767px;}
.x5a{left:90.575759px;}
.x59{left:96.515748px;}
.x5c{left:103.535731px;}
.xd{left:104.615729px;}
.xa{left:108.935716px;}
.x56{left:113.255700px;}
.xb{left:115.775694px;}
.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;}
.x5{left:180.389539px;}
.x55{left:207.929459px;}
.x52{left:250.049357px;}
.x53{left:258.149350px;}
.x50{left:292.574260px;}
.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;}
.x2c{left:416.413923px;}
.x49{left:420.733920px;}
.x39{left:422.893919px;}
.x20{left:424.873924px;}
.x2d{left:438.553883px;}
.x2f{left:462.313817px;}
.x2{left:471.343825px;}
.x4e{left:483.043777px;}
.x27{left:576.463542px;}
.x1c{left:577.723533px;}
.x51{left:591.403491px;}
.x57{left:595.903480px;}
.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;}
.x44{left:678.568298px;}
.x41{left:688.468282px;}
.x24{left:693.868232px;}
.x40{left:707.368199px;}
.x26{left:730.588157px;}
.x4f{left:735.268138px;}
.x3a{left:738.868120px;}
.x58{left:740.308149px;}
.x4a{left:755.428090px;}
.x54{left:759.748087px;}
@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;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000011pt;}
.ls1{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.196469pt;}
.lse{letter-spacing:0.196474pt;}
.ls13{letter-spacing:0.319999pt;}
.ls14{letter-spacing:0.320037pt;}
.ls10{letter-spacing:0.512089pt;}
.ls18{letter-spacing:0.512095pt;}
.ls11{letter-spacing:0.672084pt;}
.ls7{letter-spacing:47.684862pt;}
.lsc{letter-spacing:61.764902pt;}
.ls16{letter-spacing:68.735892pt;}
.ls5{letter-spacing:87.524768pt;}
.ls17{letter-spacing:89.215825pt;}
.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;}
.ls15{letter-spacing:141.055658pt;}
.lsa{letter-spacing:148.964716pt;}
.ls6{letter-spacing:150.244664pt;}
.lsb{letter-spacing:218.724472pt;}
.ls2{letter-spacing:472.814503pt;}
.ws6{word-spacing:-63.999840pt;}
.ws5{word-spacing:-17.855955pt;}
.ws4{word-spacing:-17.663956pt;}
.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;}
._5{margin-left:-1.855995pt;}
._1{margin-left:-0.895998pt;}
._0{width:1.279997pt;}
._a{width:2.239994pt;}
._b{width:3.455991pt;}
._e{width:4.415989pt;}
._d{width:5.695986pt;}
._16{width:7.359976pt;}
._9{width:8.511979pt;}
._7{width:10.239974pt;}
._8{width:11.327972pt;}
._c{width:12.671968pt;}
._4{width:13.887965pt;}
._6{width:15.103962pt;}
._19{width:16.767958pt;}
._1d{width:18.751953pt;}
._12{width:19.711951pt;}
._13{width:20.735948pt;}
._15{width:21.631946pt;}
._1b{width:22.527944pt;}
._21{width:23.487941pt;}
._1c{width:25.151937pt;}
._14{width:26.047935pt;}
._20{width:27.135927pt;}
._17{width:28.223929pt;}
._3{width:29.892550pt;}
._10{width:31.309909pt;}
._11{width:32.739699pt;}
._22{width:34.559914pt;}
._26{width:35.519911pt;}
._f{width:36.415909pt;}
._18{width:37.759906pt;}
._28{width:39.779012pt;}
._27{width:41.219582pt;}
._29{width:42.495894pt;}
._25{width:43.647891pt;}
._24{width:45.631886pt;}
._23{width:46.847883pt;}
._1e{width:49.487458pt;}
._1f{width:51.519871pt;}
._3b{width:54.079870pt;}
._3c{width:55.487856pt;}
._3d{width:58.239854pt;}
._39{width:67.878801pt;}
._38{width:73.279817pt;}
._37{width:74.623813pt;}
._3a{width:75.967799pt;}
._1a{width:76.991808pt;}
._31{width:80.159672pt;}
._30{width:109.546478pt;}
._35{width:114.975771pt;}
._2e{width:140.074343pt;}
._34{width:145.002224pt;}
._2d{width:150.431523pt;}
._2f{width:162.079547pt;}
._2c{width:180.458301pt;}
._2a{width:196.714138pt;}
._33{width:198.175595pt;}
._36{width:203.812482pt;}
._2b{width:233.631421pt;}
._32{width:348.137754pt;}
.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;}
.y116{bottom:64.826498pt;}
.y2f{bottom:65.146484pt;}
.ya0{bottom:69.306468pt;}
.ye5{bottom:71.386459pt;}
.y145{bottom:73.946430pt;}
.y2e{bottom:84.666455pt;}
.y115{bottom:86.906440pt;}
.y9f{bottom:88.986431pt;}
.y82{bottom:90.586444pt;}
.ye4{bottom:91.066423pt;}
.y144{bottom:93.626394pt;}
.y81{bottom:103.546372pt;}
.y2d{bottom:104.346419pt;}
.y114{bottom:106.586404pt;}
.y9e{bottom:108.506402pt;}
.ye3{bottom:110.746387pt;}
.y143{bottom:113.146364pt;}
.y80{bottom:116.666375pt;}
.y84{bottom:116.826368pt;}
.y2c{bottom:124.026302pt;}
.y113{bottom:127.546312pt;}
.y9d{bottom:128.186285pt;}
.y7f{bottom:129.786297pt;}
.ye2{bottom:130.266357pt;}
.y142{bottom:132.826328pt;}
.y7e{bottom:142.906300pt;}
.y2b{bottom:143.546272pt;}
.y83{bottom:146.266317pt;}
.y112{bottom:147.226276pt;}
.y9c{bottom:147.706255pt;}
.ye1{bottom:149.946240pt;}
.y141{bottom:153.146264pt;}
.y7c{bottom:160.986251pt;}
.y2a{bottom:163.226236pt;}
.y9b{bottom:167.386219pt;}
.ye0{bottom:169.466211pt;}
.y140{bottom:172.026182pt;}
.y7b{bottom:174.106173pt;}
.y111{bottom:177.786177pt;}
.y29{bottom:182.906200pt;}
.y9a{bottom:187.066183pt;}
.y7a{bottom:187.226176pt;}
.ydf{bottom:189.146174pt;}
.y13f{bottom:191.706145pt;}
.y79{bottom:200.346179pt;}
.y7d{bottom:200.826158pt;}
.y28{bottom:202.426170pt;}
.y99{bottom:206.586154pt;}
.yde{bottom:208.826138pt;}
.y110{bottom:209.786097pt;}
.y13e{bottom:211.226116pt;}
.y78{bottom:215.706085pt;}
.y27{bottom:222.106053pt;}
.y73{bottom:222.266127pt;}
.y98{bottom:226.266117pt;}
.ydd{bottom:228.346109pt;}
.y77{bottom:228.826088pt;}
.y13d{bottom:230.906080pt;}
.y10e{bottom:232.826078pt;}
.y72{bottom:235.226056pt;}
.y26{bottom:241.626024pt;}
.y76{bottom:241.786017pt;}
.y10d{bottom:242.746057pt;}
.y97{bottom:245.786007pt;}
.ydc{bottom:248.025992pt;}
.y71{bottom:248.346059pt;}
.y13c{bottom:250.586044pt;}
.y10f{bottom:252.506042pt;}
.y75{bottom:254.906020pt;}
.y25{bottom:261.305988pt;}
.y70{bottom:261.625974pt;}
.y96{bottom:265.465971pt;}
.ydb{bottom:267.545962pt;}
.y74{bottom:268.665995pt;}
.y13b{bottom:270.105933pt;}
.y10c{bottom:279.225946pt;}
.y24{bottom:280.985951pt;}
.y6c{bottom:283.225936pt;}
.y95{bottom:285.145934pt;}
.yda{bottom:287.225926pt;}
.y6f{bottom:289.785897pt;}
.y6b{bottom:296.345939pt;}
.y10b{bottom:298.905910pt;}
.y23{bottom:300.505922pt;}
.y6e{bottom:302.945857pt;}
.y94{bottom:304.705862pt;}
.yd9{bottom:306.945847pt;}
.y13a{bottom:309.345907pt;}
.y6a{bottom:309.505900pt;}
.y22{bottom:320.225843pt;}
.y69{bottom:322.625821pt;}
.y6d{bottom:323.105800pt;}
.y93{bottom:324.385826pt;}
.yd8{bottom:326.465819pt;}
.y139{bottom:329.025789pt;}
.y109{bottom:330.785794pt;}
.y21{bottom:339.745815pt;}
.y92{bottom:344.065791pt;}
.y67{bottom:344.385776pt;}
.yd7{bottom:346.145781pt;}
.y138{bottom:348.705752pt;}
.y108{bottom:350.465759pt;}
.y66{bottom:357.505780pt;}
.y20{bottom:359.425777pt;}
.y91{bottom:363.585762pt;}
.yd6{bottom:365.665753pt;}
.y137{bottom:368.225723pt;}
.y107{bottom:369.985728pt;}
.y65{bottom:370.625701pt;}
.y68{bottom:377.665723pt;}
.y1f{bottom:379.105660pt;}
.y90{bottom:383.265724pt;}
.yd5{bottom:385.345717pt;}
.y136{bottom:387.905688pt;}
.y10a{bottom:389.665693pt;}
.y106{bottom:390.305666pt;}
.y63{bottom:392.385656pt;}
.y1e{bottom:398.625631pt;}
.y8f{bottom:402.785614pt;}
.yd4{bottom:405.025599pt;}
.y62{bottom:405.505660pt;}
.y135{bottom:407.425657pt;}
.y105{bottom:409.345657pt;}
.y1d{bottom:418.305596pt;}
.y61{bottom:418.625581pt;}
.y8e{bottom:422.465579pt;}
.yd3{bottom:424.545569pt;}
.y134{bottom:427.105540pt;}
.y104{bottom:428.865545pt;}
.y60{bottom:431.745585pt;}
.y64{bottom:432.225563pt;}
.y1c{bottom:437.825565pt;}
.y8d{bottom:442.145541pt;}
.yd2{bottom:444.225533pt;}
.y133{bottom:446.785544pt;}
.y103{bottom:448.545509pt;}
.y5e{bottom:453.505498pt;}
.y1b{bottom:457.505488pt;}
.y8c{bottom:461.665473pt;}
.yd1{bottom:463.745505pt;}
.y132{bottom:466.305476pt;}
.y5d{bottom:466.465469pt;}
.y102{bottom:468.065481pt;}
.y1a{bottom:477.185452pt;}
.y5c{bottom:479.585430pt;}
.y8b{bottom:481.345435pt;}
.yd0{bottom:483.425427pt;}
.y131{bottom:485.985438pt;}
.y101{bottom:487.745445pt;}
.y5b{bottom:492.865427pt;}
.y19{bottom:496.705382pt;}
.y5f{bottom:499.745415pt;}
.y8a{bottom:500.865407pt;}
.ycf{bottom:503.105392pt;}
.y130{bottom:505.505368pt;}
.y100{bottom:507.425367pt;}
.y59{bottom:514.465349pt;}
.y18{bottom:516.385346pt;}
.y89{bottom:520.545329pt;}
.yce{bottom:522.625321pt;}
.y12f{bottom:525.185332pt;}
.yff{bottom:526.945339pt;}
.y58{bottom:527.585310pt;}
.y17{bottom:535.905318pt;}
.y88{bottom:540.251945pt;}
.y57{bottom:540.731966pt;}
.ycd{bottom:542.331938pt;}
.y12e{bottom:544.891948pt;}
.y146{bottom:545.531962pt;}
.yfe{bottom:546.651953pt;}
.y56{bottom:553.851927pt;}
.y5a{bottom:554.331908pt;}
.y16{bottom:555.611934pt;}
.ya1{bottom:559.771917pt;}
.y87{bottom:560.411930pt;}
.ycc{bottom:562.011900pt;}
.y12d{bottom:564.411920pt;}
.yfd{bottom:566.171883pt;}
.y54{bottom:569.211874pt;}
.y15{bottom:575.291856pt;}
.ycb{bottom:581.531872pt;}
.y53{bottom:582.171843pt;}
.y12c{bottom:584.091842pt;}
.yfc{bottom:585.851847pt;}
.y52{bottom:595.291806pt;}
.y14{bottom:595.451839pt;}
.yb4{bottom:597.371797pt;}
.yca{bottom:601.211794pt;}
.y12b{bottom:603.611814pt;}
.yfb{bottom:605.531812pt;}
.y51{bottom:608.411810pt;}
.y55{bottom:609.051781pt;}
.y13{bottom:614.491790pt;}
.yb3{bottom:616.891768pt;}
.yc9{bottom:620.731766pt;}
.y12a{bottom:623.291736pt;}
.y4d{bottom:623.451769pt;}
.yfa{bottom:625.051741pt;}
.y12{bottom:634.171713pt;}
.y4c{bottom:636.411740pt;}
.yb2{bottom:636.571733pt;}
.yc8{bottom:640.411730pt;}
.y50{bottom:642.971701pt;}
.yf9{bottom:644.731706pt;}
.y4b{bottom:649.531702pt;}
.y11{bottom:654.331658pt;}
.y4f{bottom:656.091662pt;}
.yb1{bottom:656.251655pt;}
.yc7{bottom:660.091652pt;}
.y129{bottom:662.491670pt;}
.y4a{bottom:662.651663pt;}
.yf8{bottom:664.251635pt;}
.y4e{bottom:669.211624pt;}
.y10{bottom:673.371607pt;}
.y49{bottom:675.771627pt;}
.yc6{bottom:679.611624pt;}
.y128{bottom:682.171593pt;}
.yf7{bottom:683.931600pt;}
.y48{bottom:688.891588pt;}
.yf{bottom:692.891578pt;}
.yb0{bottom:695.451589pt;}
.yc5{bottom:699.291546pt;}
.y127{bottom:701.851557pt;}
.yf6{bottom:703.611564pt;}
.y47{bottom:709.691544pt;}
.ye{bottom:713.211514pt;}
.yaf{bottom:714.971521pt;}
.y42{bottom:716.251505pt;}
.yc4{bottom:718.811516pt;}
.y126{bottom:721.371487pt;}
.y46{bottom:722.811506pt;}
.yf5{bottom:723.131494pt;}
.y41{bottom:729.371467pt;}
.yd{bottom:732.251465pt;}
.yae{bottom:734.651483pt;}
.y45{bottom:735.931470pt;}
.yc3{bottom:738.491480pt;}
.y125{bottom:741.051451pt;}
.y40{bottom:742.651463pt;}
.yf4{bottom:742.811456pt;}
.y44{bottom:749.051431pt;}
.yc{bottom:752.411450pt;}
.yad{bottom:754.331408pt;}
.y3f{bottom:755.611434pt;}
.yc2{bottom:758.171403pt;}
.y124{bottom:760.571423pt;}
.yf3{bottom:762.491420pt;}
.y43{bottom:768.731396pt;}
.yb{bottom:772.091372pt;}
.yac{bottom:773.851377pt;}
.yc1{bottom:777.731373pt;}
.y123{bottom:780.291344pt;}
.yf2{bottom:782.051349pt;}
.y3e{bottom:786.691352pt;}
.ya{bottom:791.011328pt;}
.yab{bottom:793.571320pt;}
.yc0{bottom:797.411316pt;}
.y122{bottom:799.971308pt;}
.yf1{bottom:801.731313pt;}
.y3a{bottom:804.291304pt;}
.y9{bottom:810.691292pt;}
.y3d{bottom:810.851285pt;}
.yaa{bottom:813.091270pt;}
.ybf{bottom:816.931267pt;}
.y39{bottom:817.411266pt;}
.y121{bottom:819.491258pt;}
.yf0{bottom:821.251263pt;}
.y3c{bottom:823.971248pt;}
.y8{bottom:830.371236pt;}
.y38{bottom:830.531229pt;}
.ya9{bottom:832.771234pt;}
.ybe{bottom:836.611210pt;}
.y3b{bottom:837.091210pt;}
.y120{bottom:839.171222pt;}
.yef{bottom:840.931207pt;}
.y37{bottom:843.651211pt;}
.y7{bottom:849.891186pt;}
.ya8{bottom:852.451177pt;}
.ybd{bottom:856.291174pt;}
.y36{bottom:856.771174pt;}
.y11f{bottom:858.691172pt;}
.yee{bottom:860.611150pt;}
.y6{bottom:869.571130pt;}
.y35{bottom:871.171142pt;}
.ybc{bottom:875.811124pt;}
.y11e{bottom:878.371116pt;}
.yed{bottom:880.131101pt;}
.ya7{bottom:886.371096pt;}
.y5{bottom:889.731093pt;}
.y34{bottom:891.651091pt;}
.ybb{bottom:895.491068pt;}
.y11d{bottom:898.051059pt;}
.yec{bottom:899.811064pt;}
.y33{bottom:904.771054pt;}
.y32{bottom:907.971038pt;}
.yba{bottom:915.011018pt;}
.y11c{bottom:917.571010pt;}
.yeb{bottom:919.331015pt;}
.ya6{bottom:921.091000pt;}
.yb9{bottom:934.690982pt;}
.y11b{bottom:937.250973pt;}
.yea{bottom:939.010958pt;}
.ya5{bottom:944.450947pt;}
.yb8{bottom:954.370926pt;}
.y11a{bottom:956.770924pt;}
.ye9{bottom:958.690911pt;}
.yb7{bottom:973.890876pt;}
.y119{bottom:976.450867pt;}
.ya4{bottom:977.730862pt;}
.ye8{bottom:978.210862pt;}
.yb6{bottom:993.565489pt;}
.y118{bottom:996.125491pt;}
.ye7{bottom:997.885485pt;}
.ya3{bottom:1001.085480pt;}
.yb5{bottom:1013.085450pt;}
.y117{bottom:1015.677433pt;}
.ye6{bottom:1017.437439pt;}
.ya2{bottom:1025.117412pt;}
.y86{bottom:1084.317267pt;}
.y2{bottom:1096.957234pt;}
.ha{height:32.159920pt;}
.h8{height:33.458041pt;}
.h9{height:33.557916pt;}
.hc{height:43.354892pt;}
.hd{height:47.124882pt;}
.h4{height:47.999880pt;}
.he{height:48.095880pt;}
.h5{height:49.937375pt;}
.h6{height:50.037250pt;}
.h3{height:52.834555pt;}
.hf{height:53.937365pt;}
.hb{height:61.915064pt;}
.h7{height:73.137953pt;}
.h10{height:87.039820pt;}
.h12{height:89.617287pt;}
.h11{height:89.617292pt;}
.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;}
.x19{left:48.959867pt;}
.x6{left:52.639856pt;}
.x1a{left:57.599845pt;}
.x4d{left:62.239832pt;}
.x4b{left:72.959807pt;}
.x5b{left:77.631793pt;}
.x5a{left:80.511785pt;}
.x59{left:85.791776pt;}
.x5c{left:92.031761pt;}
.xd{left:92.991760pt;}
.xa{left:96.831747pt;}
.x56{left:100.671734pt;}
.xb{left:102.911728pt;}
.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;}
.x5{left:160.346256pt;}
.x55{left:184.826186pt;}
.x52{left:222.266095pt;}
.x53{left:229.466089pt;}
.x50{left:260.066009pt;}
.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;}
.x2c{left:370.145709pt;}
.x49{left:373.985706pt;}
.x39{left:375.905706pt;}
.x20{left:377.665711pt;}
.x2d{left:389.825673pt;}
.x2f{left:410.945615pt;}
.x2{left:418.972289pt;}
.x4e{left:429.372247pt;}
.x27{left:512.412038pt;}
.x1c{left:513.532030pt;}
.x51{left:525.691992pt;}
.x57{left:529.691982pt;}
.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;}
.x44{left:603.171820pt;}
.x41{left:611.971806pt;}
.x24{left:616.771762pt;}
.x40{left:628.771732pt;}
.x26{left:649.411695pt;}
.x4f{left:653.571678pt;}
.x3a{left:656.771662pt;}
.x58{left:658.051688pt;}
.x4a{left:671.491636pt;}
.x54{left:675.331633pt;}
}




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