
    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_dec91fd6563d07b340f1e7a7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.075000;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_f69fe44ca5f8cce4a858f0dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.139000;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_fb9ba4fe9ed29cae667c38e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.139000;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_fbaed03c237fe6ae2727e474.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.059000;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_d10675b861eb4e5443f2ee28.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.075000;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_41ce617a2f3390c42c0d2e66.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_37ee2d43d7457ea288c3ac10.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5b0e944a46cc67c85cc9d37e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a88c36cdf0bcc175fa92ed38.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.137000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_67e0888a6e5eddae77441fd0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c03397b62a2fccef20161f3f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_09b95bf5b969289caf73d1e7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_64f9f3564faccf89d298b64e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a02820de95e387b477ab6d0c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.061000;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:fff;src:url('chunks/assets/font_14501331bcc22e9fec2059d1.woff2')format("woff");}.fff{font-family:fff;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-46.601558px;}
.ws0{word-spacing:-18.006785px;}
.ws2{word-spacing:-16.498716px;}
.ws6{word-spacing:-15.001902px;}
.ws3{word-spacing:-12.004785px;}
.ws8{word-spacing:-10.504681px;}
.ws5{word-spacing:-6.996050px;}
.ws7{word-spacing:-5.901460px;}
.ws1{word-spacing:0.000000px;}
._17{margin-left:-6.752544px;}
._21{margin-left:-1.004268px;}
._f{width:1.766792px;}
._2{width:3.151687px;}
._4{width:4.914850px;}
._9{width:6.443101px;}
._5{width:7.488140px;}
._11{width:9.298369px;}
._3d{width:10.320970px;}
._10{width:11.351501px;}
._8{width:12.438024px;}
._18{width:13.909068px;}
._d{width:15.336238px;}
._1a{width:18.024039px;}
._e{width:19.793925px;}
._1b{width:21.238440px;}
._30{width:22.264942px;}
._a{width:23.315898px;}
._37{width:24.705194px;}
._20{width:25.821147px;}
._35{width:26.927988px;}
._19{width:28.095069px;}
._14{width:29.839715px;}
._26{width:31.484820px;}
._7{width:32.583900px;}
._b{width:34.360663px;}
._3a{width:35.395992px;}
._3{width:36.444618px;}
._2f{width:37.683744px;}
._16{width:39.241926px;}
._23{width:41.019970px;}
._6{width:43.051944px;}
._15{width:44.369706px;}
._12{width:45.426920px;}
._25{width:47.424768px;}
._1{width:48.508021px;}
._c{width:50.148119px;}
._45{width:51.198817px;}
._1c{width:52.297344px;}
._2a{width:53.349694px;}
._24{width:54.811859px;}
._3b{width:56.827521px;}
._22{width:57.897187px;}
._31{width:58.987453px;}
._28{width:60.231688px;}
._2b{width:61.602548px;}
._2e{width:63.176413px;}
._4a{width:65.037986px;}
._38{width:66.352652px;}
._3e{width:67.429628px;}
._29{width:70.147839px;}
._2c{width:71.222402px;}
._42{width:72.814734px;}
._27{width:73.923695px;}
._33{width:75.175139px;}
._32{width:77.141329px;}
._36{width:78.367010px;}
._0{width:79.651884px;}
._3c{width:80.993909px;}
._2d{width:82.098015px;}
._54{width:83.302969px;}
._4b{width:84.476538px;}
._3f{width:86.165290px;}
._48{width:87.406395px;}
._43{width:93.121500px;}
._40{width:94.706061px;}
._39{width:96.006193px;}
._34{width:98.378454px;}
._49{width:101.725336px;}
._41{width:109.037506px;}
._4f{width:114.419576px;}
._1f{width:118.202105px;}
._47{width:122.136927px;}
._4e{width:126.679002px;}
._1d{width:129.969359px;}
._13{width:134.694260px;}
._50{width:135.941353px;}
._53{width:138.896233px;}
._4c{width:143.608992px;}
._46{width:145.196549px;}
._1e{width:154.532127px;}
._44{width:177.545849px;}
._4d{width:193.976208px;}
._51{width:195.523510px;}
._52{width:997.858144px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fsb{font-size:18.675507px;}
.fs8{font-size:27.984200px;}
.fsc{font-size:29.750527px;}
.fs4{font-size:32.412211px;}
.fse{font-size:36.013967px;}
.fs6{font-size:39.614927px;}
.fsa{font-size:42.016355px;}
.fsd{font-size:42.018724px;}
.fs5{font-size:48.019141px;}
.fs3{font-size:54.020354px;}
.fs9{font-size:60.007609px;}
.fs2{font-size:65.994864px;}
.fs1{font-size:72.027138px;}
.fs7{font-size:78.014394px;}
.fs0{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y1c7{bottom:5.617766px;}
.y1c6{bottom:15.534608px;}
.y1c5{bottom:25.451451px;}
.y1c2{bottom:29.655019px;}
.y28{bottom:34.107763px;}
.y1c4{bottom:35.368293px;}
.y1bd{bottom:35.514983px;}
.y59{bottom:36.208538px;}
.y1c3{bottom:45.285135px;}
.y1bc{bottom:53.870950px;}
.y1c1{bottom:54.744267px;}
.y27{bottom:56.616244px;}
.y1b5{bottom:57.163435px;}
.y58{bottom:58.717019px;}
.y14d{bottom:70.715440px;}
.y1bb{bottom:71.009182px;}
.y26{bottom:79.124724px;}
.y1b4{bottom:79.671916px;}
.y57{bottom:81.225499px;}
.y14c{bottom:86.721821px;}
.yf4{bottom:98.143486px;}
.y25{bottom:101.633205px;}
.y1b3{bottom:102.180396px;}
.y14b{bottom:102.728201px;}
.y56{bottom:103.733980px;}
.yf3{bottom:114.149866px;}
.y14a{bottom:118.734582px;}
.yb4{bottom:123.999628px;}
.y24{bottom:124.141686px;}
.y1b2{bottom:124.688877px;}
.y55{bottom:126.242460px;}
.yf2{bottom:130.156246px;}
.y149{bottom:134.740962px;}
.y121{bottom:134.854596px;}
.y1c8{bottom:143.875725px;}
.y87{bottom:146.508109px;}
.y23{bottom:146.650166px;}
.y1b1{bottom:147.197358px;}
.y54{bottom:148.750941px;}
.y148{bottom:150.747342px;}
.y120{bottom:157.363077px;}
.y147{bottom:166.753723px;}
.y86{bottom:169.016590px;}
.y22{bottom:169.158647px;}
.y1b0{bottom:169.705838px;}
.yd0{bottom:170.365355px;}
.y53{bottom:171.259422px;}
.yd1{bottom:177.117899px;}
.y11f{bottom:179.871557px;}
.y146{bottom:182.760103px;}
.y186{bottom:184.416914px;}
.y85{bottom:191.525070px;}
.y21{bottom:191.667128px;}
.y1ba{bottom:192.214319px;}
.ycf{bottom:192.873835px;}
.y52{bottom:193.767902px;}
.y145{bottom:198.766484px;}
.y11e{bottom:202.380038px;}
.y1c0{bottom:202.405664px;}
.yef{bottom:202.657831px;}
.y185{bottom:206.925394px;}
.y188{bottom:208.390302px;}
.y84{bottom:214.033551px;}
.y20{bottom:214.175608px;}
.y1af{bottom:214.722800px;}
.yce{bottom:215.382316px;}
.y51{bottom:216.276383px;}
.y187{bottom:224.396682px;}
.y11d{bottom:224.888519px;}
.y1be{bottom:226.611662px;}
.y144{bottom:229.259493px;}
.y184{bottom:229.433875px;}
.y83{bottom:236.542032px;}
.y1f{bottom:236.684089px;}
.y1ae{bottom:237.231280px;}
.ycd{bottom:237.890797px;}
.y50{bottom:238.784864px;}
.y11c{bottom:247.396999px;}
.y183{bottom:251.942356px;}
.y82{bottom:259.050512px;}
.y1e{bottom:259.192570px;}
.y1ad{bottom:259.739761px;}
.ycc{bottom:260.399277px;}
.y4f{bottom:261.293344px;}
.y1ca{bottom:261.336859px;}
.y11b{bottom:269.905480px;}
.y182{bottom:274.450836px;}
.y81{bottom:281.558993px;}
.y1d{bottom:281.701050px;}
.y1ac{bottom:282.248242px;}
.ycb{bottom:282.907758px;}
.y4e{bottom:283.801825px;}
.y1c9{bottom:285.346170px;}
.y11a{bottom:292.413961px;}
.y181{bottom:296.959317px;}
.y80{bottom:304.067473px;}
.y1c{bottom:304.209531px;}
.y1ab{bottom:304.756722px;}
.yca{bottom:305.416239px;}
.y4d{bottom:306.310306px;}
.y1bf{bottom:306.827470px;}
.y119{bottom:314.922441px;}
.yf1{bottom:316.323618px;}
.y180{bottom:319.467798px;}
.y7f{bottom:326.575954px;}
.y1b{bottom:326.718012px;}
.yc9{bottom:327.924719px;}
.y4c{bottom:328.818786px;}
.y118{bottom:337.430922px;}
.y17f{bottom:341.976278px;}
.y7e{bottom:349.084435px;}
.y1a{bottom:349.226492px;}
.y1aa{bottom:349.773684px;}
.yc8{bottom:350.433200px;}
.y4b{bottom:351.327267px;}
.y117{bottom:359.939403px;}
.y7d{bottom:371.592915px;}
.y19{bottom:371.734973px;}
.y1a9{bottom:372.282164px;}
.yc7{bottom:372.941681px;}
.y4a{bottom:373.835748px;}
.y116{bottom:382.447883px;}
.y17e{bottom:386.993240px;}
.y7c{bottom:394.101396px;}
.y18{bottom:394.243454px;}
.y1a8{bottom:394.790645px;}
.yc6{bottom:395.450161px;}
.y49{bottom:396.344228px;}
.y143{bottom:404.930882px;}
.y115{bottom:404.956364px;}
.y17d{bottom:409.501720px;}
.y7b{bottom:416.609877px;}
.y17{bottom:416.751934px;}
.y1a7{bottom:417.299126px;}
.yc5{bottom:417.958642px;}
.y48{bottom:418.852709px;}
.y114{bottom:427.464845px;}
.y17c{bottom:432.010201px;}
.y7a{bottom:439.118357px;}
.y16{bottom:439.260415px;}
.y1a6{bottom:439.807606px;}
.yc3{bottom:440.467123px;}
.y47{bottom:441.361190px;}
.y113{bottom:449.973325px;}
.y79{bottom:461.626838px;}
.y15{bottom:461.768896px;}
.y1a5{bottom:462.316087px;}
.yc2{bottom:462.975603px;}
.y46{bottom:463.869670px;}
.y140{bottom:472.231253px;}
.y112{bottom:472.481806px;}
.y18a{bottom:475.829947px;}
.y78{bottom:484.135319px;}
.y14{bottom:484.277376px;}
.y1a4{bottom:484.824568px;}
.yc1{bottom:485.484084px;}
.y45{bottom:486.378151px;}
.y13f{bottom:494.739734px;}
.y111{bottom:494.990287px;}
.y77{bottom:506.643799px;}
.y13{bottom:506.785857px;}
.y1b9{bottom:507.333048px;}
.yc0{bottom:507.992565px;}
.y44{bottom:508.886632px;}
.yf0{bottom:510.659817px;}
.yc4{bottom:514.745109px;}
.y13e{bottom:517.248215px;}
.y110{bottom:517.498767px;}
.y17b{bottom:519.646409px;}
.y76{bottom:529.152280px;}
.y12{bottom:529.294338px;}
.y1a3{bottom:529.841529px;}
.ybf{bottom:530.501045px;}
.y43{bottom:531.395112px;}
.y13d{bottom:539.756695px;}
.y10f{bottom:540.007248px;}
.y17a{bottom:542.154889px;}
.y75{bottom:551.660761px;}
.y11{bottom:551.802818px;}
.y1a2{bottom:552.350010px;}
.ybe{bottom:553.009526px;}
.y42{bottom:553.903593px;}
.y13c{bottom:562.265176px;}
.y10e{bottom:562.515729px;}
.y179{bottom:564.663370px;}
.yb3{bottom:567.059799px;}
.yee{bottom:567.211198px;}
.y74{bottom:574.169241px;}
.y10{bottom:574.311299px;}
.y1a1{bottom:574.858490px;}
.ybd{bottom:575.518007px;}
.y41{bottom:576.412074px;}
.yf6{bottom:579.899631px;}
.yb2{bottom:583.066180px;}
.y13b{bottom:584.773657px;}
.y10d{bottom:585.024209px;}
.y178{bottom:587.171850px;}
.yed{bottom:589.719678px;}
.yf5{bottom:595.906011px;}
.y73{bottom:596.677722px;}
.yf{bottom:596.819780px;}
.y1a0{bottom:597.366971px;}
.ybc{bottom:598.026487px;}
.y40{bottom:598.920554px;}
.y13a{bottom:607.282137px;}
.y10c{bottom:607.532690px;}
.y177{bottom:609.680331px;}
.yec{bottom:612.228159px;}
.y72{bottom:619.186203px;}
.ye{bottom:619.328260px;}
.y1b8{bottom:619.875452px;}
.ybb{bottom:620.534968px;}
.y3f{bottom:621.429035px;}
.y139{bottom:629.790618px;}
.y10b{bottom:630.041171px;}
.yeb{bottom:634.736640px;}
.y71{bottom:641.694683px;}
.yd{bottom:641.836741px;}
.y19f{bottom:642.383932px;}
.yba{bottom:643.043449px;}
.y3e{bottom:643.937516px;}
.y138{bottom:652.299099px;}
.y10a{bottom:652.549651px;}
.y176{bottom:654.697292px;}
.yea{bottom:657.245120px;}
.y70{bottom:664.203164px;}
.yc{bottom:664.345222px;}
.y19e{bottom:664.892413px;}
.yb9{bottom:665.551929px;}
.y3d{bottom:666.445996px;}
.y137{bottom:674.807579px;}
.y109{bottom:675.058132px;}
.y175{bottom:677.205773px;}
.ye9{bottom:679.753601px;}
.yaf{bottom:679.884832px;}
.y6f{bottom:686.711645px;}
.yb{bottom:686.853702px;}
.y19d{bottom:687.400894px;}
.yb8{bottom:688.060410px;}
.y3c{bottom:688.954477px;}
.y136{bottom:697.316060px;}
.y108{bottom:697.566613px;}
.y174{bottom:699.714254px;}
.ye8{bottom:702.262082px;}
.yae{bottom:702.393312px;}
.y99{bottom:704.054500px;}
.y6e{bottom:709.220125px;}
.ya{bottom:709.362183px;}
.y19c{bottom:709.909374px;}
.yb7{bottom:710.568891px;}
.y3b{bottom:711.462958px;}
.y135{bottom:719.824541px;}
.y107{bottom:720.075093px;}
.y161{bottom:721.821568px;}
.y173{bottom:722.222734px;}
.ye7{bottom:724.770562px;}
.yad{bottom:724.901793px;}
.y98{bottom:726.562981px;}
.y6d{bottom:731.728606px;}
.y9{bottom:731.870664px;}
.y19b{bottom:732.417855px;}
.yb6{bottom:733.077371px;}
.y3a{bottom:733.971438px;}
.y134{bottom:742.333021px;}
.y106{bottom:742.583574px;}
.y160{bottom:744.330049px;}
.y172{bottom:744.731215px;}
.ye6{bottom:747.279043px;}
.yac{bottom:747.410274px;}
.y97{bottom:749.071461px;}
.y6c{bottom:754.237087px;}
.y8{bottom:754.379144px;}
.y19a{bottom:754.926336px;}
.yb5{bottom:755.585852px;}
.y39{bottom:756.479919px;}
.y133{bottom:764.841502px;}
.y105{bottom:765.092055px;}
.y15f{bottom:766.838530px;}
.y171{bottom:767.239696px;}
.ye5{bottom:769.787524px;}
.yab{bottom:769.918754px;}
.y96{bottom:771.579942px;}
.y6b{bottom:776.745567px;}
.y7{bottom:776.887625px;}
.y38{bottom:778.988400px;}
.y132{bottom:787.349983px;}
.y104{bottom:787.600535px;}
.y15e{bottom:789.347010px;}
.y170{bottom:789.748176px;}
.ye4{bottom:792.296004px;}
.yaa{bottom:792.427235px;}
.y95{bottom:794.088423px;}
.y6a{bottom:799.254048px;}
.yd3{bottom:799.329103px;}
.y6{bottom:799.396105px;}
.y199{bottom:799.943297px;}
.y37{bottom:801.496880px;}
.y131{bottom:809.858463px;}
.y103{bottom:810.109016px;}
.y15d{bottom:811.855491px;}
.y16f{bottom:812.256657px;}
.ye3{bottom:814.804485px;}
.ya9{bottom:814.935716px;}
.y94{bottom:816.596903px;}
.y69{bottom:821.762529px;}
.y5{bottom:821.904586px;}
.y198{bottom:822.451777px;}
.y36{bottom:824.005361px;}
.yd2{bottom:824.088432px;}
.y130{bottom:832.366944px;}
.y102{bottom:832.617497px;}
.y15c{bottom:834.363972px;}
.y16e{bottom:834.765138px;}
.ye2{bottom:837.312966px;}
.ya8{bottom:837.444196px;}
.y93{bottom:839.105384px;}
.y68{bottom:844.271009px;}
.y197{bottom:844.960258px;}
.y35{bottom:846.513842px;}
.y12f{bottom:854.875425px;}
.y101{bottom:855.125977px;}
.y15b{bottom:856.872452px;}
.y16d{bottom:857.273618px;}
.ye1{bottom:859.821446px;}
.ya7{bottom:859.952677px;}
.y92{bottom:861.613865px;}
.y67{bottom:866.779490px;}
.y196{bottom:867.468739px;}
.y4{bottom:868.046972px;}
.y34{bottom:869.022322px;}
.y12e{bottom:877.383905px;}
.y100{bottom:877.634458px;}
.y15a{bottom:879.380933px;}
.y16c{bottom:879.782099px;}
.ye0{bottom:882.329927px;}
.ya6{bottom:882.461158px;}
.y91{bottom:884.122345px;}
.y66{bottom:889.287971px;}
.y1b7{bottom:889.977219px;}
.y12d{bottom:899.892386px;}
.yff{bottom:900.142939px;}
.y159{bottom:901.889414px;}
.y16b{bottom:902.290580px;}
.ydf{bottom:904.838408px;}
.ya5{bottom:904.969638px;}
.y90{bottom:906.630826px;}
.y65{bottom:911.796451px;}
.y195{bottom:912.485700px;}
.y12c{bottom:922.400867px;}
.yfe{bottom:922.651419px;}
.y158{bottom:924.397894px;}
.y16a{bottom:924.799060px;}
.yde{bottom:927.346888px;}
.ya4{bottom:927.478119px;}
.y8f{bottom:929.139307px;}
.y64{bottom:934.304932px;}
.y194{bottom:934.994181px;}
.y32{bottom:938.711196px;}
.y33{bottom:944.338316px;}
.y12b{bottom:944.909347px;}
.yfd{bottom:945.159900px;}
.y157{bottom:946.906375px;}
.y169{bottom:947.307541px;}
.ydd{bottom:949.855369px;}
.ya3{bottom:949.986600px;}
.y8e{bottom:951.647787px;}
.y63{bottom:956.813413px;}
.y193{bottom:957.502661px;}
.y1d3{bottom:958.493749px;}
.y12a{bottom:967.417828px;}
.yfc{bottom:967.668381px;}
.y156{bottom:969.414856px;}
.y168{bottom:969.816022px;}
.ydc{bottom:972.363850px;}
.ya2{bottom:972.495080px;}
.y8d{bottom:974.156268px;}
.y30{bottom:974.724765px;}
.y62{bottom:979.321893px;}
.y192{bottom:980.011142px;}
.y31{bottom:980.351885px;}
.y1d2{bottom:981.002229px;}
.y129{bottom:989.926309px;}
.yfb{bottom:990.176861px;}
.y155{bottom:991.923336px;}
.y167{bottom:992.324502px;}
.ydb{bottom:994.872330px;}
.ya1{bottom:995.003561px;}
.y8c{bottom:996.664749px;}
.y61{bottom:1001.830374px;}
.y191{bottom:1002.519623px;}
.y1d1{bottom:1003.510710px;}
.y2e{bottom:1010.738334px;}
.y128{bottom:1012.434789px;}
.yfa{bottom:1012.685342px;}
.y154{bottom:1014.431817px;}
.y166{bottom:1014.832983px;}
.yda{bottom:1017.380811px;}
.ya0{bottom:1017.512042px;}
.y8b{bottom:1019.173229px;}
.y60{bottom:1024.338855px;}
.y1b6{bottom:1025.028103px;}
.y1d0{bottom:1026.019191px;}
.y2d{bottom:1028.745118px;}
.y127{bottom:1034.943270px;}
.yf9{bottom:1035.193823px;}
.y153{bottom:1036.940298px;}
.y165{bottom:1037.341464px;}
.yd9{bottom:1039.889292px;}
.y9f{bottom:1040.020522px;}
.y8a{bottom:1041.681710px;}
.y2c{bottom:1046.751903px;}
.y5f{bottom:1046.847335px;}
.y190{bottom:1047.536584px;}
.y1cf{bottom:1048.527671px;}
.y2f{bottom:1052.379023px;}
.y126{bottom:1057.451750px;}
.yf8{bottom:1057.702303px;}
.y152{bottom:1059.448778px;}
.y164{bottom:1059.849944px;}
.yd8{bottom:1062.397772px;}
.y9e{bottom:1062.529003px;}
.y89{bottom:1064.190191px;}
.y2b{bottom:1064.758687px;}
.y5e{bottom:1069.355816px;}
.y18f{bottom:1070.045065px;}
.y125{bottom:1079.960231px;}
.yf7{bottom:1080.210784px;}
.y151{bottom:1081.957259px;}
.y163{bottom:1082.358425px;}
.y2a{bottom:1082.765472px;}
.yd7{bottom:1084.906253px;}
.y9d{bottom:1085.037484px;}
.y88{bottom:1086.698671px;}
.y5d{bottom:1091.864297px;}
.y18e{bottom:1092.553545px;}
.y1ce{bottom:1093.544633px;}
.y29{bottom:1100.772257px;}
.y124{bottom:1102.468712px;}
.y150{bottom:1104.465740px;}
.y162{bottom:1104.866906px;}
.yd6{bottom:1107.414734px;}
.y9c{bottom:1107.545964px;}
.y5c{bottom:1114.372777px;}
.y18d{bottom:1115.062026px;}
.y1cd{bottom:1116.053113px;}
.y142{bottom:1121.750961px;}
.y123{bottom:1124.977192px;}
.yb1{bottom:1126.828225px;}
.y14f{bottom:1126.974220px;}
.yd5{bottom:1129.923214px;}
.y9b{bottom:1130.054445px;}
.y5b{bottom:1136.881258px;}
.y18c{bottom:1137.570507px;}
.y1cc{bottom:1138.561594px;}
.y141{bottom:1146.510290px;}
.y122{bottom:1147.485673px;}
.y189{bottom:1148.507329px;}
.y14e{bottom:1149.482701px;}
.yb0{bottom:1151.587553px;}
.yd4{bottom:1152.431695px;}
.y9a{bottom:1152.562926px;}
.y3{bottom:1153.214799px;}
.y5a{bottom:1159.389739px;}
.y18b{bottom:1160.078987px;}
.y1cb{bottom:1161.070075px;}
.y2{bottom:1182.475824px;}
.h13{height:15.033783px;}
.h10{height:22.751155px;}
.h15{height:24.187179px;}
.h7{height:28.879280px;}
.h17{height:29.279355px;}
.hb{height:32.246550px;}
.h12{height:34.159296px;}
.h16{height:34.161222px;}
.h9{height:39.039562px;}
.hc{height:39.087581px;}
.hf{height:42.785055px;}
.h6{height:48.132135px;}
.h11{height:48.786186px;}
.h14{height:53.639998px;}
.h8{height:53.653825px;}
.ha{height:53.719820px;}
.h5{height:58.801424px;}
.h4{height:59.638470px;}
.hd{height:63.503717px;}
.he{height:69.510825px;}
.h3{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:47.986994px;}
.xf{left:49.025411px;}
.x10{left:50.900892px;}
.x4{left:52.435936px;}
.x15{left:56.953046px;}
.x11{left:58.798029px;}
.x1{left:63.092295px;}
.x13{left:119.519995px;}
.x14{left:127.283452px;}
.x6{left:224.217721px;}
.x2{left:305.498081px;}
.x5{left:469.237524px;}
.x12{left:496.419632px;}
.xa{left:586.753921px;}
.xc{left:600.220303px;}
.xe{left:618.659038px;}
.xd{left:620.563834px;}
.x8{left:646.648138px;}
.xb{left:717.300510px;}
.x9{left:741.470585px;}
.x7{left:824.465141px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-41.423607pt;}
.ws0{word-spacing:-16.006031pt;}
.ws2{word-spacing:-14.665525pt;}
.ws6{word-spacing:-13.335024pt;}
.ws3{word-spacing:-10.670920pt;}
.ws8{word-spacing:-9.337494pt;}
.ws5{word-spacing:-6.218711pt;}
.ws7{word-spacing:-5.245742pt;}
.ws1{word-spacing:0.000000pt;}
._17{margin-left:-6.002262pt;}
._21{margin-left:-0.892683pt;}
._f{width:1.570482pt;}
._2{width:2.801499pt;}
._4{width:4.368756pt;}
._9{width:5.727201pt;}
._5{width:6.656125pt;}
._11{width:8.265217pt;}
._3d{width:9.174196pt;}
._10{width:10.090223pt;}
._8{width:11.056022pt;}
._18{width:12.363616pt;}
._d{width:13.632212pt;}
._1a{width:16.021368pt;}
._e{width:17.594600pt;}
._1b{width:18.878614pt;}
._30{width:19.791060pt;}
._a{width:20.725242pt;}
._37{width:21.960172pt;}
._20{width:22.952131pt;}
._35{width:23.935989pt;}
._19{width:24.973395pt;}
._14{width:26.524191pt;}
._26{width:27.986506pt;}
._7{width:28.963466pt;}
._b{width:30.542812pt;}
._3a{width:31.463104pt;}
._3{width:32.395216pt;}
._2f{width:33.496661pt;}
._16{width:34.881712pt;}
._23{width:36.462195pt;}
._6{width:38.268395pt;}
._15{width:39.439739pt;}
._12{width:40.379485pt;}
._25{width:42.155349pt;}
._1{width:43.118241pt;}
._c{width:44.576106pt;}
._45{width:45.510060pt;}
._1c{width:46.486528pt;}
._2a{width:47.421950pt;}
._24{width:48.721652pt;}
._3b{width:50.513352pt;}
._22{width:51.464167pt;}
._31{width:52.433292pt;}
._28{width:53.539278pt;}
._2b{width:54.757821pt;}
._2e{width:56.156811pt;}
._4a{width:57.811543pt;}
._38{width:58.980135pt;}
._3e{width:59.937447pt;}
._29{width:62.353635pt;}
._2c{width:63.308802pt;}
._42{width:64.724208pt;}
._27{width:65.709951pt;}
._33{width:66.822345pt;}
._32{width:68.570070pt;}
._36{width:69.659565pt;}
._0{width:70.801674pt;}
._3c{width:71.994586pt;}
._2d{width:72.976014pt;}
._54{width:74.047084pt;}
._4b{width:75.090256pt;}
._3f{width:76.591369pt;}
._48{width:77.694574pt;}
._43{width:82.774666pt;}
._40{width:84.183165pt;}
._39{width:85.338838pt;}
._34{width:87.447515pt;}
._49{width:90.422521pt;}
._41{width:96.922227pt;}
._4f{width:101.706290pt;}
._1f{width:105.068538pt;}
._47{width:108.566157pt;}
._4e{width:112.603557pt;}
._1d{width:115.528319pt;}
._13{width:119.728231pt;}
._50{width:120.836759pt;}
._53{width:123.463319pt;}
._4c{width:127.652438pt;}
._46{width:129.063599pt;}
._1e{width:137.361890pt;}
._44{width:157.818533pt;}
._4d{width:172.423296pt;}
._51{width:173.798676pt;}
._52{width:886.985017pt;}
.fsb{font-size:16.600451pt;}
.fs8{font-size:24.874844pt;}
.fsc{font-size:26.444913pt;}
.fs4{font-size:28.810854pt;}
.fse{font-size:32.012415pt;}
.fs6{font-size:35.213268pt;}
.fsa{font-size:37.347871pt;}
.fsd{font-size:37.349977pt;}
.fs5{font-size:42.683681pt;}
.fs3{font-size:48.018092pt;}
.fs9{font-size:53.340097pt;}
.fs2{font-size:58.662102pt;}
.fs1{font-size:64.024123pt;}
.fs7{font-size:69.346128pt;}
.fs0{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y1c7{bottom:4.993570pt;}
.y1c6{bottom:13.808541pt;}
.y1c5{bottom:22.623512pt;}
.y1c2{bottom:26.360017pt;}
.y28{bottom:30.318012pt;}
.y1c4{bottom:31.438483pt;}
.y1bd{bottom:31.568874pt;}
.y59{bottom:32.185367pt;}
.y1c3{bottom:40.253454pt;}
.y1bc{bottom:47.885289pt;}
.y1c1{bottom:48.661571pt;}
.y27{bottom:50.325550pt;}
.y1b5{bottom:50.811942pt;}
.y58{bottom:52.192905pt;}
.y14d{bottom:62.858169pt;}
.y1bb{bottom:63.119273pt;}
.y26{bottom:70.333088pt;}
.y1b4{bottom:70.819481pt;}
.y57{bottom:72.200444pt;}
.y14c{bottom:77.086063pt;}
.yf4{bottom:87.238654pt;}
.y25{bottom:90.340627pt;}
.y1b3{bottom:90.827019pt;}
.y14b{bottom:91.313957pt;}
.y56{bottom:92.207982pt;}
.yf3{bottom:101.466548pt;}
.y14a{bottom:105.541850pt;}
.yb4{bottom:110.221892pt;}
.y24{bottom:110.348165pt;}
.y1b2{bottom:110.834557pt;}
.y55{bottom:112.215520pt;}
.yf2{bottom:115.694441pt;}
.y149{bottom:119.769744pt;}
.y121{bottom:119.870752pt;}
.y1c8{bottom:127.889533pt;}
.y87{bottom:130.229430pt;}
.y23{bottom:130.355703pt;}
.y1b1{bottom:130.842096pt;}
.y54{bottom:132.223059pt;}
.y148{bottom:133.997638pt;}
.y120{bottom:139.878290pt;}
.y147{bottom:148.225531pt;}
.y86{bottom:150.236968pt;}
.y22{bottom:150.363242pt;}
.y1b0{bottom:150.849634pt;}
.yd0{bottom:151.435871pt;}
.y53{bottom:152.230597pt;}
.yd1{bottom:157.438132pt;}
.y11f{bottom:159.885829pt;}
.y146{bottom:162.453425pt;}
.y186{bottom:163.926145pt;}
.y85{bottom:170.244507pt;}
.y21{bottom:170.370780pt;}
.y1ba{bottom:170.857172pt;}
.ycf{bottom:171.443409pt;}
.y52{bottom:172.238136pt;}
.y145{bottom:176.681319pt;}
.y11e{bottom:179.893367pt;}
.y1c0{bottom:179.916146pt;}
.yef{bottom:180.140295pt;}
.y185{bottom:183.933684pt;}
.y188{bottom:185.235824pt;}
.y84{bottom:190.252045pt;}
.y20{bottom:190.378318pt;}
.y1af{bottom:190.864711pt;}
.yce{bottom:191.450948pt;}
.y51{bottom:192.245674pt;}
.y187{bottom:199.463718pt;}
.y11d{bottom:199.900906pt;}
.y1be{bottom:201.432588pt;}
.y144{bottom:203.786216pt;}
.y184{bottom:203.941222pt;}
.y83{bottom:210.259584pt;}
.y1f{bottom:210.385857pt;}
.y1ae{bottom:210.872249pt;}
.ycd{bottom:211.458486pt;}
.y50{bottom:212.253212pt;}
.y11c{bottom:219.908444pt;}
.y183{bottom:223.948761pt;}
.y82{bottom:230.267122pt;}
.y1e{bottom:230.393395pt;}
.y1ad{bottom:230.879788pt;}
.ycc{bottom:231.466024pt;}
.y4f{bottom:232.260751pt;}
.y1ca{bottom:232.299430pt;}
.y11b{bottom:239.915982pt;}
.y182{bottom:243.956299pt;}
.y81{bottom:250.274660pt;}
.y1d{bottom:250.400934pt;}
.y1ac{bottom:250.887326pt;}
.ycb{bottom:251.473563pt;}
.y4e{bottom:252.268289pt;}
.y1c9{bottom:253.641040pt;}
.y11a{bottom:259.923521pt;}
.y181{bottom:263.963837pt;}
.y80{bottom:270.282199pt;}
.y1c{bottom:270.408472pt;}
.y1ab{bottom:270.894864pt;}
.yca{bottom:271.481101pt;}
.y4d{bottom:272.275827pt;}
.y1bf{bottom:272.735529pt;}
.y119{bottom:279.931059pt;}
.yf1{bottom:281.176549pt;}
.y180{bottom:283.971376pt;}
.y7f{bottom:290.289737pt;}
.y1b{bottom:290.416010pt;}
.yc9{bottom:291.488639pt;}
.y4c{bottom:292.283366pt;}
.y118{bottom:299.938597pt;}
.y17f{bottom:303.978914pt;}
.y7e{bottom:310.297275pt;}
.y1a{bottom:310.423549pt;}
.y1aa{bottom:310.909941pt;}
.yc8{bottom:311.496178pt;}
.y4b{bottom:312.290904pt;}
.y117{bottom:319.946136pt;}
.y7d{bottom:330.304814pt;}
.y19{bottom:330.431087pt;}
.y1a9{bottom:330.917479pt;}
.yc7{bottom:331.503716pt;}
.y4a{bottom:332.298442pt;}
.y116{bottom:339.953674pt;}
.y17e{bottom:343.993991pt;}
.y7c{bottom:350.312352pt;}
.y18{bottom:350.438625pt;}
.y1a8{bottom:350.925018pt;}
.yc6{bottom:351.511254pt;}
.y49{bottom:352.305981pt;}
.y143{bottom:359.938562pt;}
.y115{bottom:359.961213pt;}
.y17d{bottom:364.001529pt;}
.y7b{bottom:370.319890pt;}
.y17{bottom:370.446164pt;}
.y1a7{bottom:370.932556pt;}
.yc5{bottom:371.518793pt;}
.y48{bottom:372.313519pt;}
.y114{bottom:379.968751pt;}
.y17c{bottom:384.009068pt;}
.y7a{bottom:390.327429pt;}
.y16{bottom:390.453702pt;}
.y1a6{bottom:390.940094pt;}
.yc3{bottom:391.526331pt;}
.y47{bottom:392.321058pt;}
.y113{bottom:399.976289pt;}
.y79{bottom:410.334967pt;}
.y15{bottom:410.461240pt;}
.y1a5{bottom:410.947633pt;}
.yc2{bottom:411.533870pt;}
.y46{bottom:412.328596pt;}
.y140{bottom:419.761114pt;}
.y112{bottom:419.983828pt;}
.y18a{bottom:422.959953pt;}
.y78{bottom:430.342506pt;}
.y14{bottom:430.468779pt;}
.y1a4{bottom:430.955171pt;}
.yc1{bottom:431.541408pt;}
.y45{bottom:432.336134pt;}
.y13f{bottom:439.768652pt;}
.y111{bottom:439.991366pt;}
.y77{bottom:450.350044pt;}
.y13{bottom:450.476317pt;}
.y1b9{bottom:450.962710pt;}
.yc0{bottom:451.548946pt;}
.y44{bottom:452.343673pt;}
.yf0{bottom:453.919838pt;}
.yc4{bottom:457.551208pt;}
.y13e{bottom:459.776191pt;}
.y110{bottom:459.998904pt;}
.y17b{bottom:461.907919pt;}
.y76{bottom:470.357582pt;}
.y12{bottom:470.483856pt;}
.y1a3{bottom:470.970248pt;}
.ybf{bottom:471.556485pt;}
.y43{bottom:472.351211pt;}
.y13d{bottom:479.783729pt;}
.y10f{bottom:480.006443pt;}
.y17a{bottom:481.915457pt;}
.y75{bottom:490.365121pt;}
.y11{bottom:490.491394pt;}
.y1a2{bottom:490.977786pt;}
.ybe{bottom:491.564023pt;}
.y42{bottom:492.358749pt;}
.y13c{bottom:499.791267pt;}
.y10e{bottom:500.013981pt;}
.y179{bottom:501.922995pt;}
.yb3{bottom:504.053155pt;}
.yee{bottom:504.187731pt;}
.y74{bottom:510.372659pt;}
.y10{bottom:510.498932pt;}
.y1a1{bottom:510.985325pt;}
.ybd{bottom:511.571561pt;}
.y41{bottom:512.366288pt;}
.yf6{bottom:515.466338pt;}
.yb2{bottom:518.281048pt;}
.y13b{bottom:519.798806pt;}
.y10d{bottom:520.021519pt;}
.y178{bottom:521.930534pt;}
.yed{bottom:524.195270pt;}
.yf5{bottom:529.694232pt;}
.y73{bottom:530.380197pt;}
.yf{bottom:530.506471pt;}
.y1a0{bottom:530.992863pt;}
.ybc{bottom:531.579100pt;}
.y40{bottom:532.373826pt;}
.y13a{bottom:539.806344pt;}
.y10c{bottom:540.029058pt;}
.y177{bottom:541.938072pt;}
.yec{bottom:544.202808pt;}
.y72{bottom:550.387736pt;}
.ye{bottom:550.514009pt;}
.y1b8{bottom:551.000401pt;}
.ybb{bottom:551.586638pt;}
.y3f{bottom:552.381365pt;}
.y139{bottom:559.813883pt;}
.y10b{bottom:560.036596pt;}
.yeb{bottom:564.210346pt;}
.y71{bottom:570.395274pt;}
.yd{bottom:570.521547pt;}
.y19f{bottom:571.007940pt;}
.yba{bottom:571.594177pt;}
.y3e{bottom:572.388903pt;}
.y138{bottom:579.821421pt;}
.y10a{bottom:580.044135pt;}
.y176{bottom:581.953149pt;}
.yea{bottom:584.217885pt;}
.y70{bottom:590.402813pt;}
.yc{bottom:590.529086pt;}
.y19e{bottom:591.015478pt;}
.yb9{bottom:591.601715pt;}
.y3d{bottom:592.396441pt;}
.y137{bottom:599.828959pt;}
.y109{bottom:600.051673pt;}
.y175{bottom:601.960687pt;}
.ye9{bottom:604.225423pt;}
.yaf{bottom:604.342073pt;}
.y6f{bottom:610.410351pt;}
.yb{bottom:610.536624pt;}
.y19d{bottom:611.023016pt;}
.yb8{bottom:611.609253pt;}
.y3c{bottom:612.403980pt;}
.y136{bottom:619.836498pt;}
.y108{bottom:620.059211pt;}
.y174{bottom:621.968226pt;}
.ye8{bottom:624.232962pt;}
.yae{bottom:624.349611pt;}
.y99{bottom:625.826222pt;}
.y6e{bottom:630.417889pt;}
.ya{bottom:630.544163pt;}
.y19c{bottom:631.030555pt;}
.yb7{bottom:631.616792pt;}
.y3b{bottom:632.411518pt;}
.y135{bottom:639.844036pt;}
.y107{bottom:640.066750pt;}
.y161{bottom:641.619172pt;}
.y173{bottom:641.975764pt;}
.ye7{bottom:644.240500pt;}
.yad{bottom:644.357149pt;}
.y98{bottom:645.833761pt;}
.y6d{bottom:650.425428pt;}
.y9{bottom:650.551701pt;}
.y19b{bottom:651.038093pt;}
.yb6{bottom:651.624330pt;}
.y3a{bottom:652.419056pt;}
.y134{bottom:659.851574pt;}
.y106{bottom:660.074288pt;}
.y160{bottom:661.626710pt;}
.y172{bottom:661.983302pt;}
.ye6{bottom:664.248038pt;}
.yac{bottom:664.364688pt;}
.y97{bottom:665.841299pt;}
.y6c{bottom:670.432966pt;}
.y8{bottom:670.559239pt;}
.y19a{bottom:671.045632pt;}
.yb5{bottom:671.631868pt;}
.y39{bottom:672.426595pt;}
.y133{bottom:679.859113pt;}
.y105{bottom:680.081826pt;}
.y15f{bottom:681.634249pt;}
.y171{bottom:681.990841pt;}
.ye5{bottom:684.255577pt;}
.yab{bottom:684.372226pt;}
.y96{bottom:685.848837pt;}
.y6b{bottom:690.440504pt;}
.y7{bottom:690.566778pt;}
.y38{bottom:692.434133pt;}
.y132{bottom:699.866651pt;}
.y104{bottom:700.089365pt;}
.y15e{bottom:701.641787pt;}
.y170{bottom:701.998379pt;}
.ye4{bottom:704.263115pt;}
.yaa{bottom:704.379765pt;}
.y95{bottom:705.856376pt;}
.y6a{bottom:710.448043pt;}
.yd3{bottom:710.514758pt;}
.y6{bottom:710.574316pt;}
.y199{bottom:711.060708pt;}
.y37{bottom:712.441671pt;}
.y131{bottom:719.874190pt;}
.y103{bottom:720.096903pt;}
.y15d{bottom:721.649325pt;}
.y16f{bottom:722.005917pt;}
.ye3{bottom:724.270653pt;}
.ya9{bottom:724.387303pt;}
.y94{bottom:725.863914pt;}
.y69{bottom:730.455581pt;}
.y5{bottom:730.581854pt;}
.y198{bottom:731.068247pt;}
.y36{bottom:732.449210pt;}
.yd2{bottom:732.523050pt;}
.y130{bottom:739.881728pt;}
.y102{bottom:740.104441pt;}
.y15c{bottom:741.656864pt;}
.y16e{bottom:742.013456pt;}
.ye2{bottom:744.278192pt;}
.ya8{bottom:744.394841pt;}
.y93{bottom:745.871452pt;}
.y68{bottom:750.463119pt;}
.y197{bottom:751.075785pt;}
.y35{bottom:752.456748pt;}
.y12f{bottom:759.889266pt;}
.y101{bottom:760.111980pt;}
.y15b{bottom:761.664402pt;}
.y16d{bottom:762.020994pt;}
.ye1{bottom:764.285730pt;}
.ya7{bottom:764.402380pt;}
.y92{bottom:765.878991pt;}
.y67{bottom:770.470658pt;}
.y196{bottom:771.083323pt;}
.y4{bottom:771.597308pt;}
.y34{bottom:772.464287pt;}
.y12e{bottom:779.896805pt;}
.y100{bottom:780.119518pt;}
.y15a{bottom:781.671941pt;}
.y16c{bottom:782.028533pt;}
.ye0{bottom:784.293268pt;}
.ya6{bottom:784.409918pt;}
.y91{bottom:785.886529pt;}
.y66{bottom:790.478196pt;}
.y1b7{bottom:791.090862pt;}
.y12d{bottom:799.904343pt;}
.yff{bottom:800.127057pt;}
.y159{bottom:801.679479pt;}
.y16b{bottom:802.036071pt;}
.ydf{bottom:804.300807pt;}
.ya5{bottom:804.417456pt;}
.y90{bottom:805.894068pt;}
.y65{bottom:810.485735pt;}
.y195{bottom:811.098400pt;}
.y12c{bottom:819.911881pt;}
.yfe{bottom:820.134595pt;}
.y158{bottom:821.687017pt;}
.y16a{bottom:822.043609pt;}
.yde{bottom:824.308345pt;}
.ya4{bottom:824.424995pt;}
.y8f{bottom:825.901606pt;}
.y64{bottom:830.493273pt;}
.y194{bottom:831.105938pt;}
.y32{bottom:834.409952pt;}
.y33{bottom:839.411836pt;}
.y12b{bottom:839.919420pt;}
.yfd{bottom:840.142133pt;}
.y157{bottom:841.694556pt;}
.y169{bottom:842.051148pt;}
.ydd{bottom:844.315884pt;}
.ya3{bottom:844.432533pt;}
.y8e{bottom:845.909144pt;}
.y63{bottom:850.500811pt;}
.y193{bottom:851.113477pt;}
.y1d3{bottom:851.994443pt;}
.y12a{bottom:859.926958pt;}
.yfc{bottom:860.149672pt;}
.y156{bottom:861.702094pt;}
.y168{bottom:862.058686pt;}
.ydc{bottom:864.323422pt;}
.ya2{bottom:864.440072pt;}
.y8d{bottom:865.916683pt;}
.y30{bottom:866.422013pt;}
.y62{bottom:870.508350pt;}
.y192{bottom:871.121015pt;}
.y31{bottom:871.423898pt;}
.y1d2{bottom:872.001982pt;}
.y129{bottom:879.934496pt;}
.yfb{bottom:880.157210pt;}
.y155{bottom:881.709632pt;}
.y167{bottom:882.066224pt;}
.ydb{bottom:884.330960pt;}
.ya1{bottom:884.447610pt;}
.y8c{bottom:885.924221pt;}
.y61{bottom:890.515888pt;}
.y191{bottom:891.128554pt;}
.y1d1{bottom:892.009520pt;}
.y2e{bottom:898.434075pt;}
.y128{bottom:899.942035pt;}
.yfa{bottom:900.164748pt;}
.y154{bottom:901.717171pt;}
.y166{bottom:902.073763pt;}
.yda{bottom:904.338499pt;}
.ya0{bottom:904.455148pt;}
.y8b{bottom:905.931759pt;}
.y60{bottom:910.523426pt;}
.y1b6{bottom:911.136092pt;}
.y1d0{bottom:912.017058pt;}
.y2d{bottom:914.440105pt;}
.y127{bottom:919.949573pt;}
.yf9{bottom:920.172287pt;}
.y153{bottom:921.724709pt;}
.y165{bottom:922.081301pt;}
.yd9{bottom:924.346037pt;}
.y9f{bottom:924.462687pt;}
.y8a{bottom:925.939298pt;}
.y2c{bottom:930.446136pt;}
.y5f{bottom:930.530965pt;}
.y190{bottom:931.143630pt;}
.y1cf{bottom:932.024597pt;}
.y2f{bottom:935.448021pt;}
.y126{bottom:939.957112pt;}
.yf8{bottom:940.179825pt;}
.y152{bottom:941.732247pt;}
.y164{bottom:942.088839pt;}
.yd8{bottom:944.353575pt;}
.y9e{bottom:944.470225pt;}
.y89{bottom:945.946836pt;}
.y2b{bottom:946.452167pt;}
.y5e{bottom:950.538503pt;}
.y18f{bottom:951.151169pt;}
.y125{bottom:959.964650pt;}
.yf7{bottom:960.187364pt;}
.y151{bottom:961.739786pt;}
.y163{bottom:962.096378pt;}
.y2a{bottom:962.458197pt;}
.yd7{bottom:964.361114pt;}
.y9d{bottom:964.477763pt;}
.y88{bottom:965.954374pt;}
.y5d{bottom:970.546041pt;}
.y18e{bottom:971.158707pt;}
.y1ce{bottom:972.039673pt;}
.y29{bottom:978.464228pt;}
.y124{bottom:979.972188pt;}
.y150{bottom:981.747324pt;}
.y162{bottom:982.103916pt;}
.yd6{bottom:984.368652pt;}
.y9c{bottom:984.485302pt;}
.y5c{bottom:990.553580pt;}
.y18d{bottom:991.166245pt;}
.y1cd{bottom:992.047212pt;}
.y142{bottom:997.111965pt;}
.y123{bottom:999.979727pt;}
.yb1{bottom:1001.625089pt;}
.y14f{bottom:1001.754863pt;}
.yd5{bottom:1004.376190pt;}
.y9b{bottom:1004.492840pt;}
.y5b{bottom:1010.561118pt;}
.y18c{bottom:1011.173784pt;}
.y1cc{bottom:1012.054750pt;}
.y141{bottom:1019.120258pt;}
.y122{bottom:1019.987265pt;}
.y189{bottom:1020.895403pt;}
.y14e{bottom:1021.762401pt;}
.yb0{bottom:1023.633381pt;}
.yd4{bottom:1024.383729pt;}
.y9a{bottom:1024.500378pt;}
.y3{bottom:1025.079822pt;}
.y5a{bottom:1030.568657pt;}
.y18b{bottom:1031.181322pt;}
.y1cb{bottom:1032.062289pt;}
.y2{bottom:1051.089621pt;}
.h13{height:13.363363pt;}
.h10{height:20.223249pt;}
.h15{height:21.499714pt;}
.h7{height:25.670471pt;}
.h17{height:26.026094pt;}
.hb{height:28.663600pt;}
.h12{height:30.363819pt;}
.h16{height:30.365531pt;}
.h9{height:34.701833pt;}
.hc{height:34.744516pt;}
.hf{height:38.031160pt;}
.h6{height:42.784120pt;}
.h11{height:43.365499pt;}
.h14{height:47.679998pt;}
.h8{height:47.692289pt;}
.ha{height:47.750951pt;}
.h5{height:52.267933pt;}
.h4{height:53.011974pt;}
.hd{height:56.447748pt;}
.he{height:61.787400pt;}
.h3{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:42.655106pt;}
.xf{left:43.578143pt;}
.x10{left:45.245237pt;}
.x4{left:46.609721pt;}
.x15{left:50.624929pt;}
.x11{left:52.264915pt;}
.x1{left:56.082040pt;}
.x13{left:106.239996pt;}
.x14{left:113.140846pt;}
.x6{left:199.304641pt;}
.x2{left:271.553849pt;}
.x5{left:417.100021pt;}
.x12{left:441.261895pt;}
.xa{left:521.559041pt;}
.xc{left:533.529159pt;}
.xe{left:549.919145pt;}
.xd{left:551.612297pt;}
.x8{left:574.798345pt;}
.xb{left:637.600453pt;}
.x9{left:659.084965pt;}
.x7{left:732.857903pt;}
}




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