
    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_6d20e52c44d52f4f653362f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.129000;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_bfb5ee252c7da8407f25f144.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_4d1136d6367b067bac0a8ec1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108000;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_1d4abdfbfea68e9da58b8ec0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;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_5d65f330978eed23c722859f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960938;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_098f788de5f2079f9e897428.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.896484;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_da36afe41fe1c60319029409.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960938;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_0f308d6fe964f7e154b6f7d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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;}
.m4{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:34.559986px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.021282px;}
.ls0{letter-spacing:0.096738px;}
.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:-42.324463px;}
.ws2{word-spacing:-41.856721px;}
.wsc{word-spacing:-18.021275px;}
.ws0{word-spacing:-17.999993px;}
.ws3{word-spacing:-16.559993px;}
.ws1{word-spacing:-15.839994px;}
.ws7{word-spacing:-14.939994px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:57.061521px;}
.ws6{word-spacing:74.308413px;}
.wsb{word-spacing:80.281141px;}
.wsa{word-spacing:109.627286px;}
.ws9{word-spacing:129.272690px;}
._3{margin-left:-8.830451px;}
._16{margin-left:-7.269404px;}
._15{margin-left:-6.073089px;}
._4{margin-left:-4.487058px;}
._2{margin-left:-2.877977px;}
._0{margin-left:-1.063877px;}
._1{width:1.341997px;}
._a{width:2.902938px;}
._d{width:3.995271px;}
._7{width:5.061834px;}
._8{width:6.220566px;}
._6{width:7.288161px;}
._5{width:8.329747px;}
._9{width:9.487118px;}
._c{width:10.912677px;}
._e{width:12.058949px;}
._f{width:13.063233px;}
._b{width:14.181687px;}
._12{width:15.487794px;}
._13{width:16.587761px;}
._11{width:19.414758px;}
._18{width:22.343823px;}
._19{width:23.427847px;}
._10{width:25.531921px;}
._17{width:27.246191px;}
._14{width:28.991679px;}
._2e{width:30.344315px;}
._2d{width:31.393406px;}
._23{width:35.253306px;}
._21{width:36.493610px;}
._32{width:41.576083px;}
._30{width:48.115852px;}
._27{width:59.838921px;}
._22{width:71.382571px;}
._2a{width:83.081740px;}
._29{width:84.562602px;}
._26{width:91.735495px;}
._25{width:92.767395px;}
._31{width:95.092318px;}
._2f{width:96.552396px;}
._28{width:120.883514px;}
._20{width:157.249231px;}
._1d{width:172.000150px;}
._1f{width:181.464884px;}
._1c{width:182.732589px;}
._24{width:185.372897px;}
._1a{width:187.239863px;}
._1e{width:200.788987px;}
._1b{width:225.411773px;}
._2c{width:249.783408px;}
._2b{width:250.856346px;}
.fc3{color:rgb(0,0,10);}
.fc2{color:rgb(179,179,179);}
.fc1{color:rgb(153,153,153);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.759983px;}
.fs5{font-size:45.359982px;}
.fsa{font-size:48.239981px;}
.fs9{font-size:53.999978px;}
.fsb{font-size:59.759976px;}
.fs4{font-size:63.359975px;}
.fs7{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs2{font-size:77.759969px;}
.fs1{font-size:84.239966px;}
.fs0{font-size:95.759962px;}
.fs8{font-size:120.239952px;}
.y0{bottom:0.000000px;}
.y24{bottom:56.820277px;}
.y23{bottom:74.460270px;}
.y22{bottom:87.240265px;}
.y139{bottom:115.319954px;}
.yf3{bottom:116.040254px;}
.yd5{bottom:117.119953px;}
.y99{bottom:125.579950px;}
.yc0{bottom:127.559949px;}
.y78{bottom:128.279949px;}
.y55{bottom:136.019946px;}
.yd4{bottom:137.819945px;}
.y102{bottom:139.619944px;}
.y12f{bottom:139.979944px;}
.y21{bottom:140.879944px;}
.yce{bottom:143.219943px;}
.y98{bottom:146.279941px;}
.ybf{bottom:148.259941px;}
.y77{bottom:148.979940px;}
.y54{bottom:156.719937px;}
.yd3{bottom:158.519937px;}
.y101{bottom:160.319936px;}
.y12e{bottom:160.679936px;}
.y20{bottom:161.579935px;}
.ycd{bottom:163.919934px;}
.y97{bottom:166.979933px;}
.ybe{bottom:168.959932px;}
.y76{bottom:169.679932px;}
.y53{bottom:177.419929px;}
.yd2{bottom:179.219928px;}
.y12d{bottom:181.379927px;}
.y1f{bottom:182.279927px;}
.ycc{bottom:184.619926px;}
.y96{bottom:187.679925px;}
.y100{bottom:189.479924px;}
.ybd{bottom:189.659924px;}
.y75{bottom:190.379924px;}
.ye6{bottom:195.599922px;}
.y52{bottom:198.119921px;}
.yd1{bottom:199.919920px;}
.y12c{bottom:202.079919px;}
.y1e{bottom:202.979919px;}
.y95{bottom:208.379917px;}
.ybc{bottom:210.359916px;}
.y74{bottom:211.079916px;}
.ycb{bottom:213.779914px;}
.ye5{bottom:216.299913px;}
.y51{bottom:218.819912px;}
.yd0{bottom:220.619912px;}
.y12b{bottom:222.779911px;}
.y1d{bottom:223.679911px;}
.y94{bottom:229.079908px;}
.yff{bottom:230.879908px;}
.ybb{bottom:231.059908px;}
.y73{bottom:231.779907px;}
.ye4{bottom:236.999905px;}
.y50{bottom:239.519904px;}
.ycf{bottom:241.319903px;}
.y12a{bottom:243.479903px;}
.y1c{bottom:244.379902px;}
.y93{bottom:249.779900px;}
.yfe{bottom:251.579899px;}
.y72{bottom:252.479899px;}
.yca{bottom:255.179898px;}
.ye3{bottom:257.699897px;}
.y4f{bottom:260.219896px;}
.yba{bottom:262.019895px;}
.y129{bottom:264.179894px;}
.y1b{bottom:265.079894px;}
.y92{bottom:270.479892px;}
.yfd{bottom:272.279891px;}
.y71{bottom:273.179891px;}
.yc9{bottom:275.879890px;}
.ye2{bottom:278.399889px;}
.y4e{bottom:280.919888px;}
.yb9{bottom:282.719887px;}
.y128{bottom:284.879886px;}
.y1a{bottom:285.779886px;}
.y91{bottom:291.179884px;}
.yfc{bottom:292.979883px;}
.y70{bottom:293.879882px;}
.yc8{bottom:296.579881px;}
.ye1{bottom:299.099880px;}
.y4d{bottom:301.619879px;}
.yb8{bottom:303.419879px;}
.y145{bottom:304.679878px;}
.y127{bottom:305.579878px;}
.y19{bottom:306.479877px;}
.y90{bottom:311.879875px;}
.yfb{bottom:313.679875px;}
.y6f{bottom:314.579874px;}
.ye0{bottom:319.799872px;}
.y4c{bottom:322.319871px;}
.y144{bottom:323.759870px;}
.yb7{bottom:324.119870px;}
.y126{bottom:326.279869px;}
.y18{bottom:327.179869px;}
.yc7{bottom:329.339868px;}
.y8f{bottom:332.579867px;}
.yfa{bottom:334.379866px;}
.y6e{bottom:335.279866px;}
.ydf{bottom:340.499864px;}
.y143{bottom:342.659863px;}
.y4b{bottom:343.019863px;}
.yb6{bottom:344.819862px;}
.y125{bottom:346.979861px;}
.y17{bottom:347.879861px;}
.yc6{bottom:350.039860px;}
.y8e{bottom:353.279859px;}
.yf9{bottom:355.079858px;}
.y6d{bottom:355.979858px;}
.yde{bottom:361.199856px;}
.y142{bottom:361.559855px;}
.y4a{bottom:363.719855px;}
.yb5{bottom:365.519854px;}
.y124{bottom:367.679853px;}
.y16{bottom:368.579853px;}
.y8d{bottom:373.979850px;}
.y6c{bottom:376.679849px;}
.y141{bottom:380.639848px;}
.yc5{bottom:382.799847px;}
.y49{bottom:384.419846px;}
.yb4{bottom:386.219846px;}
.y123{bottom:388.379845px;}
.y15{bottom:389.279844px;}
.ydd{bottom:390.359844px;}
.y8c{bottom:394.679842px;}
.yf8{bottom:395.579842px;}
.y6b{bottom:397.379841px;}
.yc4{bottom:403.499839px;}
.y48{bottom:405.119838px;}
.yb3{bottom:406.919837px;}
.y122{bottom:409.079836px;}
.y14{bottom:409.979836px;}
.ydc{bottom:411.059836px;}
.y8b{bottom:415.379834px;}
.y6a{bottom:418.079833px;}
.y140{bottom:418.619833px;}
.y47{bottom:425.819830px;}
.yb2{bottom:427.619829px;}
.y121{bottom:429.779828px;}
.y13{bottom:430.679828px;}
.y8a{bottom:436.079826px;}
.yc3{bottom:436.259825px;}
.y13f{bottom:437.519825px;}
.y69{bottom:438.779824px;}
.y46{bottom:446.519821px;}
.yb1{bottom:448.319821px;}
.y120{bottom:450.479820px;}
.y12{bottom:451.379819px;}
.ydb{bottom:454.979818px;}
.y13e{bottom:456.599817px;}
.y89{bottom:456.779817px;}
.yc2{bottom:456.959817px;}
.y68{bottom:459.479816px;}
.y45{bottom:467.219813px;}
.yf2{bottom:468.839812px;}
.yb0{bottom:469.019812px;}
.y11f{bottom:471.179812px;}
.y11{bottom:472.079811px;}
.y13d{bottom:475.499810px;}
.y88{bottom:477.479809px;}
.y67{bottom:480.179808px;}
.y44{bottom:487.919805px;}
.yaf{bottom:489.719804px;}
.y11e{bottom:491.879803px;}
.y13c{bottom:494.399802px;}
.y87{bottom:498.179801px;}
.y66{bottom:500.879800px;}
.y43{bottom:508.619797px;}
.yf1{bottom:510.239796px;}
.yae{bottom:510.419796px;}
.y11d{bottom:512.579795px;}
.y13b{bottom:513.479795px;}
.y86{bottom:518.879792px;}
.y65{bottom:521.579791px;}
.y42{bottom:529.319788px;}
.yf0{bottom:530.939788px;}
.yad{bottom:531.119788px;}
.y10{bottom:531.299787px;}
.y11c{bottom:533.279787px;}
.y85{bottom:539.579784px;}
.y64{bottom:542.279783px;}
.yf{bottom:549.299780px;}
.y41{bottom:550.019780px;}
.yef{bottom:551.639779px;}
.yac{bottom:551.819779px;}
.y13a{bottom:553.439779px;}
.y11b{bottom:553.979778px;}
.y84{bottom:560.279776px;}
.y63{bottom:562.979775px;}
.ye{bottom:567.479773px;}
.y40{bottom:570.719772px;}
.yee{bottom:572.339771px;}
.yab{bottom:572.519771px;}
.y11a{bottom:574.679770px;}
.y83{bottom:580.979768px;}
.y62{bottom:583.679767px;}
.yd{bottom:585.659766px;}
.y3f{bottom:591.419763px;}
.yed{bottom:593.039763px;}
.yaa{bottom:593.219763px;}
.y119{bottom:595.379762px;}
.y82{bottom:601.679759px;}
.y61{bottom:604.379758px;}
.y3e{bottom:612.119755px;}
.yec{bottom:613.739755px;}
.ya9{bottom:613.919754px;}
.y118{bottom:616.079754px;}
.yc{bottom:621.119752px;}
.y81{bottom:622.379751px;}
.y60{bottom:625.079750px;}
.y138{bottom:632.819747px;}
.yeb{bottom:634.439746px;}
.ya8{bottom:634.619746px;}
.y117{bottom:636.779745px;}
.yb{bottom:639.299744px;}
.y3d{bottom:643.079743px;}
.y5f{bottom:645.779742px;}
.y137{bottom:653.519739px;}
.yea{bottom:655.139738px;}
.ya7{bottom:655.319738px;}
.y116{bottom:657.479737px;}
.y80{bottom:663.779734px;}
.y5e{bottom:666.479733px;}
.y136{bottom:674.219730px;}
.ya6{bottom:676.019730px;}
.y115{bottom:678.179729px;}
.ye9{bottom:684.299726px;}
.y7f{bottom:684.479726px;}
.y5d{bottom:687.179725px;}
.y135{bottom:694.919722px;}
.ya{bottom:695.999722px;}
.ya5{bottom:696.719721px;}
.y114{bottom:698.879720px;}
.ye8{bottom:704.999718px;}
.y3c{bottom:705.179718px;}
.y5c{bottom:707.879717px;}
.y7e{bottom:715.619714px;}
.y9{bottom:716.699713px;}
.ya4{bottom:717.419713px;}
.y113{bottom:719.579712px;}
.y3b{bottom:725.879710px;}
.y5b{bottom:728.579709px;}
.y7d{bottom:736.319705px;}
.y8{bottom:737.579705px;}
.y132{bottom:738.119705px;}
.y112{bottom:740.279704px;}
.yc1{bottom:746.579701px;}
.ya3{bottom:748.559701px;}
.ye7{bottom:748.919700px;}
.y5a{bottom:749.279700px;}
.y7c{bottom:757.019697px;}
.y131{bottom:758.819696px;}
.y111{bottom:760.979696px;}
.y3a{bottom:767.279693px;}
.ya2{bottom:769.259692px;}
.y59{bottom:769.979692px;}
.y7b{bottom:777.719689px;}
.yf7{bottom:779.519688px;}
.y7{bottom:780.419688px;}
.y110{bottom:781.679687px;}
.y39{bottom:787.979685px;}
.ya1{bottom:789.959684px;}
.y58{bottom:790.679684px;}
.y7a{bottom:798.419681px;}
.y130{bottom:800.219680px;}
.y6{bottom:801.119680px;}
.y10f{bottom:802.379679px;}
.y38{bottom:808.679677px;}
.ya0{bottom:810.659676px;}
.y79{bottom:819.119672px;}
.y57{bottom:820.379672px;}
.yda{bottom:820.919672px;}
.y5{bottom:822.179671px;}
.y10e{bottom:823.079671px;}
.y37{bottom:829.379668px;}
.y9f{bottom:831.359667px;}
.y134{bottom:839.819664px;}
.yf6{bottom:841.619663px;}
.y10d{bottom:843.779662px;}
.y36{bottom:850.079660px;}
.y133{bottom:860.519656px;}
.y9e{bottom:862.319655px;}
.y10c{bottom:864.479654px;}
.y35{bottom:870.779652px;}
.y9d{bottom:883.019647px;}
.y10b{bottom:885.179646px;}
.y4{bottom:889.679644px;}
.y34{bottom:891.479643px;}
.y9c{bottom:903.719639px;}
.y10a{bottom:905.879638px;}
.y33{bottom:912.179635px;}
.y3{bottom:913.799634px;}
.y9b{bottom:924.419630px;}
.y32{bottom:932.879627px;}
.y9a{bottom:945.119622px;}
.y109{bottom:946.379621px;}
.y31{bottom:953.579619px;}
.yd9{bottom:965.819614px;}
.y2{bottom:966.359613px;}
.y108{bottom:967.619613px;}
.y30{bottom:974.279610px;}
.yd8{bottom:986.519605px;}
.y1{bottom:993.899602px;}
.y2f{bottom:994.979602px;}
.y107{bottom:1002.179599px;}
.yd7{bottom:1007.219597px;}
.y2e{bottom:1015.679594px;}
.yd6{bottom:1027.919589px;}
.y2d{bottom:1036.379585px;}
.y105{bottom:1036.919585px;}
.y104{bottom:1045.559582px;}
.yf5{bottom:1048.619581px;}
.y106{bottom:1054.199578px;}
.y2c{bottom:1057.079577px;}
.yf4{bottom:1069.319572px;}
.y103{bottom:1077.059569px;}
.y2b{bottom:1077.779569px;}
.y27{bottom:1080.299568px;}
.y28{bottom:1081.019568px;}
.y26{bottom:1097.399561px;}
.y56{bottom:1098.479561px;}
.y2a{bottom:1119.179552px;}
.y25{bottom:1120.259552px;}
.y29{bottom:1139.879544px;}
.h9{height:31.319987px;}
.h8{height:34.462955px;}
.he{height:36.651079px;}
.hf{height:36.861313px;}
.hd{height:41.027327px;}
.h10{height:48.059981px;}
.hc{height:50.326855px;}
.h13{height:55.158458px;}
.h6{height:56.390377px;}
.h2{height:57.535897px;}
.h5{height:58.481257px;}
.ha{height:58.953576px;}
.h11{height:61.139496px;}
.h4{height:64.079974px;}
.h7{height:66.455973px;}
.h3{height:71.772451px;}
.h1{height:88.386445px;}
.h12{height:89.718444px;}
.hb{height:91.354182px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x16{left:119.339591px;}
.x17{left:126.540249px;}
.x1{left:127.799949px;}
.xc{left:131.219948px;}
.xb{left:142.379943px;}
.x18{left:150.299713px;}
.xd{left:152.999939px;}
.x7{left:154.799938px;}
.x5{left:163.799982px;}
.x2{left:178.559929px;}
.x8{left:181.799927px;}
.x9{left:190.799924px;}
.x6{left:212.760111px;}
.xe{left:265.499883px;}
.xf{left:344.519903px;}
.x10{left:351.899911px;}
.xa{left:371.519851px;}
.x19{left:428.579829px;}
.x3{left:438.299825px;}
.x11{left:443.699875px;}
.x12{left:466.739810px;}
.x4{left:511.199796px;}
.x13{left:542.339833px;}
.x14{left:557.099834px;}
.x15{left:629.099820px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:30.719988pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.018917pt;}
.ls0{letter-spacing:0.085989pt;}
.ws4{word-spacing:-37.621745pt;}
.ws2{word-spacing:-37.205974pt;}
.wsc{word-spacing:-16.018911pt;}
.ws0{word-spacing:-15.999994pt;}
.ws3{word-spacing:-14.719994pt;}
.ws1{word-spacing:-14.079994pt;}
.ws7{word-spacing:-13.279995pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:50.721352pt;}
.ws6{word-spacing:66.051923pt;}
.wsb{word-spacing:71.361014pt;}
.wsa{word-spacing:97.446476pt;}
.ws9{word-spacing:114.909058pt;}
._3{margin-left:-7.849290pt;}
._16{margin-left:-6.461693pt;}
._15{margin-left:-5.398302pt;}
._4{margin-left:-3.988496pt;}
._2{margin-left:-2.558202pt;}
._0{margin-left:-0.945669pt;}
._1{width:1.192886pt;}
._a{width:2.580389pt;}
._d{width:3.551352pt;}
._7{width:4.499408pt;}
._8{width:5.529392pt;}
._6{width:6.478365pt;}
._5{width:7.404219pt;}
._9{width:8.432994pt;}
._c{width:9.700157pt;}
._e{width:10.719066pt;}
._f{width:11.611763pt;}
._b{width:12.605944pt;}
._12{width:13.766928pt;}
._13{width:14.744676pt;}
._11{width:17.257562pt;}
._18{width:19.861176pt;}
._19{width:20.824753pt;}
._10{width:22.695041pt;}
._17{width:24.218837pt;}
._14{width:25.770381pt;}
._2e{width:26.972724pt;}
._2d{width:27.905250pt;}
._23{width:31.336272pt;}
._21{width:32.438765pt;}
._32{width:36.956519pt;}
._30{width:42.769646pt;}
._27{width:53.190152pt;}
._22{width:63.451174pt;}
._2a{width:73.850436pt;}
._29{width:75.166758pt;}
._26{width:81.542662pt;}
._25{width:82.459907pt;}
._31{width:84.526505pt;}
._2f{width:85.824352pt;}
._28{width:107.452012pt;}
._20{width:139.777094pt;}
._1d{width:152.889022pt;}
._1f{width:161.302119pt;}
._1c{width:162.428968pt;}
._24{width:164.775909pt;}
._1a{width:166.435434pt;}
._1e{width:178.479100pt;}
._1b{width:200.366020pt;}
._2c{width:222.029696pt;}
._2b{width:222.983418pt;}
.fs6{font-size:37.119985pt;}
.fs5{font-size:40.319984pt;}
.fsa{font-size:42.879983pt;}
.fs9{font-size:47.999981pt;}
.fsb{font-size:53.119979pt;}
.fs4{font-size:56.319977pt;}
.fs7{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs2{font-size:69.119972pt;}
.fs1{font-size:74.879970pt;}
.fs0{font-size:85.119966pt;}
.fs8{font-size:106.879957pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:50.506913pt;}
.y23{bottom:66.186907pt;}
.y22{bottom:77.546902pt;}
.y139{bottom:102.506626pt;}
.yf3{bottom:103.146892pt;}
.yd5{bottom:104.106625pt;}
.y99{bottom:111.626622pt;}
.yc0{bottom:113.386621pt;}
.y78{bottom:114.026621pt;}
.y55{bottom:120.906618pt;}
.yd4{bottom:122.506618pt;}
.y102{bottom:124.106617pt;}
.y12f{bottom:124.426617pt;}
.y21{bottom:125.226617pt;}
.yce{bottom:127.306616pt;}
.y98{bottom:130.026615pt;}
.ybf{bottom:131.786614pt;}
.y77{bottom:132.426614pt;}
.y54{bottom:139.306611pt;}
.yd3{bottom:140.906610pt;}
.y101{bottom:142.506610pt;}
.y12e{bottom:142.826610pt;}
.y20{bottom:143.626609pt;}
.ycd{bottom:145.706608pt;}
.y97{bottom:148.426607pt;}
.ybe{bottom:150.186607pt;}
.y76{bottom:150.826606pt;}
.y53{bottom:157.706604pt;}
.yd2{bottom:159.306603pt;}
.y12d{bottom:161.226602pt;}
.y1f{bottom:162.026602pt;}
.ycc{bottom:164.106601pt;}
.y96{bottom:166.826600pt;}
.y100{bottom:168.426599pt;}
.ybd{bottom:168.586599pt;}
.y75{bottom:169.226599pt;}
.ye6{bottom:173.866597pt;}
.y52{bottom:176.106596pt;}
.yd1{bottom:177.706596pt;}
.y12c{bottom:179.626595pt;}
.y1e{bottom:180.426594pt;}
.y95{bottom:185.226593pt;}
.ybc{bottom:186.986592pt;}
.y74{bottom:187.626592pt;}
.ycb{bottom:190.026591pt;}
.ye5{bottom:192.266590pt;}
.y51{bottom:194.506589pt;}
.yd0{bottom:196.106588pt;}
.y12b{bottom:198.026587pt;}
.y1d{bottom:198.826587pt;}
.y94{bottom:203.626585pt;}
.yff{bottom:205.226585pt;}
.ybb{bottom:205.386585pt;}
.y73{bottom:206.026584pt;}
.ye4{bottom:210.666582pt;}
.y50{bottom:212.906582pt;}
.ycf{bottom:214.506581pt;}
.y12a{bottom:216.426580pt;}
.y1c{bottom:217.226580pt;}
.y93{bottom:222.026578pt;}
.yfe{bottom:223.626577pt;}
.y72{bottom:224.426577pt;}
.yca{bottom:226.826576pt;}
.ye3{bottom:229.066575pt;}
.y4f{bottom:231.306574pt;}
.yba{bottom:232.906574pt;}
.y129{bottom:234.826573pt;}
.y1b{bottom:235.626572pt;}
.y92{bottom:240.426570pt;}
.yfd{bottom:242.026570pt;}
.y71{bottom:242.826570pt;}
.yc9{bottom:245.226569pt;}
.ye2{bottom:247.466568pt;}
.y4e{bottom:249.706567pt;}
.yb9{bottom:251.306566pt;}
.y128{bottom:253.226565pt;}
.y1a{bottom:254.026565pt;}
.y91{bottom:258.826563pt;}
.yfc{bottom:260.426562pt;}
.y70{bottom:261.226562pt;}
.yc8{bottom:263.626561pt;}
.ye1{bottom:265.866560pt;}
.y4d{bottom:268.106559pt;}
.yb8{bottom:269.706559pt;}
.y145{bottom:270.826558pt;}
.y127{bottom:271.626558pt;}
.y19{bottom:272.426558pt;}
.y90{bottom:277.226556pt;}
.yfb{bottom:278.826555pt;}
.y6f{bottom:279.626555pt;}
.ye0{bottom:284.266553pt;}
.y4c{bottom:286.506552pt;}
.y144{bottom:287.786552pt;}
.yb7{bottom:288.106551pt;}
.y126{bottom:290.026551pt;}
.y18{bottom:290.826550pt;}
.yc7{bottom:292.746550pt;}
.y8f{bottom:295.626548pt;}
.yfa{bottom:297.226548pt;}
.y6e{bottom:298.026547pt;}
.ydf{bottom:302.666546pt;}
.y143{bottom:304.586545pt;}
.y4b{bottom:304.906545pt;}
.yb6{bottom:306.506544pt;}
.y125{bottom:308.426543pt;}
.y17{bottom:309.226543pt;}
.yc6{bottom:311.146542pt;}
.y8e{bottom:314.026541pt;}
.yf9{bottom:315.626540pt;}
.y6d{bottom:316.426540pt;}
.yde{bottom:321.066538pt;}
.y142{bottom:321.386538pt;}
.y4a{bottom:323.306537pt;}
.yb5{bottom:324.906537pt;}
.y124{bottom:326.826536pt;}
.y16{bottom:327.626536pt;}
.y8d{bottom:332.426534pt;}
.y6c{bottom:334.826533pt;}
.y141{bottom:338.346531pt;}
.yc5{bottom:340.266531pt;}
.y49{bottom:341.706530pt;}
.yb4{bottom:343.306529pt;}
.y123{bottom:345.226529pt;}
.y15{bottom:346.026528pt;}
.ydd{bottom:346.986528pt;}
.y8c{bottom:350.826526pt;}
.yf8{bottom:351.626526pt;}
.y6b{bottom:353.226525pt;}
.yc4{bottom:358.666523pt;}
.y48{bottom:360.106523pt;}
.yb3{bottom:361.706522pt;}
.y122{bottom:363.626521pt;}
.y14{bottom:364.426521pt;}
.ydc{bottom:365.386521pt;}
.y8b{bottom:369.226519pt;}
.y6a{bottom:371.626518pt;}
.y140{bottom:372.106518pt;}
.y47{bottom:378.506515pt;}
.yb2{bottom:380.106515pt;}
.y121{bottom:382.026514pt;}
.y13{bottom:382.826514pt;}
.y8a{bottom:387.626512pt;}
.yc3{bottom:387.786512pt;}
.y13f{bottom:388.906511pt;}
.y69{bottom:390.026511pt;}
.y46{bottom:396.906508pt;}
.yb1{bottom:398.506507pt;}
.y120{bottom:400.426506pt;}
.y12{bottom:401.226506pt;}
.ydb{bottom:404.426505pt;}
.y13e{bottom:405.866504pt;}
.y89{bottom:406.026504pt;}
.yc2{bottom:406.186504pt;}
.y68{bottom:408.426503pt;}
.y45{bottom:415.306501pt;}
.yf2{bottom:416.746500pt;}
.yb0{bottom:416.906500pt;}
.y11f{bottom:418.826499pt;}
.y11{bottom:419.626499pt;}
.y13d{bottom:422.666498pt;}
.y88{bottom:424.426497pt;}
.y67{bottom:426.826496pt;}
.y44{bottom:433.706493pt;}
.yaf{bottom:435.306493pt;}
.y11e{bottom:437.226492pt;}
.y13c{bottom:439.466491pt;}
.y87{bottom:442.826490pt;}
.y66{bottom:445.226489pt;}
.y43{bottom:452.106486pt;}
.yf1{bottom:453.546485pt;}
.yae{bottom:453.706485pt;}
.y11d{bottom:455.626484pt;}
.y13b{bottom:456.426484pt;}
.y86{bottom:461.226482pt;}
.y65{bottom:463.626481pt;}
.y42{bottom:470.506478pt;}
.yf0{bottom:471.946478pt;}
.yad{bottom:472.106478pt;}
.y10{bottom:472.266478pt;}
.y11c{bottom:474.026477pt;}
.y85{bottom:479.626475pt;}
.y64{bottom:482.026474pt;}
.yf{bottom:488.266471pt;}
.y41{bottom:488.906471pt;}
.yef{bottom:490.346471pt;}
.yac{bottom:490.506470pt;}
.y13a{bottom:491.946470pt;}
.y11b{bottom:492.426470pt;}
.y84{bottom:498.026467pt;}
.y63{bottom:500.426466pt;}
.ye{bottom:504.426465pt;}
.y40{bottom:507.306464pt;}
.yee{bottom:508.746463pt;}
.yab{bottom:508.906463pt;}
.y11a{bottom:510.826462pt;}
.y83{bottom:516.426460pt;}
.y62{bottom:518.826459pt;}
.yd{bottom:520.586458pt;}
.y3f{bottom:525.706456pt;}
.yed{bottom:527.146456pt;}
.yaa{bottom:527.306456pt;}
.y119{bottom:529.226455pt;}
.y82{bottom:534.826453pt;}
.y61{bottom:537.226452pt;}
.y3e{bottom:544.106449pt;}
.yec{bottom:545.546448pt;}
.ya9{bottom:545.706448pt;}
.y118{bottom:547.626448pt;}
.yc{bottom:552.106446pt;}
.y81{bottom:553.226445pt;}
.y60{bottom:555.626444pt;}
.y138{bottom:562.506442pt;}
.yeb{bottom:563.946441pt;}
.ya8{bottom:564.106441pt;}
.y117{bottom:566.026440pt;}
.yb{bottom:568.266439pt;}
.y3d{bottom:571.626438pt;}
.y5f{bottom:574.026437pt;}
.y137{bottom:580.906434pt;}
.yea{bottom:582.346434pt;}
.ya7{bottom:582.506434pt;}
.y116{bottom:584.426433pt;}
.y80{bottom:590.026431pt;}
.y5e{bottom:592.426430pt;}
.y136{bottom:599.306427pt;}
.ya6{bottom:600.906426pt;}
.y115{bottom:602.826426pt;}
.ye9{bottom:608.266423pt;}
.y7f{bottom:608.426423pt;}
.y5d{bottom:610.826422pt;}
.y135{bottom:617.706420pt;}
.ya{bottom:618.666419pt;}
.ya5{bottom:619.306419pt;}
.y114{bottom:621.226418pt;}
.ye8{bottom:626.666416pt;}
.y3c{bottom:626.826416pt;}
.y5c{bottom:629.226415pt;}
.y7e{bottom:636.106412pt;}
.y9{bottom:637.066412pt;}
.ya4{bottom:637.706412pt;}
.y113{bottom:639.626411pt;}
.y3b{bottom:645.226409pt;}
.y5b{bottom:647.626408pt;}
.y7d{bottom:654.506405pt;}
.y8{bottom:655.626404pt;}
.y132{bottom:656.106404pt;}
.y112{bottom:658.026403pt;}
.yc1{bottom:663.626401pt;}
.ya3{bottom:665.386401pt;}
.ye7{bottom:665.706400pt;}
.y5a{bottom:666.026400pt;}
.y7c{bottom:672.906398pt;}
.y131{bottom:674.506397pt;}
.y111{bottom:676.426396pt;}
.y3a{bottom:682.026394pt;}
.ya2{bottom:683.786393pt;}
.y59{bottom:684.426393pt;}
.y7b{bottom:691.306390pt;}
.yf7{bottom:692.906390pt;}
.y7{bottom:693.706389pt;}
.y110{bottom:694.826389pt;}
.y39{bottom:700.426386pt;}
.ya1{bottom:702.186386pt;}
.y58{bottom:702.826386pt;}
.y7a{bottom:709.706383pt;}
.y130{bottom:711.306382pt;}
.y6{bottom:712.106382pt;}
.y10f{bottom:713.226381pt;}
.y38{bottom:718.826379pt;}
.ya0{bottom:720.586378pt;}
.y79{bottom:728.106375pt;}
.y57{bottom:729.226375pt;}
.yda{bottom:729.706375pt;}
.y5{bottom:730.826374pt;}
.y10e{bottom:731.626374pt;}
.y37{bottom:737.226372pt;}
.y9f{bottom:738.986371pt;}
.y134{bottom:746.506368pt;}
.yf6{bottom:748.106367pt;}
.y10d{bottom:750.026367pt;}
.y36{bottom:755.626364pt;}
.y133{bottom:764.906361pt;}
.y9e{bottom:766.506360pt;}
.y10c{bottom:768.426359pt;}
.y35{bottom:774.026357pt;}
.y9d{bottom:784.906353pt;}
.y10b{bottom:786.826352pt;}
.y4{bottom:790.826350pt;}
.y34{bottom:792.426350pt;}
.y9c{bottom:803.306345pt;}
.y10a{bottom:805.226345pt;}
.y33{bottom:810.826342pt;}
.y3{bottom:812.266342pt;}
.y9b{bottom:821.706338pt;}
.y32{bottom:829.226335pt;}
.y9a{bottom:840.106331pt;}
.y109{bottom:841.226330pt;}
.y31{bottom:847.626328pt;}
.yd9{bottom:858.506323pt;}
.y2{bottom:858.986323pt;}
.y108{bottom:860.106323pt;}
.y30{bottom:866.026320pt;}
.yd8{bottom:876.906316pt;}
.y1{bottom:883.466313pt;}
.y2f{bottom:884.426313pt;}
.y107{bottom:890.826310pt;}
.yd7{bottom:895.306309pt;}
.y2e{bottom:902.826306pt;}
.yd6{bottom:913.706301pt;}
.y2d{bottom:921.226298pt;}
.y105{bottom:921.706298pt;}
.y104{bottom:929.386295pt;}
.yf5{bottom:932.106294pt;}
.y106{bottom:937.066292pt;}
.y2c{bottom:939.626291pt;}
.yf4{bottom:950.506286pt;}
.y103{bottom:957.386284pt;}
.y2b{bottom:958.026283pt;}
.y27{bottom:960.266283pt;}
.y28{bottom:960.906282pt;}
.y26{bottom:975.466276pt;}
.y56{bottom:976.426276pt;}
.y2a{bottom:994.826269pt;}
.y25{bottom:995.786268pt;}
.y29{bottom:1013.226261pt;}
.h9{height:27.839989pt;}
.h8{height:30.633738pt;}
.he{height:32.578737pt;}
.hf{height:32.765612pt;}
.hd{height:36.468735pt;}
.h10{height:42.719983pt;}
.hc{height:44.734982pt;}
.h13{height:49.029740pt;}
.h6{height:50.124780pt;}
.h2{height:51.143020pt;}
.h5{height:51.983339pt;}
.ha{height:52.403179pt;}
.h11{height:54.346218pt;}
.h4{height:56.959977pt;}
.h7{height:59.071976pt;}
.h3{height:63.797734pt;}
.h1{height:78.565729pt;}
.h12{height:79.749728pt;}
.hb{height:81.203718pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x16{left:106.079636pt;}
.x17{left:112.480221pt;}
.x1{left:113.599955pt;}
.xc{left:116.639953pt;}
.xb{left:126.559949pt;}
.x18{left:133.599745pt;}
.xd{left:135.999946pt;}
.x7{left:137.599945pt;}
.x5{left:145.599984pt;}
.x2{left:158.719937pt;}
.x8{left:161.599935pt;}
.x9{left:169.599932pt;}
.x6{left:189.120099pt;}
.xe{left:235.999896pt;}
.xf{left:306.239914pt;}
.x10{left:312.799921pt;}
.xa{left:330.239868pt;}
.x19{left:380.959848pt;}
.x3{left:389.599844pt;}
.x11{left:394.399889pt;}
.x12{left:414.879831pt;}
.x4{left:454.399818pt;}
.x13{left:482.079852pt;}
.x14{left:495.199852pt;}
.x15{left:559.199840pt;}
}




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