
    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_8d3783e5b052094d7cc68d71.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_bedd9eb3b3f784ca93d2246a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_4f3addcb8cd03af8c49f89d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_e4d48652ce4d44aa0b04d2f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_c8b9cd6cd5e0bc7f5d03fcd5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.719727;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;}
.m6{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-72.720058px;}
.v3{vertical-align:-68.400055px;}
.v4{vertical-align:-27.360022px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:68.400055px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.375720px;}
.ls2{letter-spacing:0.418380px;}
.ls0{letter-spacing:32.441323px;}
.ls5{letter-spacing:959.428540px;}
.ls3{letter-spacing:1113.823611px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-44.820036px;}
.ws4{word-spacing:-16.613293px;}
.ws1{word-spacing:-15.012012px;}
.ws0{word-spacing:-13.410731px;}
.ws2{word-spacing:-10.808649px;}
.ws3{word-spacing:0.000000px;}
._f{margin-left:-4.607223px;}
._18{margin-left:-2.428316px;}
._0{margin-left:-1.040518px;}
._1{width:1.200418px;}
._5{width:2.213746px;}
._e{width:3.614366px;}
._2{width:5.083226px;}
._15{width:6.444095px;}
._a{width:7.821603px;}
._3{width:9.160033px;}
._4{width:10.253252px;}
._13{width:11.748755px;}
._9{width:12.835946px;}
._7{width:14.124548px;}
._8{width:15.226278px;}
._11{width:18.067858px;}
._12{width:19.578532px;}
._c{width:20.732330px;}
._b{width:22.073203px;}
._16{width:23.080174px;}
._3b{width:24.103204px;}
._d{width:25.244312px;}
._17{width:26.574168px;}
._34{width:27.763484px;}
._32{width:30.046515px;}
._10{width:31.167225px;}
._6{width:32.313504px;}
._14{width:36.509033px;}
._37{width:37.549397px;}
._33{width:39.111937px;}
._3a{width:40.171472px;}
._3f{width:41.609911px;}
._35{width:45.335884px;}
._36{width:46.423091px;}
._3c{width:49.678330px;}
._21{width:58.807430px;}
._3e{width:62.633326px;}
._20{width:89.947718px;}
._3d{width:95.859971px;}
._39{width:103.630619px;}
._38{width:105.007995px;}
._1e{width:138.743056px;}
._25{width:154.638164px;}
._30{width:161.049695px;}
._1d{width:171.251412px;}
._26{width:187.864485px;}
._19{width:193.034072px;}
._2d{width:194.797981px;}
._29{width:234.408266px;}
._28{width:247.343670px;}
._1c{width:251.021514px;}
._2a{width:253.599532px;}
._1f{width:255.036163px;}
._1a{width:263.957094px;}
._24{width:267.634938px;}
._27{width:276.040916px;}
._22{width:280.570430px;}
._2c{width:288.941570px;}
._1b{width:300.608528px;}
._2e{width:313.925174px;}
._23{width:383.674447px;}
._2b{width:1494.398636px;}
._2f{width:1497.685438px;}
._31{width:1564.078851px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(179,179,179);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880031px;}
.fs1{font-size:48.240039px;}
.fs4{font-size:54.000043px;}
.fs0{font-size:59.760048px;}
.fs7{font-size:66.240053px;}
.fs3{font-size:72.000058px;}
.fs2{font-size:84.240067px;}
.fs5{font-size:108.000086px;}
.y0{bottom:0.000000px;}
.y36{bottom:2.160261px;}
.y9b{bottom:2.339584px;}
.y12f{bottom:2.700297px;}
.y59{bottom:2.880625px;}
.y92{bottom:3.239692px;}
.y99{bottom:3.419578px;}
.y87{bottom:3.419836px;}
.y83{bottom:89.819337px;}
.y7{bottom:89.820072px;}
.y6{bottom:106.380085px;}
.y82{bottom:107.099351px;}
.y49{bottom:107.100086px;}
.y5{bottom:120.240096px;}
.y4{bottom:134.100107px;}
.yea{bottom:155.880125px;}
.y10a{bottom:159.480128px;}
.y40{bottom:163.260131px;}
.yc2{bottom:164.340131px;}
.y10e{bottom:170.280136px;}
.ye9{bottom:173.160139px;}
.y109{bottom:176.580141px;}
.y3f{bottom:180.720145px;}
.yc1{bottom:181.620145px;}
.y10d{bottom:189.180151px;}
.ye8{bottom:190.440152px;}
.y108{bottom:193.860155px;}
.y3e{bottom:197.820158px;}
.yc0{bottom:198.900159px;}
.ye7{bottom:207.720166px;}
.y107{bottom:211.140169px;}
.y3d{bottom:215.100172px;}
.ybf{bottom:216.000173px;}
.ye6{bottom:225.000180px;}
.y106{bottom:228.420183px;}
.y3c{bottom:232.200186px;}
.ya4{bottom:233.279452px;}
.ybe{bottom:233.280187px;}
.y7a{bottom:240.660193px;}
.ye5{bottom:242.100194px;}
.y105{bottom:245.700197px;}
.y3b{bottom:249.480200px;}
.ya3{bottom:250.559466px;}
.ybd{bottom:250.560200px;}
.y79{bottom:257.940206px;}
.ye4{bottom:259.380208px;}
.y104{bottom:262.800210px;}
.y3a{bottom:266.760213px;}
.ybc{bottom:267.840214px;}
.ya2{bottom:268.559480px;}
.y78{bottom:275.220220px;}
.ye3{bottom:276.660221px;}
.y103{bottom:280.080224px;}
.y39{bottom:284.040227px;}
.ybb{bottom:285.120228px;}
.ya1{bottom:285.659494px;}
.y77{bottom:292.500234px;}
.ye2{bottom:293.940235px;}
.y102{bottom:297.360238px;}
.y38{bottom:301.320241px;}
.yb9{bottom:302.220242px;}
.ya0{bottom:302.939508px;}
.y76{bottom:309.600248px;}
.yba{bottom:309.780248px;}
.ye1{bottom:311.220249px;}
.y101{bottom:314.640252px;}
.y37{bottom:318.600255px;}
.yb8{bottom:319.500256px;}
.y9f{bottom:320.219522px;}
.y35{bottom:324.000000px;}
.y75{bottom:326.880262px;}
.ye0{bottom:328.500263px;}
.y10c{bottom:328.860263px;}
.y100{bottom:331.920266px;}
.y34{bottom:336.780269px;}
.y9e{bottom:337.499536px;}
.y74{bottom:344.160275px;}
.ydf{bottom:345.600276px;}
.y10b{bottom:347.940278px;}
.yff{bottom:349.200279px;}
.yb7{bottom:354.060283px;}
.y33{bottom:354.240283px;}
.y9d{bottom:354.779549px;}
.y73{bottom:361.440289px;}
.yde{bottom:362.880290px;}
.yfe{bottom:366.300293px;}
.y12e{bottom:368.640000px;}
.yb6{bottom:371.340297px;}
.y9c{bottom:372.059563px;}
.y32{bottom:372.960298px;}
.y72{bottom:378.720303px;}
.ydd{bottom:380.160304px;}
.yfd{bottom:383.580307px;}
.y31{bottom:386.640309px;}
.y98{bottom:386.820000px;}
.yb5{bottom:388.620311px;}
.y9a{bottom:395.460000px;}
.y71{bottom:396.000317px;}
.ydc{bottom:397.440318px;}
.yfc{bottom:400.860321px;}
.yb4{bottom:405.540324px;}
.y97{bottom:408.239592px;}
.y2f{bottom:408.960327px;}
.y12d{bottom:412.560330px;}
.y70{bottom:413.100330px;}
.ydb{bottom:414.720332px;}
.y30{bottom:416.520333px;}
.yfb{bottom:418.140335px;}
.yb3{bottom:421.020337px;}
.y41{bottom:422.820338px;}
.y2d{bottom:426.240341px;}
.y12c{bottom:429.840344px;}
.y6f{bottom:430.920345px;}
.yda{bottom:432.000346px;}
.y2e{bottom:433.800347px;}
.yfa{bottom:435.420348px;}
.yb2{bottom:437.040350px;}
.y96{bottom:442.439620px;}
.y2b{bottom:443.520355px;}
.y12b{bottom:447.120358px;}
.yd9{bottom:449.100359px;}
.y6e{bottom:449.820360px;}
.y2c{bottom:451.080361px;}
.yf9{bottom:452.700362px;}
.yb1{bottom:454.320363px;}
.y2a{bottom:460.800369px;}
.y12a{bottom:463.680371px;}
.y95{bottom:464.219637px;}
.yd8{bottom:466.380373px;}
.y6d{bottom:468.360375px;}
.yf8{bottom:469.800376px;}
.yb0{bottom:471.420377px;}
.y129{bottom:477.360382px;}
.y29{bottom:478.080382px;}
.yd7{bottom:483.660387px;}
.yaf{bottom:485.280388px;}
.y6c{bottom:485.640389px;}
.yf7{bottom:487.080390px;}
.y94{bottom:489.779657px;}
.y128{bottom:491.040393px;}
.y28{bottom:495.360396px;}
.yd6{bottom:500.940401px;}
.y6b{bottom:502.920402px;}
.yf6{bottom:504.360403px;}
.y93{bottom:506.879671px;}
.y127{bottom:507.240406px;}
.y27{bottom:512.640410px;}
.yd5{bottom:518.220415px;}
.y69{bottom:520.200416px;}
.yf5{bottom:521.640417px;}
.y6a{bottom:527.760422px;}
.y91{bottom:529.200000px;}
.y26{bottom:529.920424px;}
.y90{bottom:532.439692px;}
.yd4{bottom:535.500428px;}
.y68{bottom:537.300430px;}
.yf4{bottom:538.920431px;}
.y25{bottom:547.200438px;}
.yd3{bottom:552.600442px;}
.y67{bottom:554.580444px;}
.yf3{bottom:556.200445px;}
.y8f{bottom:557.999712px;}
.y24{bottom:564.300451px;}
.yd2{bottom:569.880456px;}
.y66{bottom:571.860457px;}
.yf2{bottom:573.300459px;}
.y8e{bottom:575.279726px;}
.y23{bottom:581.400465px;}
.yd1{bottom:587.160470px;}
.y65{bottom:589.140471px;}
.yf1{bottom:590.580472px;}
.y8d{bottom:592.379740px;}
.y22{bottom:598.680479px;}
.yd0{bottom:604.440484px;}
.y64{bottom:606.420485px;}
.yf0{bottom:607.860486px;}
.y126{bottom:608.400487px;}
.y21{bottom:616.140493px;}
.y8c{bottom:617.939760px;}
.ycf{bottom:621.720497px;}
.y63{bottom:623.520499px;}
.yef{bottom:625.140500px;}
.y125{bottom:627.300502px;}
.y20{bottom:633.420507px;}
.y8b{bottom:635.219774px;}
.yce{bottom:638.820511px;}
.y62{bottom:640.800513px;}
.y1f{bottom:640.980513px;}
.yee{bottom:642.420514px;}
.y124{bottom:646.200517px;}
.y1e{bottom:650.700521px;}
.ycd{bottom:656.640525px;}
.y61{bottom:658.080526px;}
.yed{bottom:659.520528px;}
.y8a{bottom:661.319795px;}
.y123{bottom:664.740532px;}
.y1d{bottom:667.800534px;}
.y1c{bottom:675.360540px;}
.y60{bottom:675.540540px;}
.yec{bottom:676.800541px;}
.y89{bottom:678.419808px;}
.y122{bottom:682.560546px;}
.y1b{bottom:685.080548px;}
.y1a{bottom:692.640554px;}
.y5f{bottom:693.000554px;}
.ycc{bottom:694.080555px;}
.y88{bottom:695.699822px;}
.y121{bottom:701.460561px;}
.y19{bottom:702.900562px;}
.y86{bottom:709.560000px;}
.ycb{bottom:711.360569px;}
.y5e{bottom:711.540569px;}
.y120{bottom:720.000576px;}
.y17{bottom:723.600579px;}
.yca{bottom:728.640583px;}
.y5d{bottom:729.000583px;}
.y18{bottom:731.880586px;}
.y85{bottom:734.759853px;}
.y11f{bottom:737.280590px;}
.y15{bottom:744.300595px;}
.yc9{bottom:745.920597px;}
.y5c{bottom:746.280597px;}
.y84{bottom:752.039867px;}
.y16{bottom:752.580602px;}
.y11e{bottom:754.560604px;}
.yc8{bottom:763.020610px;}
.y5b{bottom:763.380611px;}
.y14{bottom:767.160614px;}
.y81{bottom:768.419880px;}
.y11d{bottom:771.660617px;}
.y58{bottom:777.960000px;}
.yc7{bottom:780.300624px;}
.y5a{bottom:780.840625px;}
.y80{bottom:782.279891px;}
.y11c{bottom:789.480632px;}
.y7f{bottom:796.139903px;}
.y57{bottom:796.860637px;}
.yc6{bottom:797.580638px;}
.y13{bottom:798.120638px;}
.y11b{bottom:808.020646px;}
.y7e{bottom:809.819913px;}
.y56{bottom:814.140651px;}
.yc5{bottom:814.860652px;}
.y7d{bottom:823.679925px;}
.y11a{bottom:825.120660px;}
.y12{bottom:829.260663px;}
.y55{bottom:831.420665px;}
.yc4{bottom:832.140666px;}
.y7c{bottom:837.539936px;}
.yeb{bottom:839.700672px;}
.y119{bottom:842.400674px;}
.y54{bottom:848.700679px;}
.yc3{bottom:849.420680px;}
.y7b{bottom:851.579947px;}
.y118{bottom:859.680688px;}
.y11{bottom:860.220688px;}
.y53{bottom:865.800693px;}
.yae{bottom:866.520693px;}
.y117{bottom:876.960702px;}
.y52{bottom:883.080706px;}
.yad{bottom:883.800707px;}
.y10{bottom:891.360713px;}
.y116{bottom:894.240715px;}
.y51{bottom:900.360720px;}
.yac{bottom:901.080721px;}
.y115{bottom:911.880730px;}
.y50{bottom:917.640734px;}
.yab{bottom:918.360735px;}
.yf{bottom:922.320738px;}
.y114{bottom:930.960745px;}
.y4f{bottom:934.920748px;}
.yaa{bottom:935.640749px;}
.y113{bottom:949.320759px;}
.ye{bottom:950.580760px;}
.y4e{bottom:952.020762px;}
.ya9{bottom:952.740762px;}
.yd{bottom:964.440772px;}
.y112{bottom:966.600773px;}
.y4d{bottom:969.300775px;}
.ya8{bottom:970.020776px;}
.y111{bottom:983.880787px;}
.y4c{bottom:986.580789px;}
.ya7{bottom:987.300790px;}
.yc{bottom:998.640799px;}
.y110{bottom:1001.520801px;}
.y4b{bottom:1003.860803px;}
.ya6{bottom:1004.580804px;}
.yb{bottom:1014.300811px;}
.y10f{bottom:1020.600816px;}
.y4a{bottom:1021.140817px;}
.ya5{bottom:1021.860817px;}
.ya{bottom:1029.600824px;}
.y48{bottom:1038.420831px;}
.y9{bottom:1045.440836px;}
.y47{bottom:1052.280842px;}
.y8{bottom:1063.440851px;}
.y46{bottom:1066.140853px;}
.y45{bottom:1079.820864px;}
.y3{bottom:1089.180871px;}
.y44{bottom:1093.680875px;}
.y2{bottom:1105.740885px;}
.y43{bottom:1107.540886px;}
.y1{bottom:1120.140896px;}
.y42{bottom:1121.580897px;}
.h9{height:8.460000px;}
.hf{height:16.020000px;}
.ha{height:16.200000px;}
.hd{height:16.560000px;}
.hc{height:17.100000px;}
.h7{height:40.550657px;}
.h2{height:50.312853px;}
.h5{height:56.320358px;}
.h1{height:62.327862px;}
.h8{height:69.086305px;}
.h4{height:75.093810px;}
.h3{height:87.859758px;}
.h6{height:112.640715px;}
.he{height:130.727917px;}
.hb{height:918.000000px;}
.h0{height:1188.000000px;}
.w2{width:4.140000px;}
.wf{width:4.860000px;}
.w11{width:5.040000px;}
.wc{width:5.220000px;}
.wb{width:5.400000px;}
.w8{width:6.120000px;}
.w1{width:7.560000px;}
.w1a{width:8.100000px;}
.w6{width:8.280000px;}
.w13{width:9.180000px;}
.w10{width:9.360000px;}
.w17{width:25.020000px;}
.w19{width:25.200000px;}
.w12{width:39.780000px;}
.w14{width:39.960000px;}
.w9{width:50.760000px;}
.wd{width:57.420000px;}
.w5{width:62.640000px;}
.wa{width:64.080000px;}
.w7{width:78.300000px;}
.we{width:78.480000px;}
.w4{width:81.720000px;}
.w18{width:85.860000px;}
.w16{width:105.480000px;}
.w15{width:248.220000px;}
.w0{width:918.000000px;}
.w3{width:1188.000000px;}
.x0{left:0.000000px;}
.x38{left:150.120000px;}
.x2{left:151.200121px;}
.x22{left:154.259422px;}
.x10{left:162.180130px;}
.x2e{left:163.440131px;}
.x31{left:167.580134px;}
.x23{left:171.720207px;}
.x57{left:185.220148px;}
.x1e{left:192.060154px;}
.x24{left:196.739896px;}
.xd{left:198.180176px;}
.xc{left:203.760179px;}
.x45{left:205.920000px;}
.x5e{left:209.700000px;}
.x32{left:225.540575px;}
.xb{left:246.240197px;}
.x39{left:256.680000px;}
.x5d{left:259.560188px;}
.x4{left:271.080217px;}
.x2d{left:278.100222px;}
.x11{left:285.300228px;}
.x12{left:296.640237px;}
.x20{left:303.840243px;}
.x3a{left:319.320000px;}
.x19{left:337.500657px;}
.x3b{left:347.760000px;}
.x8{left:367.380294px;}
.x7{left:374.580232px;}
.x2f{left:389.879783px;}
.x9{left:396.540317px;}
.x5{left:399.600320px;}
.x58{left:405.179923px;}
.x3c{left:410.400000px;}
.xe{left:424.980617px;}
.x3{left:429.660344px;}
.x13{left:432.720346px;}
.x3d{left:448.020000px;}
.x14{left:449.460360px;}
.x1a{left:456.660365px;}
.x56{left:459.000367px;}
.x5f{left:462.240000px;}
.x1b{left:463.320371px;}
.x6{left:474.300379px;}
.xf{left:495.180689px;}
.x3e{left:535.860000px;}
.x59{left:549.540440px;}
.x5a{left:554.940444px;}
.x25{left:557.280769px;}
.x46{left:567.720000px;}
.x28{left:583.380487px;}
.x2b{left:588.600449px;}
.x60{left:592.740000px;}
.x37{left:594.000059px;}
.x3f{left:603.720000px;}
.x21{left:605.160267px;}
.x1c{left:607.140486px;}
.x15{left:610.200488px;}
.x1d{left:613.800491px;}
.x16{left:616.860493px;}
.x47{left:631.800000px;}
.x48{left:637.200000px;}
.x49{left:642.420000px;}
.x26{left:643.860515px;}
.x27{left:652.500522px;}
.x35{left:659.879000px;}
.x29{left:671.580537px;}
.x4a{left:673.380000px;}
.x61{left:678.600000px;}
.x2a{left:680.760545px;}
.x62{left:686.880000px;}
.x2c{left:690.660553px;}
.x1f{left:705.961197px;}
.x5b{left:707.400566px;}
.x55{left:708.660551px;}
.x5c{left:712.620570px;}
.x4b{left:730.800000px;}
.x30{left:733.500587px;}
.x40{left:739.620000px;}
.x17{left:755.100604px;}
.x33{left:759.240607px;}
.x18{left:761.760609px;}
.x1{left:766.800613px;}
.xa{left:770.040616px;}
.x41{left:807.480000px;}
.x4c{left:833.940000px;}
.x4d{left:839.340000px;}
.x4e{left:844.200000px;}
.x42{left:875.520000px;}
.x4f{left:885.060000px;}
.x50{left:890.100000px;}
.x51{left:929.880000px;}
.x43{left:943.380000px;}
.x52{left:967.500000px;}
.x53{left:976.680000px;}
.x54{left:981.720000px;}
.x36{left:1003.500803px;}
.x44{left:1021.680000px;}
.x34{left:1036.800829px;}
@media print{
.v1{vertical-align:-64.640052pt;}
.v3{vertical-align:-60.800049pt;}
.v4{vertical-align:-24.320019pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:60.800049pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.333974pt;}
.ls2{letter-spacing:0.371894pt;}
.ls0{letter-spacing:28.836732pt;}
.ls5{letter-spacing:852.825368pt;}
.ls3{letter-spacing:990.065432pt;}
.ws5{word-spacing:-39.840032pt;}
.ws4{word-spacing:-14.767372pt;}
.ws1{word-spacing:-13.344011pt;}
.ws0{word-spacing:-11.920650pt;}
.ws2{word-spacing:-9.607688pt;}
.ws3{word-spacing:0.000000pt;}
._f{margin-left:-4.095309pt;}
._18{margin-left:-2.158503pt;}
._0{margin-left:-0.924905pt;}
._1{width:1.067038pt;}
._5{width:1.967774pt;}
._e{width:3.212769pt;}
._2{width:4.518423pt;}
._15{width:5.728084pt;}
._a{width:6.952536pt;}
._3{width:8.142252pt;}
._4{width:9.114001pt;}
._13{width:10.443338pt;}
._9{width:11.409730pt;}
._7{width:12.555154pt;}
._8{width:13.534469pt;}
._11{width:16.060318pt;}
._12{width:17.403139pt;}
._c{width:18.428737pt;}
._b{width:19.620625pt;}
._16{width:20.515710pt;}
._3b{width:21.425070pt;}
._d{width:22.439389pt;}
._17{width:23.621482pt;}
._34{width:24.678652pt;}
._32{width:26.708013pt;}
._10{width:27.704200pt;}
._6{width:28.723115pt;}
._14{width:32.452474pt;}
._37{width:33.377242pt;}
._33{width:34.766166pt;}
._3a{width:35.707975pt;}
._3f{width:36.986587pt;}
._35{width:40.298563pt;}
._36{width:41.264970pt;}
._3c{width:44.158516pt;}
._21{width:52.273271pt;}
._3e{width:55.674068pt;}
._20{width:79.953527pt;}
._3d{width:85.208863pt;}
._39{width:92.116106pt;}
._38{width:93.340440pt;}
._1e{width:123.327161pt;}
._25{width:137.456145pt;}
._30{width:143.155285pt;}
._1d{width:152.223477pt;}
._26{width:166.990653pt;}
._19{width:171.585842pt;}
._2d{width:173.153761pt;}
._29{width:208.362903pt;}
._28{width:219.861040pt;}
._1c{width:223.130235pt;}
._2a{width:225.421806pt;}
._1f{width:226.698812pt;}
._1a{width:234.628528pt;}
._24{width:237.897723pt;}
._27{width:245.369703pt;}
._22{width:249.395938pt;}
._2c{width:256.836951pt;}
._1b{width:267.207581pt;}
._2e{width:279.044599pt;}
._23{width:341.043953pt;}
._2b{width:1328.354343pt;}
._2f{width:1331.275945pt;}
._31{width:1390.292312pt;}
.fs6{font-size:34.560028pt;}
.fs1{font-size:42.880034pt;}
.fs4{font-size:48.000038pt;}
.fs0{font-size:53.120042pt;}
.fs7{font-size:58.880047pt;}
.fs3{font-size:64.000051pt;}
.fs2{font-size:74.880060pt;}
.fs5{font-size:96.000077pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:1.920232pt;}
.y9b{bottom:2.079630pt;}
.y12f{bottom:2.400264pt;}
.y59{bottom:2.560555pt;}
.y92{bottom:2.879726pt;}
.y99{bottom:3.039625pt;}
.y87{bottom:3.039854pt;}
.y83{bottom:79.839411pt;}
.y7{bottom:79.840064pt;}
.y6{bottom:94.560076pt;}
.y82{bottom:95.199423pt;}
.y49{bottom:95.200076pt;}
.y5{bottom:106.880086pt;}
.y4{bottom:119.200095pt;}
.yea{bottom:138.560111pt;}
.y10a{bottom:141.760113pt;}
.y40{bottom:145.120116pt;}
.yc2{bottom:146.080117pt;}
.y10e{bottom:151.360121pt;}
.ye9{bottom:153.920123pt;}
.y109{bottom:156.960126pt;}
.y3f{bottom:160.640129pt;}
.yc1{bottom:161.440129pt;}
.y10d{bottom:168.160135pt;}
.ye8{bottom:169.280135pt;}
.y108{bottom:172.320138pt;}
.y3e{bottom:175.840141pt;}
.yc0{bottom:176.800141pt;}
.ye7{bottom:184.640148pt;}
.y107{bottom:187.680150pt;}
.y3d{bottom:191.200153pt;}
.ybf{bottom:192.000154pt;}
.ye6{bottom:200.000160pt;}
.y106{bottom:203.040162pt;}
.y3c{bottom:206.400165pt;}
.ya4{bottom:207.359513pt;}
.ybe{bottom:207.360166pt;}
.y7a{bottom:213.920171pt;}
.ye5{bottom:215.200172pt;}
.y105{bottom:218.400175pt;}
.y3b{bottom:221.760177pt;}
.ya3{bottom:222.719525pt;}
.ybd{bottom:222.720178pt;}
.y79{bottom:229.280183pt;}
.ye4{bottom:230.560184pt;}
.y104{bottom:233.600187pt;}
.y3a{bottom:237.120190pt;}
.ybc{bottom:238.080190pt;}
.ya2{bottom:238.719538pt;}
.y78{bottom:244.640196pt;}
.ye3{bottom:245.920197pt;}
.y103{bottom:248.960199pt;}
.y39{bottom:252.480202pt;}
.ybb{bottom:253.440203pt;}
.ya1{bottom:253.919550pt;}
.y77{bottom:260.000208pt;}
.ye2{bottom:261.280209pt;}
.y102{bottom:264.320211pt;}
.y38{bottom:267.840214pt;}
.yb9{bottom:268.640215pt;}
.ya0{bottom:269.279563pt;}
.y76{bottom:275.200220pt;}
.yba{bottom:275.360220pt;}
.ye1{bottom:276.640221pt;}
.y101{bottom:279.680224pt;}
.y37{bottom:283.200227pt;}
.yb8{bottom:284.000227pt;}
.y9f{bottom:284.639575pt;}
.y35{bottom:288.000000pt;}
.y75{bottom:290.560232pt;}
.ye0{bottom:292.000234pt;}
.y10c{bottom:292.320234pt;}
.y100{bottom:295.040236pt;}
.y34{bottom:299.360239pt;}
.y9e{bottom:299.999587pt;}
.y74{bottom:305.920245pt;}
.ydf{bottom:307.200246pt;}
.y10b{bottom:309.280247pt;}
.yff{bottom:310.400248pt;}
.yb7{bottom:314.720252pt;}
.y33{bottom:314.880252pt;}
.y9d{bottom:315.359599pt;}
.y73{bottom:321.280257pt;}
.yde{bottom:322.560258pt;}
.yfe{bottom:325.600260pt;}
.y12e{bottom:327.680000pt;}
.yb6{bottom:330.080264pt;}
.y9c{bottom:330.719612pt;}
.y32{bottom:331.520265pt;}
.y72{bottom:336.640269pt;}
.ydd{bottom:337.920270pt;}
.yfd{bottom:340.960273pt;}
.y31{bottom:343.680275pt;}
.y98{bottom:343.840000pt;}
.yb5{bottom:345.440276pt;}
.y9a{bottom:351.520000pt;}
.y71{bottom:352.000282pt;}
.ydc{bottom:353.280283pt;}
.yfc{bottom:356.320285pt;}
.yb4{bottom:360.480288pt;}
.y97{bottom:362.879638pt;}
.y2f{bottom:363.520291pt;}
.y12d{bottom:366.720293pt;}
.y70{bottom:367.200294pt;}
.ydb{bottom:368.640295pt;}
.y30{bottom:370.240296pt;}
.yfb{bottom:371.680297pt;}
.yb3{bottom:374.240299pt;}
.y41{bottom:375.840301pt;}
.y2d{bottom:378.880303pt;}
.y12c{bottom:382.080306pt;}
.y6f{bottom:383.040306pt;}
.yda{bottom:384.000307pt;}
.y2e{bottom:385.600308pt;}
.yfa{bottom:387.040310pt;}
.yb2{bottom:388.480311pt;}
.y96{bottom:393.279662pt;}
.y2b{bottom:394.240315pt;}
.y12b{bottom:397.440318pt;}
.yd9{bottom:399.200319pt;}
.y6e{bottom:399.840320pt;}
.y2c{bottom:400.960321pt;}
.yf9{bottom:402.400322pt;}
.yb1{bottom:403.840323pt;}
.y2a{bottom:409.600328pt;}
.y12a{bottom:412.160330pt;}
.y95{bottom:412.639677pt;}
.yd8{bottom:414.560332pt;}
.y6d{bottom:416.320333pt;}
.yf8{bottom:417.600334pt;}
.yb0{bottom:419.040335pt;}
.y129{bottom:424.320339pt;}
.y29{bottom:424.960340pt;}
.yd7{bottom:429.920344pt;}
.yaf{bottom:431.360345pt;}
.y6c{bottom:431.680345pt;}
.yf7{bottom:432.960346pt;}
.y94{bottom:435.359695pt;}
.y128{bottom:436.480349pt;}
.y28{bottom:440.320352pt;}
.yd6{bottom:445.280356pt;}
.y6b{bottom:447.040358pt;}
.yf6{bottom:448.320359pt;}
.y93{bottom:450.559708pt;}
.y127{bottom:450.880361pt;}
.y27{bottom:455.680365pt;}
.yd5{bottom:460.640369pt;}
.y69{bottom:462.400370pt;}
.yf5{bottom:463.680371pt;}
.y6a{bottom:469.120375pt;}
.y91{bottom:470.400000pt;}
.y26{bottom:471.040377pt;}
.y90{bottom:473.279726pt;}
.yd4{bottom:476.000381pt;}
.y68{bottom:477.600382pt;}
.yf4{bottom:479.040383pt;}
.y25{bottom:486.400389pt;}
.yd3{bottom:491.200393pt;}
.y67{bottom:492.960394pt;}
.yf3{bottom:494.400396pt;}
.y8f{bottom:495.999744pt;}
.y24{bottom:501.600401pt;}
.yd2{bottom:506.560405pt;}
.y66{bottom:508.320407pt;}
.yf2{bottom:509.600408pt;}
.y8e{bottom:511.359756pt;}
.y23{bottom:516.800413pt;}
.yd1{bottom:521.920418pt;}
.y65{bottom:523.680419pt;}
.yf1{bottom:524.960420pt;}
.y8d{bottom:526.559768pt;}
.y22{bottom:532.160426pt;}
.yd0{bottom:537.280430pt;}
.y64{bottom:539.040431pt;}
.yf0{bottom:540.320432pt;}
.y126{bottom:540.800433pt;}
.y21{bottom:547.680438pt;}
.y8c{bottom:549.279787pt;}
.ycf{bottom:552.640442pt;}
.y63{bottom:554.240443pt;}
.yef{bottom:555.680445pt;}
.y125{bottom:557.600446pt;}
.y20{bottom:563.040450pt;}
.y8b{bottom:564.639799pt;}
.yce{bottom:567.840454pt;}
.y62{bottom:569.600456pt;}
.y1f{bottom:569.760456pt;}
.yee{bottom:571.040457pt;}
.y124{bottom:574.400460pt;}
.y1e{bottom:578.400463pt;}
.ycd{bottom:583.680467pt;}
.y61{bottom:584.960468pt;}
.yed{bottom:586.240469pt;}
.y8a{bottom:587.839817pt;}
.y123{bottom:590.880473pt;}
.y1d{bottom:593.600475pt;}
.y1c{bottom:600.320480pt;}
.y60{bottom:600.480480pt;}
.yec{bottom:601.600481pt;}
.y89{bottom:603.039830pt;}
.y122{bottom:606.720485pt;}
.y1b{bottom:608.960487pt;}
.y1a{bottom:615.680493pt;}
.y5f{bottom:616.000493pt;}
.ycc{bottom:616.960494pt;}
.y88{bottom:618.399842pt;}
.y121{bottom:623.520499pt;}
.y19{bottom:624.800500pt;}
.y86{bottom:630.720000pt;}
.ycb{bottom:632.320506pt;}
.y5e{bottom:632.480506pt;}
.y120{bottom:640.000512pt;}
.y17{bottom:643.200515pt;}
.yca{bottom:647.680518pt;}
.y5d{bottom:648.000518pt;}
.y18{bottom:650.560520pt;}
.y85{bottom:653.119870pt;}
.y11f{bottom:655.360524pt;}
.y15{bottom:661.600529pt;}
.yc9{bottom:663.040530pt;}
.y5c{bottom:663.360531pt;}
.y84{bottom:668.479882pt;}
.y16{bottom:668.960535pt;}
.y11e{bottom:670.720537pt;}
.yc8{bottom:678.240543pt;}
.y5b{bottom:678.560543pt;}
.y14{bottom:681.920546pt;}
.y81{bottom:683.039894pt;}
.y11d{bottom:685.920549pt;}
.y58{bottom:691.520000pt;}
.yc7{bottom:693.600555pt;}
.y5a{bottom:694.080555pt;}
.y80{bottom:695.359903pt;}
.y11c{bottom:701.760561pt;}
.y7f{bottom:707.679913pt;}
.y57{bottom:708.320567pt;}
.yc6{bottom:708.960567pt;}
.y13{bottom:709.440568pt;}
.y11b{bottom:718.240575pt;}
.y7e{bottom:719.839923pt;}
.y56{bottom:723.680579pt;}
.yc5{bottom:724.320579pt;}
.y7d{bottom:732.159933pt;}
.y11a{bottom:733.440587pt;}
.y12{bottom:737.120590pt;}
.y55{bottom:739.040591pt;}
.yc4{bottom:739.680592pt;}
.y7c{bottom:744.479943pt;}
.yeb{bottom:746.400597pt;}
.y119{bottom:748.800599pt;}
.y54{bottom:754.400604pt;}
.yc3{bottom:755.040604pt;}
.y7b{bottom:756.959953pt;}
.y118{bottom:764.160611pt;}
.y11{bottom:764.640612pt;}
.y53{bottom:769.600616pt;}
.yae{bottom:770.240616pt;}
.y117{bottom:779.520624pt;}
.y52{bottom:784.960628pt;}
.yad{bottom:785.600628pt;}
.y10{bottom:792.320634pt;}
.y116{bottom:794.880636pt;}
.y51{bottom:800.320640pt;}
.yac{bottom:800.960641pt;}
.y115{bottom:810.560648pt;}
.y50{bottom:815.680653pt;}
.yab{bottom:816.320653pt;}
.yf{bottom:819.840656pt;}
.y114{bottom:827.520662pt;}
.y4f{bottom:831.040665pt;}
.yaa{bottom:831.680665pt;}
.y113{bottom:843.840675pt;}
.ye{bottom:844.960676pt;}
.y4e{bottom:846.240677pt;}
.ya9{bottom:846.880678pt;}
.yd{bottom:857.280686pt;}
.y112{bottom:859.200687pt;}
.y4d{bottom:861.600689pt;}
.ya8{bottom:862.240690pt;}
.y111{bottom:874.560700pt;}
.y4c{bottom:876.960702pt;}
.ya7{bottom:877.600702pt;}
.yc{bottom:887.680710pt;}
.y110{bottom:890.240712pt;}
.y4b{bottom:892.320714pt;}
.ya6{bottom:892.960714pt;}
.yb{bottom:901.600721pt;}
.y10f{bottom:907.200726pt;}
.y4a{bottom:907.680726pt;}
.ya5{bottom:908.320727pt;}
.ya{bottom:915.200732pt;}
.y48{bottom:923.040738pt;}
.y9{bottom:929.280743pt;}
.y47{bottom:935.360748pt;}
.y8{bottom:945.280756pt;}
.y46{bottom:947.680758pt;}
.y45{bottom:959.840768pt;}
.y3{bottom:968.160775pt;}
.y44{bottom:972.160778pt;}
.y2{bottom:982.880786pt;}
.y43{bottom:984.480788pt;}
.y1{bottom:995.680797pt;}
.y42{bottom:996.960798pt;}
.h9{height:7.520000pt;}
.hf{height:14.240000pt;}
.ha{height:14.400000pt;}
.hd{height:14.720000pt;}
.hc{height:15.200000pt;}
.h7{height:36.045029pt;}
.h2{height:44.722536pt;}
.h5{height:50.062540pt;}
.h1{height:55.402544pt;}
.h8{height:61.410049pt;}
.h4{height:66.750053pt;}
.h3{height:78.097562pt;}
.h6{height:100.125080pt;}
.he{height:116.202593pt;}
.hb{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:3.680000pt;}
.wf{width:4.320000pt;}
.w11{width:4.480000pt;}
.wc{width:4.640000pt;}
.wb{width:4.800000pt;}
.w8{width:5.440000pt;}
.w1{width:6.720000pt;}
.w1a{width:7.200000pt;}
.w6{width:7.360000pt;}
.w13{width:8.160000pt;}
.w10{width:8.320000pt;}
.w17{width:22.240000pt;}
.w19{width:22.400000pt;}
.w12{width:35.360000pt;}
.w14{width:35.520000pt;}
.w9{width:45.120000pt;}
.wd{width:51.040000pt;}
.w5{width:55.680000pt;}
.wa{width:56.960000pt;}
.w7{width:69.600000pt;}
.we{width:69.760000pt;}
.w4{width:72.640000pt;}
.w18{width:76.320000pt;}
.w16{width:93.760000pt;}
.w15{width:220.640000pt;}
.w0{width:816.000000pt;}
.w3{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x38{left:133.440000pt;}
.x2{left:134.400108pt;}
.x22{left:137.119486pt;}
.x10{left:144.160115pt;}
.x2e{left:145.280116pt;}
.x31{left:148.960119pt;}
.x23{left:152.640184pt;}
.x57{left:164.640132pt;}
.x1e{left:170.720137pt;}
.x24{left:174.879907pt;}
.xd{left:176.160157pt;}
.xc{left:181.120159pt;}
.x45{left:183.040000pt;}
.x5e{left:186.400000pt;}
.x32{left:200.480511pt;}
.xb{left:218.880175pt;}
.x39{left:228.160000pt;}
.x5d{left:230.720167pt;}
.x4{left:240.960193pt;}
.x2d{left:247.200198pt;}
.x11{left:253.600203pt;}
.x12{left:263.680211pt;}
.x20{left:270.080216pt;}
.x3a{left:283.840000pt;}
.x19{left:300.000584pt;}
.x3b{left:309.120000pt;}
.x8{left:326.560261pt;}
.x7{left:332.960206pt;}
.x2f{left:346.559807pt;}
.x9{left:352.480282pt;}
.x5{left:355.200284pt;}
.x58{left:360.159931pt;}
.x3c{left:364.800000pt;}
.xe{left:377.760548pt;}
.x3{left:381.920306pt;}
.x13{left:384.640308pt;}
.x3d{left:398.240000pt;}
.x14{left:399.520320pt;}
.x1a{left:405.920325pt;}
.x56{left:408.000326pt;}
.x5f{left:410.880000pt;}
.x1b{left:411.840329pt;}
.x6{left:421.600337pt;}
.xf{left:440.160613pt;}
.x3e{left:476.320000pt;}
.x59{left:488.480391pt;}
.x5a{left:493.280395pt;}
.x25{left:495.360684pt;}
.x46{left:504.640000pt;}
.x28{left:518.560433pt;}
.x2b{left:523.200399pt;}
.x60{left:526.880000pt;}
.x37{left:528.000052pt;}
.x3f{left:536.640000pt;}
.x21{left:537.920238pt;}
.x1c{left:539.680432pt;}
.x15{left:542.400434pt;}
.x1d{left:545.600436pt;}
.x16{left:548.320439pt;}
.x47{left:561.600000pt;}
.x48{left:566.400000pt;}
.x49{left:571.040000pt;}
.x26{left:572.320458pt;}
.x27{left:580.000464pt;}
.x35{left:586.559111pt;}
.x29{left:596.960478pt;}
.x4a{left:598.560000pt;}
.x61{left:603.200000pt;}
.x2a{left:605.120484pt;}
.x62{left:610.560000pt;}
.x2c{left:613.920491pt;}
.x1f{left:627.521064pt;}
.x5b{left:628.800503pt;}
.x55{left:629.920490pt;}
.x5c{left:633.440507pt;}
.x4b{left:649.600000pt;}
.x30{left:652.000522pt;}
.x40{left:657.440000pt;}
.x17{left:671.200537pt;}
.x33{left:674.880540pt;}
.x18{left:677.120542pt;}
.x1{left:681.600545pt;}
.xa{left:684.480548pt;}
.x41{left:717.760000pt;}
.x4c{left:741.280000pt;}
.x4d{left:746.080000pt;}
.x4e{left:750.400000pt;}
.x42{left:778.240000pt;}
.x4f{left:786.720000pt;}
.x50{left:791.200000pt;}
.x51{left:826.560000pt;}
.x43{left:838.560000pt;}
.x52{left:860.000000pt;}
.x53{left:868.160000pt;}
.x54{left:872.640000pt;}
.x36{left:892.000714pt;}
.x44{left:908.160000pt;}
.x34{left:921.600737pt;}
}




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