
    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_5366f6d47b5861cdef22f586.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_eac5ec6b45bfd2db0e1073d2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_8593ca36302608d02f58b749.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_2cc9844d2c1a54094e7c0ebc.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_29953816f81fc94c12be9f3e.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7d89a5c97aa221526cd3d6cb.woff')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_971441567bb774937c16e289.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_99bdbfaed064ffa9c4d3c5a6.woff')format("woff");}.ff9{font-family:ff9;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;}
.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:46.799811px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000006px;}
.ls12{letter-spacing:0.071994px;}
.ls1{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.072018px;}
.ls11{letter-spacing:0.174234px;}
.ls19{letter-spacing:0.215999px;}
.ls3{letter-spacing:0.221027px;}
.lse{letter-spacing:0.221033px;}
.ls18{letter-spacing:0.575921px;}
.ls15{letter-spacing:0.576011px;}
.ls17{letter-spacing:0.576101px;}
.ls16{letter-spacing:0.576107px;}
.ls14{letter-spacing:2.015995px;}
.ls7{letter-spacing:53.645470px;}
.lsc{letter-spacing:69.485514px;}
.ls5{letter-spacing:98.465364px;}
.ls9{letter-spacing:104.945450px;}
.ls1a{letter-spacing:106.127735px;}
.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;}
.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;}
}
.ws4{word-spacing:-71.999820px;}
.ws6{word-spacing:-20.303949px;}
.ws8{word-spacing:-20.159950px;}
.ws9{word-spacing:-20.128126px;}
.ws7{word-spacing:-20.087950px;}
.ws5{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;}
._19{margin-left:-2.087995px;}
._1{margin-left:-1.007997px;}
._0{width:1.439996px;}
._11{width:2.951993px;}
._9{width:4.103990px;}
._4{width:5.567992px;}
._3{width:7.103976px;}
._7{width:8.328009px;}
._16{width:9.335917px;}
._8{width:11.159972px;}
._b{width:12.772501px;}
._6{width:13.773699px;}
._5{width:15.318436px;}
._34{width:16.553419px;}
._f{width:17.927955px;}
._a{width:21.527946px;}
._10{width:23.039942px;}
._1b{width:24.767938px;}
._2c{width:25.919935px;}
._e{width:27.071932px;}
._24{width:28.799928px;}
._18{width:30.167925px;}
._17{width:31.247922px;}
._38{width:33.239917px;}
._1f{width:34.343914px;}
._1e{width:35.423911px;}
._25{width:37.367907px;}
._27{width:38.519904px;}
._20{width:40.463899px;}
._1a{width:41.687896px;}
._14{width:43.631891px;}
._15{width:45.215887px;}
._36{width:46.367884px;}
._29{width:47.375882px;}
._37{width:49.031877px;}
._28{width:50.039875px;}
._2d{width:51.551871px;}
._2f{width:53.351867px;}
._22{width:54.359864px;}
._21{width:55.799860px;}
._1d{width:57.164032px;}
._1c{width:58.609640px;}
._33{width:59.759851px;}
._2a{width:60.767848px;}
._31{width:61.919845px;}
._3c{width:63.503841px;}
._3d{width:65.735836px;}
._39{width:66.743833px;}
._23{width:67.895830px;}
._3e{width:69.191827px;}
._32{width:71.927820px;}
._35{width:75.239812px;}
._2e{width:76.391809px;}
._2b{width:81.431796px;}
._c{width:82.871793px;}
._d{width:84.311789px;}
._30{width:86.183785px;}
._26{width:87.839780px;}
._12{width:89.135777px;}
._13{width:90.407768px;}
._3b{width:93.815657px;}
._3a{width:436.438873px;}
.fc5{color:rgb(0,128,128);}
.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;}
.y126{bottom:71.639836px;}
.y2f{bottom:73.289794px;}
.yb7{bottom:74.549832px;}
.y159{bottom:82.469765px;}
.y128{bottom:82.649757px;}
.y122{bottom:83.369726px;}
.ye9{bottom:93.089764px;}
.y125{bottom:93.809732px;}
.y2e{bottom:95.249762px;}
.yb6{bottom:96.689700px;}
.y82{bottom:101.909750px;}
.y158{bottom:104.609723px;}
.y11f{bottom:104.789716px;}
.y121{bottom:105.509685px;}
.ye8{bottom:115.049730px;}
.y124{bottom:115.769700px;}
.y81{bottom:116.489668px;}
.y2d{bottom:117.389722px;}
.yb5{bottom:118.829659px;}
.y157{bottom:126.749683px;}
.y127{bottom:126.929675px;}
.y120{bottom:127.649645px;}
.y80{bottom:131.249672px;}
.y84{bottom:131.429664px;}
.ye7{bottom:137.189599px;}
.y123{bottom:137.909660px;}
.y2c{bottom:139.529590px;}
.yb4{bottom:140.789626px;}
.y7f{bottom:146.009584px;}
.y156{bottom:148.709559px;}
.ye6{bottom:159.329558px;}
.y7e{bottom:160.769588px;}
.y2b{bottom:161.489556px;}
.yb3{bottom:162.929585px;}
.y83{bottom:164.549607px;}
.y155{bottom:170.849517px;}
.y11d{bottom:173.189509px;}
.y7c{bottom:181.109532px;}
.ye5{bottom:181.289524px;}
.y2a{bottom:183.629515px;}
.yb2{bottom:184.889553px;}
.y154{bottom:192.989477px;}
.y11a{bottom:194.609498px;}
.y11c{bottom:195.329468px;}
.y7b{bottom:195.869444px;}
.ye4{bottom:203.429484px;}
.y11e{bottom:205.589483px;}
.y29{bottom:205.769475px;}
.yb1{bottom:207.029421px;}
.y7a{bottom:210.629448px;}
.y153{bottom:214.949445px;}
.y11b{bottom:217.469428px;}
.y79{bottom:225.389452px;}
.y7d{bottom:225.929428px;}
.y28{bottom:227.729441px;}
.yb0{bottom:229.169379px;}
.yb9{bottom:229.889440px;}
.y152{bottom:237.089404px;}
.y78{bottom:242.669345px;}
.ye3{bottom:247.529320px;}
.y27{bottom:249.869309px;}
.y73{bottom:250.049393px;}
.yaf{bottom:251.129347px;}
.y117{bottom:251.309339px;}
.y77{bottom:257.429349px;}
.y151{bottom:259.049370px;}
.y119{bottom:262.289322px;}
.y72{bottom:264.629313px;}
.ye2{bottom:269.669278px;}
.y26{bottom:271.829277px;}
.y76{bottom:272.009269px;}
.yae{bottom:273.269306px;}
.y116{bottom:273.449298px;}
.y113{bottom:274.169267px;}
.y71{bottom:279.389317px;}
.y150{bottom:281.189239px;}
.y112{bottom:284.429281px;}
.y75{bottom:286.769273px;}
.ye1{bottom:291.629245px;}
.y25{bottom:293.969237px;}
.y70{bottom:294.329221px;}
.yad{bottom:295.229272px;}
.y115{bottom:295.409266px;}
.y74{bottom:302.249244px;}
.y14f{bottom:303.329198px;}
.y15a{bottom:304.049258px;}
.y118{bottom:306.569241px;}
.ye0{bottom:313.769205px;}
.y24{bottom:316.109195px;}
.yac{bottom:317.369141px;}
.y114{bottom:317.549224px;}
.y6c{bottom:318.629178px;}
.y14e{bottom:325.289164px;}
.y6f{bottom:326.009134px;}
.y6b{bottom:333.389182px;}
.ydf{bottom:335.909165px;}
.y23{bottom:338.069162px;}
.yab{bottom:339.509100px;}
.y6e{bottom:340.814089px;}
.y111{bottom:341.174165px;}
.y14d{bottom:347.474076px;}
.y6a{bottom:348.194137px;}
.yde{bottom:357.914083px;}
.y22{bottom:360.254074px;}
.yaa{bottom:361.514111px;}
.y69{bottom:362.954049px;}
.y110{bottom:363.314033px;}
.y6d{bottom:363.494025px;}
.y10d{bottom:364.034094px;}
.y14c{bottom:369.434043px;}
.y10c{bottom:374.294016px;}
.ydd{bottom:380.054042px;}
.y21{bottom:382.214041px;}
.ya9{bottom:383.653979px;}
.y10f{bottom:385.274001px;}
.y67{bottom:387.433998px;}
.y14b{bottom:391.574003px;}
.ydc{bottom:402.014010px;}
.y66{bottom:402.194002px;}
.y20{bottom:404.354000px;}
.ya8{bottom:405.613945px;}
.y10e{bottom:407.413959px;}
.y14a{bottom:413.713963px;}
.y65{bottom:416.953914px;}
.ydb{bottom:424.153878px;}
.y68{bottom:424.873938px;}
.y1f{bottom:426.493868px;}
.ya7{bottom:427.753905px;}
.y10a{bottom:431.533926px;}
.y149{bottom:435.673929px;}
.y63{bottom:441.433863px;}
.y109{bottom:442.693901px;}
.yda{bottom:446.293836px;}
.y1e{bottom:448.453835px;}
.ya6{bottom:449.893865px;}
.y10b{bottom:453.673884px;}
.y62{bottom:456.193867px;}
.y148{bottom:457.813797px;}
.yd9{bottom:468.253804px;}
.y1d{bottom:470.593795px;}
.y61{bottom:470.953779px;}
.ya5{bottom:471.853831px;}
.y147{bottom:479.773765px;}
.y60{bottom:485.713783px;}
.y64{bottom:486.253759px;}
.y108{bottom:488.593750px;}
.yd8{bottom:490.393764px;}
.y1c{bottom:492.553761px;}
.ya4{bottom:493.993699px;}
.y146{bottom:501.913723px;}
.y5e{bottom:510.193686px;}
.y107{bottom:510.553716px;}
.yd7{bottom:512.353685px;}
.y1b{bottom:514.693674px;}
.ya3{bottom:515.953667px;}
.y145{bottom:524.053682px;}
.y5d{bottom:524.773652px;}
.y106{bottom:532.693629px;}
.yd6{bottom:534.493644px;}
.y1a{bottom:536.833634px;}
.ya2{bottom:538.093626px;}
.y5c{bottom:539.533609px;}
.y87{bottom:542.593615px;}
.y144{bottom:546.013603px;}
.y5b{bottom:554.473605px;}
.yd5{bottom:556.633602px;}
.y19{bottom:558.793555px;}
.ya1{bottom:560.233584px;}
.y5f{bottom:562.213591px;}
.y143{bottom:568.153563px;}
.y105{bottom:568.513547px;}
.yd4{bottom:578.593525px;}
.y59{bottom:578.773517px;}
.y18{bottom:580.933515px;}
.ya0{bottom:582.193506px;}
.y142{bottom:590.113484px;}
.y104{bottom:590.653507px;}
.y58{bottom:593.533474px;}
.yd3{bottom:600.733483px;}
.y17{bottom:602.893482px;}
.y9f{bottom:604.333465px;}
.y57{bottom:608.323461px;}
.y141{bottom:612.283427px;}
.y103{bottom:612.643458px;}
.yd2{bottom:622.723434px;}
.y56{bottom:623.083418px;}
.y5a{bottom:623.623396px;}
.y16{bottom:625.063425px;}
.y9e{bottom:626.503408px;}
.y140{bottom:634.423387px;}
.y102{bottom:634.783371px;}
.y54{bottom:640.363359px;}
.yd1{bottom:644.863347px;}
.yea{bottom:645.583362px;}
.y15{bottom:647.203338px;}
.y9d{bottom:648.463376px;}
.y53{bottom:654.943324px;}
.y13f{bottom:656.383353px;}
.y101{bottom:656.743339px;}
.yd0{bottom:667.003307px;}
.y52{bottom:669.703282px;}
.y14{bottom:669.883319px;}
.y9c{bottom:670.603289px;}
.y13e{bottom:678.523268px;}
.y100{bottom:678.883297px;}
.y51{bottom:684.463286px;}
.y55{bottom:685.183254px;}
.ycf{bottom:688.963275px;}
.y13{bottom:691.303264px;}
.yb8{bottom:692.563257px;}
.y9b{bottom:693.283225px;}
.y13d{bottom:700.663226px;}
.yff{bottom:701.023211px;}
.y4d{bottom:701.383241px;}
.yce{bottom:711.103188px;}
.y12{bottom:713.443177px;}
.y4c{bottom:715.963207px;}
.y13c{bottom:722.623148px;}
.yfe{bottom:722.983178px;}
.y50{bottom:723.343163px;}
.y9a{bottom:730.003149px;}
.y4b{bottom:730.723164px;}
.ycd{bottom:733.063155px;}
.y11{bottom:736.123115px;}
.y4f{bottom:738.103120px;}
.y13b{bottom:744.763107px;}
.yfd{bottom:745.123092px;}
.y4a{bottom:745.483121px;}
.y99{bottom:751.963117px;}
.y4e{bottom:752.863077px;}
.ycc{bottom:755.203068px;}
.y10{bottom:757.543058px;}
.y49{bottom:760.243080px;}
.y13a{bottom:766.723074px;}
.yfc{bottom:767.083058px;}
.y98{bottom:774.103030px;}
.y48{bottom:775.003037px;}
.ycb{bottom:777.343028px;}
.yf{bottom:779.503026px;}
.y139{bottom:788.862987px;}
.yfb{bottom:789.223018px;}
.y97{bottom:796.242990px;}
.y47{bottom:798.402987px;}
.yca{bottom:799.302994px;}
.ye{bottom:802.362954px;}
.y42{bottom:805.782944px;}
.y138{bottom:811.002947px;}
.yfa{bottom:811.362931px;}
.y46{bottom:813.162945px;}
.y96{bottom:818.202911px;}
.y41{bottom:820.542901px;}
.yc9{bottom:821.442907px;}
.yd{bottom:823.782899px;}
.y45{bottom:827.922903px;}
.y137{bottom:832.962915px;}
.yf9{bottom:833.322899px;}
.y40{bottom:835.482896px;}
.y95{bottom:840.342871px;}
.y44{bottom:842.682860px;}
.yc8{bottom:843.402875px;}
.yc{bottom:846.462881px;}
.y3f{bottom:850.062863px;}
.y136{bottom:855.102828px;}
.yf8{bottom:855.462858px;}
.y94{bottom:862.302837px;}
.y43{bottom:864.822820px;}
.yc7{bottom:865.542788px;}
.yb{bottom:868.602794px;}
.y135{bottom:877.107792px;}
.yf7{bottom:877.467778px;}
.y93{bottom:884.487771px;}
.y3e{bottom:885.027771px;}
.yc6{bottom:887.727746px;}
.ya{bottom:889.887744px;}
.y134{bottom:899.247729px;}
.yf6{bottom:899.607736px;}
.y3a{bottom:904.827717px;}
.y92{bottom:906.627708px;}
.yc5{bottom:909.687690px;}
.y9{bottom:912.027703px;}
.y3d{bottom:912.207695px;}
.y39{bottom:919.587674px;}
.y133{bottom:921.387665px;}
.yf5{bottom:921.747673px;}
.y3c{bottom:926.967654px;}
.y91{bottom:928.587652px;}
.yc4{bottom:931.827649px;}
.y8{bottom:934.167641px;}
.y38{bottom:934.347633px;}
.y3b{bottom:941.727611px;}
.y132{bottom:943.347610px;}
.yf4{bottom:943.707617px;}
.y37{bottom:949.107612px;}
.yc3{bottom:953.967587px;}
.y7{bottom:956.127584px;}
.y90{bottom:962.607578px;}
.y36{bottom:963.867571px;}
.y131{bottom:965.487568px;}
.yf3{bottom:965.847554px;}
.yc2{bottom:975.927530px;}
.y6{bottom:978.267521px;}
.y35{bottom:980.067535px;}
.y130{bottom:987.447513px;}
.yf2{bottom:987.987512px;}
.y8f{bottom:997.527490px;}
.yc1{bottom:998.067490px;}
.y5{bottom:1000.947480px;}
.y34{bottom:1003.107477px;}
.y12f{bottom:1009.587449px;}
.yf1{bottom:1009.947457px;}
.y33{bottom:1017.867436px;}
.y8e{bottom:1019.487433px;}
.yc0{bottom:1020.027433px;}
.y32{bottom:1021.467418px;}
.y12e{bottom:1031.727386px;}
.yf0{bottom:1032.087393px;}
.y8d{bottom:1041.627370px;}
.ybf{bottom:1042.167371px;}
.y12d{bottom:1053.687330px;}
.yef{bottom:1054.047338px;}
.y8c{bottom:1063.047315px;}
.ybe{bottom:1064.307306px;}
.y12c{bottom:1075.827289px;}
.yee{bottom:1076.187286px;}
.y8b{bottom:1085.007259px;}
.ybd{bottom:1086.267262px;}
.y12b{bottom:1097.787233px;}
.yed{bottom:1098.327233px;}
.y8a{bottom:1107.147207px;}
.ybc{bottom:1108.407199px;}
.y12a{bottom:1119.921173px;}
.yec{bottom:1120.281169px;}
.y89{bottom:1129.101155px;}
.ybb{bottom:1130.361146px;}
.y129{bottom:1142.097124px;}
.yeb{bottom:1142.457120px;}
.y88{bottom:1151.997098px;}
.yba{bottom:1152.537096px;}
.y86{bottom:1219.856925px;}
.y2{bottom:1234.076888px;}
.ha{height:36.179910px;}
.h8{height:36.274128px;}
.h9{height:36.382409px;}
.hc{height:48.774253px;}
.hd{height:53.015492px;}
.h4{height:53.999865px;}
.he{height:54.107865px;}
.h5{height:54.140490px;}
.h6{height:54.248771px;}
.h3{height:59.438875px;}
.h10{height:60.679536px;}
.hb{height:69.654447px;}
.hf{height:71.613102px;}
.h7{height:80.914028px;}
.h11{height:97.919797px;}
.h12{height:100.940301px;}
.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;}
.x5a{left:50.939858px;}
.x19{left:55.079850px;}
.x6{left:59.219838px;}
.x1a{left:64.799826px;}
.x57{left:67.139816px;}
.x4d{left:70.379808px;}
.x5b{left:77.579794px;}
.x4b{left:82.079783px;}
.x61{left:83.339780px;}
.xd{left:104.615729px;}
.xa{left:108.935716px;}
.xb{left:115.775694px;}
.x72{left:123.515681px;}
.xc{left:127.115673px;}
.xf{left:129.815660px;}
.x78{left:131.255655px;}
.x4{left:134.855648px;}
.x8{left:136.115651px;}
.xe{left:139.175634px;}
.x3{left:142.415630px;}
.x9{left:143.675623px;}
.x7{left:151.409611px;}
.x73{left:176.429550px;}
.x5{left:180.389539px;}
.x5c{left:188.489521px;}
.x79{left:192.449510px;}
.x54{left:203.249478px;}
.x71{left:207.389461px;}
.x56{left:255.449352px;}
.x55{left:278.714287px;}
.x4c{left:307.154225px;}
.x63{left:318.314201px;}
.x62{left:321.914183px;}
.x75{left:323.534181px;}
.x64{left:326.774179px;}
.x74{left:328.574170px;}
.x6b{left:337.934131px;}
.x5d{left:347.474109px;}
.x7a{left:350.894099px;}
.x7b{left:354.494103px;}
.x6d{left:358.454092px;}
.x6c{left:359.714084px;}
.x5e{left:360.974075px;}
.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;}
.x58{left:483.043777px;}
.x77{left:502.303723px;}
.x76{left:503.383722px;}
.x65{left:504.823706px;}
.x5f{left:508.603725px;}
.x68{left:509.683726px;}
.x7d{left:514.903683px;}
.x4f{left:516.523704px;}
.x7c{left:519.223679px;}
.x67{left:521.023693px;}
.x6f{left:526.063658px;}
.x6e{left:527.143658px;}
.x66{left:540.283639px;}
.x52{left:559.723578px;}
.x27{left:576.463542px;}
.x1c{left:577.723533px;}
.x4e{left:585.823504px;}
.x50{left:602.383475px;}
.x51{left:605.803464px;}
.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;}
.x69{left:656.608330px;}
.x3f{left:657.688329px;}
.x43{left:658.768329px;}
.x32{left:663.088326px;}
.x6a{left:665.608307px;}
.x46{left:667.408321px;}
.x30{left:670.288288px;}
.x3e{left:672.448287px;}
.x70{left:675.868277px;}
.x44{left:678.568298px;}
.x41{left:688.468282px;}
.x24{left:693.868232px;}
.x40{left:707.368199px;}
.x60{left:715.108184px;}
.x26{left:730.588157px;}
.x3a{left:738.868120px;}
.x4a{left:755.428090px;}
.x59{left:772.348092px;}
.x53{left:843.657880px;}
@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:41.599832pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000005pt;}
.ls12{letter-spacing:0.063995pt;}
.ls1{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.064016pt;}
.ls11{letter-spacing:0.154874pt;}
.ls19{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.196469pt;}
.lse{letter-spacing:0.196474pt;}
.ls18{letter-spacing:0.511929pt;}
.ls15{letter-spacing:0.512009pt;}
.ls17{letter-spacing:0.512089pt;}
.ls16{letter-spacing:0.512095pt;}
.ls14{letter-spacing:1.791996pt;}
.ls7{letter-spacing:47.684862pt;}
.lsc{letter-spacing:61.764902pt;}
.ls5{letter-spacing:87.524768pt;}
.ls9{letter-spacing:93.284844pt;}
.ls1a{letter-spacing:94.335764pt;}
.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;}
.lsb{letter-spacing:218.724472pt;}
.ls2{letter-spacing:472.814503pt;}
.ws4{word-spacing:-63.999840pt;}
.ws6{word-spacing:-18.047955pt;}
.ws8{word-spacing:-17.919955pt;}
.ws9{word-spacing:-17.891667pt;}
.ws7{word-spacing:-17.855955pt;}
.ws5{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;}
._19{margin-left:-1.855995pt;}
._1{margin-left:-0.895998pt;}
._0{width:1.279997pt;}
._11{width:2.623993pt;}
._9{width:3.647991pt;}
._4{width:4.949326pt;}
._3{width:6.314646pt;}
._7{width:7.402675pt;}
._16{width:8.298593pt;}
._8{width:9.919975pt;}
._b{width:11.353334pt;}
._6{width:12.243288pt;}
._5{width:13.616387pt;}
._34{width:14.714150pt;}
._f{width:15.935960pt;}
._a{width:19.135952pt;}
._10{width:20.479949pt;}
._1b{width:22.015945pt;}
._2c{width:23.039942pt;}
._e{width:24.063940pt;}
._24{width:25.599936pt;}
._18{width:26.815933pt;}
._17{width:27.775931pt;}
._38{width:29.546593pt;}
._1f{width:30.527924pt;}
._1e{width:31.487921pt;}
._25{width:33.215917pt;}
._27{width:34.239914pt;}
._20{width:35.967910pt;}
._1a{width:37.055907pt;}
._14{width:38.783903pt;}
._15{width:40.191900pt;}
._36{width:41.215897pt;}
._29{width:42.111895pt;}
._37{width:43.583891pt;}
._28{width:44.479889pt;}
._2d{width:45.823885pt;}
._2f{width:47.423881pt;}
._22{width:48.319879pt;}
._21{width:49.599876pt;}
._1d{width:50.812473pt;}
._1c{width:52.097458pt;}
._33{width:53.119867pt;}
._2a{width:54.015865pt;}
._31{width:55.039862pt;}
._3c{width:56.447859pt;}
._3d{width:58.431854pt;}
._39{width:59.327852pt;}
._23{width:60.351849pt;}
._3e{width:61.503846pt;}
._32{width:63.935840pt;}
._35{width:66.879833pt;}
._2e{width:67.903830pt;}
._2b{width:72.383819pt;}
._c{width:73.663816pt;}
._d{width:74.943813pt;}
._30{width:76.607808pt;}
._26{width:78.079805pt;}
._12{width:79.231802pt;}
._13{width:80.362460pt;}
._3b{width:83.391696pt;}
._3a{width:387.945665pt;}
.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;}
.y126{bottom:63.679854pt;}
.y2f{bottom:65.146484pt;}
.yb7{bottom:66.266517pt;}
.y159{bottom:73.306458pt;}
.y128{bottom:73.466451pt;}
.y122{bottom:74.106423pt;}
.ye9{bottom:82.746457pt;}
.y125{bottom:83.386429pt;}
.y2e{bottom:84.666455pt;}
.yb6{bottom:85.946400pt;}
.y82{bottom:90.586444pt;}
.y158{bottom:92.986421pt;}
.y11f{bottom:93.146414pt;}
.y121{bottom:93.786387pt;}
.ye8{bottom:102.266427pt;}
.y124{bottom:102.906400pt;}
.y81{bottom:103.546372pt;}
.y2d{bottom:104.346419pt;}
.yb5{bottom:105.626364pt;}
.y157{bottom:112.666385pt;}
.y127{bottom:112.826378pt;}
.y120{bottom:113.466351pt;}
.y80{bottom:116.666375pt;}
.y84{bottom:116.826368pt;}
.ye7{bottom:121.946310pt;}
.y123{bottom:122.586364pt;}
.y2c{bottom:124.026302pt;}
.yb4{bottom:125.146334pt;}
.y7f{bottom:129.786297pt;}
.y156{bottom:132.186275pt;}
.ye6{bottom:141.626274pt;}
.y7e{bottom:142.906300pt;}
.y2b{bottom:143.546272pt;}
.yb3{bottom:144.826298pt;}
.y83{bottom:146.266317pt;}
.y155{bottom:151.866238pt;}
.y11d{bottom:153.946230pt;}
.y7c{bottom:160.986251pt;}
.ye5{bottom:161.146244pt;}
.y2a{bottom:163.226236pt;}
.yb2{bottom:164.346269pt;}
.y154{bottom:171.546202pt;}
.y11a{bottom:172.986221pt;}
.y11c{bottom:173.626194pt;}
.y7b{bottom:174.106173pt;}
.ye4{bottom:180.826208pt;}
.y11e{bottom:182.746207pt;}
.y29{bottom:182.906200pt;}
.yb1{bottom:184.026152pt;}
.y7a{bottom:187.226176pt;}
.y153{bottom:191.066173pt;}
.y11b{bottom:193.306158pt;}
.y79{bottom:200.346179pt;}
.y7d{bottom:200.826158pt;}
.y28{bottom:202.426170pt;}
.yb0{bottom:203.706115pt;}
.yb9{bottom:204.346169pt;}
.y152{bottom:210.746137pt;}
.y78{bottom:215.706085pt;}
.ye3{bottom:220.026062pt;}
.y27{bottom:222.106053pt;}
.y73{bottom:222.266127pt;}
.yaf{bottom:223.226086pt;}
.y117{bottom:223.386079pt;}
.y77{bottom:228.826088pt;}
.y151{bottom:230.266107pt;}
.y119{bottom:233.146064pt;}
.y72{bottom:235.226056pt;}
.ye2{bottom:239.706025pt;}
.y26{bottom:241.626024pt;}
.y76{bottom:241.786017pt;}
.yae{bottom:242.906050pt;}
.y116{bottom:243.066043pt;}
.y113{bottom:243.706015pt;}
.y71{bottom:248.346059pt;}
.y150{bottom:249.945990pt;}
.y112{bottom:252.826028pt;}
.y75{bottom:254.906020pt;}
.ye1{bottom:259.225996pt;}
.y25{bottom:261.305988pt;}
.y70{bottom:261.625974pt;}
.yad{bottom:262.426020pt;}
.y115{bottom:262.586014pt;}
.y74{bottom:268.665995pt;}
.y14f{bottom:269.625954pt;}
.y15a{bottom:270.266007pt;}
.y118{bottom:272.505992pt;}
.ye0{bottom:278.905960pt;}
.y24{bottom:280.985951pt;}
.yac{bottom:282.105903pt;}
.y114{bottom:282.265977pt;}
.y6c{bottom:283.225936pt;}
.y14e{bottom:289.145924pt;}
.y6f{bottom:289.785897pt;}
.y6b{bottom:296.345939pt;}
.ydf{bottom:298.585924pt;}
.y23{bottom:300.505922pt;}
.yab{bottom:301.785867pt;}
.y6e{bottom:302.945857pt;}
.y111{bottom:303.265924pt;}
.y14d{bottom:308.865845pt;}
.y6a{bottom:309.505900pt;}
.yde{bottom:318.145851pt;}
.y22{bottom:320.225843pt;}
.yaa{bottom:321.345877pt;}
.y69{bottom:322.625821pt;}
.y110{bottom:322.945807pt;}
.y6d{bottom:323.105800pt;}
.y10d{bottom:323.585862pt;}
.y14c{bottom:328.385816pt;}
.y10c{bottom:332.705792pt;}
.ydd{bottom:337.825815pt;}
.y21{bottom:339.745815pt;}
.ya9{bottom:341.025759pt;}
.y10f{bottom:342.465779pt;}
.y67{bottom:344.385776pt;}
.y14b{bottom:348.065781pt;}
.ydc{bottom:357.345787pt;}
.y66{bottom:357.505780pt;}
.y20{bottom:359.425777pt;}
.ya8{bottom:360.545729pt;}
.y10e{bottom:362.145741pt;}
.y14a{bottom:367.745745pt;}
.y65{bottom:370.625701pt;}
.ydb{bottom:377.025669pt;}
.y68{bottom:377.665723pt;}
.y1f{bottom:379.105660pt;}
.ya7{bottom:380.225693pt;}
.y10a{bottom:383.585712pt;}
.y149{bottom:387.265714pt;}
.y63{bottom:392.385656pt;}
.y109{bottom:393.505690pt;}
.yda{bottom:396.705632pt;}
.y1e{bottom:398.625631pt;}
.ya6{bottom:399.905658pt;}
.y10b{bottom:403.265674pt;}
.y62{bottom:405.505660pt;}
.y148{bottom:406.945597pt;}
.yd9{bottom:416.225603pt;}
.y1d{bottom:418.305596pt;}
.y61{bottom:418.625581pt;}
.ya5{bottom:419.425627pt;}
.y147{bottom:426.465569pt;}
.y60{bottom:431.745585pt;}
.y64{bottom:432.225563pt;}
.y108{bottom:434.305556pt;}
.yd8{bottom:435.905568pt;}
.y1c{bottom:437.825565pt;}
.ya4{bottom:439.105510pt;}
.y146{bottom:446.145531pt;}
.y5e{bottom:453.505498pt;}
.y107{bottom:453.825525pt;}
.yd7{bottom:455.425497pt;}
.y1b{bottom:457.505488pt;}
.ya3{bottom:458.625481pt;}
.y145{bottom:465.825495pt;}
.y5d{bottom:466.465469pt;}
.y106{bottom:473.505448pt;}
.yd6{bottom:475.105462pt;}
.y1a{bottom:477.185452pt;}
.ya2{bottom:478.305446pt;}
.y5c{bottom:479.585430pt;}
.y87{bottom:482.305436pt;}
.y144{bottom:485.345425pt;}
.y5b{bottom:492.865427pt;}
.yd5{bottom:494.785424pt;}
.y19{bottom:496.705382pt;}
.ya1{bottom:497.985408pt;}
.y5f{bottom:499.745415pt;}
.y143{bottom:505.025389pt;}
.y105{bottom:505.345375pt;}
.yd4{bottom:514.305356pt;}
.y59{bottom:514.465349pt;}
.y18{bottom:516.385346pt;}
.ya0{bottom:517.505338pt;}
.y142{bottom:524.545319pt;}
.y104{bottom:525.025339pt;}
.y58{bottom:527.585310pt;}
.yd3{bottom:533.985318pt;}
.y17{bottom:535.905318pt;}
.y9f{bottom:537.185302pt;}
.y57{bottom:540.731966pt;}
.y141{bottom:544.251935pt;}
.y103{bottom:544.571963pt;}
.yd2{bottom:553.531942pt;}
.y56{bottom:553.851927pt;}
.y5a{bottom:554.331908pt;}
.y16{bottom:555.611934pt;}
.y9e{bottom:556.891918pt;}
.y140{bottom:563.931900pt;}
.y102{bottom:564.251885pt;}
.y54{bottom:569.211874pt;}
.yd1{bottom:573.211864pt;}
.yea{bottom:573.851877pt;}
.y15{bottom:575.291856pt;}
.y9d{bottom:576.411890pt;}
.y53{bottom:582.171843pt;}
.y13f{bottom:583.451869pt;}
.y101{bottom:583.771857pt;}
.yd0{bottom:592.891828pt;}
.y52{bottom:595.291806pt;}
.y14{bottom:595.451839pt;}
.y9c{bottom:596.091812pt;}
.y13e{bottom:603.131794pt;}
.y100{bottom:603.451819pt;}
.y51{bottom:608.411810pt;}
.y55{bottom:609.051781pt;}
.ycf{bottom:612.411800pt;}
.y13{bottom:614.491790pt;}
.yb8{bottom:615.611784pt;}
.y9b{bottom:616.251755pt;}
.y13d{bottom:622.811756pt;}
.yff{bottom:623.131744pt;}
.y4d{bottom:623.451769pt;}
.yce{bottom:632.091722pt;}
.y12{bottom:634.171713pt;}
.y4c{bottom:636.411740pt;}
.y13c{bottom:642.331688pt;}
.yfe{bottom:642.651713pt;}
.y50{bottom:642.971701pt;}
.y9a{bottom:648.891688pt;}
.y4b{bottom:649.531702pt;}
.ycd{bottom:651.611694pt;}
.y11{bottom:654.331658pt;}
.y4f{bottom:656.091662pt;}
.y13b{bottom:662.011650pt;}
.yfd{bottom:662.331638pt;}
.y4a{bottom:662.651663pt;}
.y99{bottom:668.411660pt;}
.y4e{bottom:669.211624pt;}
.ycc{bottom:671.291616pt;}
.y10{bottom:673.371607pt;}
.y49{bottom:675.771627pt;}
.y13a{bottom:681.531622pt;}
.yfc{bottom:681.851607pt;}
.y98{bottom:688.091582pt;}
.y48{bottom:688.891588pt;}
.ycb{bottom:690.971581pt;}
.yf{bottom:692.891578pt;}
.y139{bottom:701.211544pt;}
.yfb{bottom:701.531572pt;}
.y97{bottom:707.771547pt;}
.y47{bottom:709.691544pt;}
.yca{bottom:710.491550pt;}
.ye{bottom:713.211514pt;}
.y42{bottom:716.251505pt;}
.y138{bottom:720.891508pt;}
.yfa{bottom:721.211494pt;}
.y46{bottom:722.811506pt;}
.y96{bottom:727.291476pt;}
.y41{bottom:729.371467pt;}
.yc9{bottom:730.171473pt;}
.yd{bottom:732.251465pt;}
.y45{bottom:735.931470pt;}
.y137{bottom:740.411480pt;}
.yf9{bottom:740.731466pt;}
.y40{bottom:742.651463pt;}
.y95{bottom:746.971441pt;}
.y44{bottom:749.051431pt;}
.yc8{bottom:749.691444pt;}
.yc{bottom:752.411450pt;}
.y3f{bottom:755.611434pt;}
.y136{bottom:760.091402pt;}
.yf8{bottom:760.411430pt;}
.y94{bottom:766.491410pt;}
.y43{bottom:768.731396pt;}
.yc7{bottom:769.371367pt;}
.yb{bottom:772.091372pt;}
.y135{bottom:779.651371pt;}
.yf7{bottom:779.971358pt;}
.y93{bottom:786.211352pt;}
.y3e{bottom:786.691352pt;}
.yc6{bottom:789.091330pt;}
.ya{bottom:791.011328pt;}
.y134{bottom:799.331315pt;}
.yf6{bottom:799.651321pt;}
.y3a{bottom:804.291304pt;}
.y92{bottom:805.891296pt;}
.yc5{bottom:808.611280pt;}
.y9{bottom:810.691292pt;}
.y3d{bottom:810.851285pt;}
.y39{bottom:817.411266pt;}
.y133{bottom:819.011258pt;}
.yf5{bottom:819.331265pt;}
.y3c{bottom:823.971248pt;}
.y91{bottom:825.411246pt;}
.yc4{bottom:828.291244pt;}
.y8{bottom:830.371236pt;}
.y38{bottom:830.531229pt;}
.y3b{bottom:837.091210pt;}
.y132{bottom:838.531209pt;}
.yf4{bottom:838.851215pt;}
.y37{bottom:843.651211pt;}
.yc3{bottom:847.971188pt;}
.y7{bottom:849.891186pt;}
.y90{bottom:855.651181pt;}
.y36{bottom:856.771174pt;}
.y131{bottom:858.211172pt;}
.yf3{bottom:858.531159pt;}
.yc2{bottom:867.491138pt;}
.y6{bottom:869.571130pt;}
.y35{bottom:871.171142pt;}
.y130{bottom:877.731123pt;}
.yf2{bottom:878.211122pt;}
.y8f{bottom:886.691102pt;}
.yc1{bottom:887.171102pt;}
.y5{bottom:889.731093pt;}
.y34{bottom:891.651091pt;}
.y12f{bottom:897.411066pt;}
.yf1{bottom:897.731073pt;}
.y33{bottom:904.771054pt;}
.y8e{bottom:906.211052pt;}
.yc0{bottom:906.691052pt;}
.y32{bottom:907.971038pt;}
.y12e{bottom:917.091010pt;}
.yf0{bottom:917.411016pt;}
.y8d{bottom:925.890996pt;}
.ybf{bottom:926.370996pt;}
.y12d{bottom:936.610960pt;}
.yef{bottom:936.930967pt;}
.y8c{bottom:944.930947pt;}
.ybe{bottom:946.050939pt;}
.y12c{bottom:956.290924pt;}
.yee{bottom:956.610920pt;}
.y8b{bottom:964.450897pt;}
.ybd{bottom:965.570899pt;}
.y12b{bottom:975.810874pt;}
.yed{bottom:976.290874pt;}
.y8a{bottom:984.130850pt;}
.ybc{bottom:985.250844pt;}
.y12a{bottom:995.485487pt;}
.yec{bottom:995.805484pt;}
.y89{bottom:1003.645471pt;}
.ybb{bottom:1004.765463pt;}
.y129{bottom:1015.197443pt;}
.yeb{bottom:1015.517440pt;}
.y88{bottom:1023.997420pt;}
.yba{bottom:1024.477419pt;}
.y86{bottom:1084.317267pt;}
.y2{bottom:1096.957234pt;}
.ha{height:32.159920pt;}
.h8{height:32.243669pt;}
.h9{height:32.339919pt;}
.hc{height:43.354892pt;}
.hd{height:47.124882pt;}
.h4{height:47.999880pt;}
.he{height:48.095880pt;}
.h5{height:48.124880pt;}
.h6{height:48.221129pt;}
.h3{height:52.834555pt;}
.h10{height:53.937365pt;}
.hb{height:61.915064pt;}
.hf{height:63.656091pt;}
.h7{height:71.923581pt;}
.h11{height:87.039820pt;}
.h12{height:89.724712pt;}
.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;}
.x5a{left:45.279873pt;}
.x19{left:48.959867pt;}
.x6{left:52.639856pt;}
.x1a{left:57.599845pt;}
.x57{left:59.679836pt;}
.x4d{left:62.559829pt;}
.x5b{left:68.959817pt;}
.x4b{left:72.959807pt;}
.x61{left:74.079804pt;}
.xd{left:92.991760pt;}
.xa{left:96.831747pt;}
.xb{left:102.911728pt;}
.x72{left:109.791716pt;}
.xc{left:112.991710pt;}
.xf{left:115.391698pt;}
.x78{left:116.671694pt;}
.x4{left:119.871687pt;}
.x8{left:120.991690pt;}
.xe{left:123.711675pt;}
.x3{left:126.591672pt;}
.x9{left:127.711665pt;}
.x7{left:134.586321pt;}
.x73{left:156.826267pt;}
.x5{left:160.346256pt;}
.x5c{left:167.546241pt;}
.x79{left:171.066231pt;}
.x54{left:180.666203pt;}
.x71{left:184.346187pt;}
.x56{left:227.066091pt;}
.x55{left:247.746033pt;}
.x4c{left:273.025977pt;}
.x63{left:282.945957pt;}
.x62{left:286.145941pt;}
.x75{left:287.585938pt;}
.x64{left:290.465937pt;}
.x74{left:292.065929pt;}
.x6b{left:300.385894pt;}
.x5d{left:308.865875pt;}
.x7a{left:311.905866pt;}
.x7b{left:315.105870pt;}
.x6d{left:318.625859pt;}
.x6c{left:319.745853pt;}
.x5e{left:320.865845pt;}
.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;}
.x58{left:429.372247pt;}
.x77{left:446.492198pt;}
.x76{left:447.452197pt;}
.x65{left:448.732184pt;}
.x5f{left:452.092200pt;}
.x68{left:453.052201pt;}
.x7d{left:457.692162pt;}
.x4f{left:459.132182pt;}
.x7c{left:461.532160pt;}
.x67{left:463.132172pt;}
.x6f{left:467.612140pt;}
.x6e{left:468.572141pt;}
.x66{left:480.252123pt;}
.x52{left:497.532070pt;}
.x27{left:512.412038pt;}
.x1c{left:513.532030pt;}
.x4e{left:520.732004pt;}
.x50{left:535.451977pt;}
.x51{left:538.491968pt;}
.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;}
.x69{left:583.651849pt;}
.x3f{left:584.611848pt;}
.x43{left:585.571848pt;}
.x32{left:589.411845pt;}
.x6a{left:591.651829pt;}
.x46{left:593.251841pt;}
.x30{left:595.811812pt;}
.x3e{left:597.731811pt;}
.x70{left:600.771802pt;}
.x44{left:603.171820pt;}
.x41{left:611.971806pt;}
.x24{left:616.771762pt;}
.x40{left:628.771732pt;}
.x60{left:635.651719pt;}
.x26{left:649.411695pt;}
.x3a{left:656.771662pt;}
.x4a{left:671.491636pt;}
.x59{left:686.531637pt;}
.x53{left:749.918116pt;}
}




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