
    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_e6ea7f685f3dea94f75d5ee3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.185000;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_aae538ce30d7941f2550bb8c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.222000;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_09fdf5c4a556e3850c5728b3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_db218c0e4b018fb9faa323c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_47d6575e91f1d9d3752e7161.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_1ac663650de5b542e1a48926.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_c300011714692baa9e624dde.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.692871;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_a646b2066c2926bc7a8a924d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;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_252b706cd787da98e507529f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900879;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_df25235193e0e0cd51b3776c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,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);}
.vc{vertical-align:-107.279987px;}
.v8{vertical-align:-84.239870px;}
.vb{vertical-align:-71.280121px;}
.v3{vertical-align:-56.879793px;}
.v2{vertical-align:-23.760063px;}
.v4{vertical-align:-18.000000px;}
.v7{vertical-align:-12.240144px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.240144px;}
.v5{vertical-align:15.119932px;}
.v1{vertical-align:23.760063px;}
.v9{vertical-align:25.920009px;}
.va{vertical-align:70.559968px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.145757px;}
.lsa{letter-spacing:0.179554px;}
.lsb{letter-spacing:0.235019px;}
.ls8{letter-spacing:25.512671px;}
.ls5{letter-spacing:83.703222px;}
.ls6{letter-spacing:419.223213px;}
.ls9{letter-spacing:535.992680px;}
.ls4{letter-spacing:561.063164px;}
.ls3{letter-spacing:831.063146px;}
.ls7{letter-spacing:1030.503177px;}
.ls0{letter-spacing:1134.865806px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(219,65,67),0 0.015em rgb(219,65,67),0.015em 0 rgb(219,65,67),0 -0.015em  rgb(219,65,67);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(219,65,67);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-53.999861px;}
.ws10{word-spacing:-45.361800px;}
.ws2{word-spacing:-45.001798px;}
.wsb{word-spacing:-19.120340px;}
.ws1{word-spacing:-15.875132px;}
.ws0{word-spacing:-15.500719px;}
.ws4{word-spacing:-12.370786px;}
.wsf{word-spacing:-11.981567px;}
.wsc{word-spacing:-11.336823px;}
.ws6{word-spacing:-10.564954px;}
.ws11{word-spacing:-9.986053px;}
.ws5{word-spacing:-9.934234px;}
.ws8{word-spacing:-9.000349px;}
.ws9{word-spacing:-8.644655px;}
.ws3{word-spacing:-8.515045px;}
.ws7{word-spacing:-6.622816px;}
.wsa{word-spacing:0.000000px;}
.wse{word-spacing:429.460891px;}
._5a{margin-left:-6.352096px;}
._48{margin-left:-5.116586px;}
._7{margin-left:-3.080896px;}
._0{margin-left:-1.495496px;}
._1{width:1.123241px;}
._8{width:2.681381px;}
._5{width:3.925397px;}
._c{width:4.951095px;}
._6{width:5.963766px;}
._9{width:7.959897px;}
._2{width:9.098289px;}
._3{width:10.731315px;}
._10{width:11.831508px;}
._5d{width:12.848657px;}
._15{width:14.576260px;}
._13{width:15.760742px;}
._b{width:17.174081px;}
._a{width:18.187159px;}
._d{width:19.248478px;}
._11{width:21.103315px;}
._12{width:22.328804px;}
._14{width:23.518290px;}
._56{width:24.583215px;}
._16{width:25.597013px;}
._57{width:27.132833px;}
._58{width:28.387131px;}
._55{width:29.408123px;}
._17{width:31.285237px;}
._5b{width:49.126829px;}
._5e{width:51.474001px;}
._59{width:53.300115px;}
._5c{width:55.159949px;}
._37{width:67.635004px;}
._43{width:102.066685px;}
._e{width:136.186601px;}
._1f{width:143.562117px;}
._3d{width:147.089248px;}
._35{width:149.597822px;}
._27{width:152.009912px;}
._34{width:159.583874px;}
._2e{width:161.079370px;}
._38{width:162.333657px;}
._32{width:168.798058px;}
._50{width:170.068241px;}
._36{width:186.936975px;}
._39{width:190.846509px;}
._19{width:197.260720px;}
._f{width:202.519076px;}
._1b{width:210.382490px;}
._33{width:215.496121px;}
._1e{width:225.433931px;}
._25{width:226.977669px;}
._3e{width:233.056136px;}
._2c{width:235.371742px;}
._3a{width:239.159310px;}
._2f{width:243.572848px;}
._2a{width:252.545823px;}
._2d{width:253.993077px;}
._4c{width:257.274371px;}
._18{width:260.023302px;}
._29{width:264.223694px;}
._23{width:279.657715px;}
._4f{width:281.683870px;}
._2b{width:284.240686px;}
._53{width:293.808458px;}
._26{width:297.887306px;}
._1a{width:303.054988px;}
._44{width:304.325680px;}
._49{width:306.094221px;}
._4d{width:312.076204px;}
._42{width:316.032032px;}
._20{width:322.206982px;}
._28{width:323.310735px;}
._24{width:324.667314px;}
._30{width:327.610064px;}
._22{width:329.443252px;}
._3b{width:332.723695px;}
._3c{width:336.197104px;}
._40{width:337.254963px;}
._4b{width:343.226032px;}
._1d{width:363.308996px;}
._4a{width:373.632741px;}
._51{width:377.025563px;}
._47{width:390.999789px;}
._21{width:413.279466px;}
._1c{width:414.638271px;}
._31{width:420.716738px;}
._3f{width:453.907096px;}
._41{width:465.485128px;}
._45{width:491.992730px;}
._4e{width:722.613922px;}
._52{width:746.831306px;}
._54{width:795.426694px;}
._46{width:844.713918px;}
._4{width:1196.879058px;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(219,65,67);}
.fc2{color:rgb(1,3,2);}
.fc1{color:rgb(255,0,0);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:27.361080px;}
.fsc{font-size:30.241170px;}
.fs13{font-size:31.961035px;}
.fse{font-size:36.001395px;}
.fs8{font-size:38.881485px;}
.fs5{font-size:41.759538px;}
.fsb{font-size:41.761620px;}
.fsa{font-size:45.361800px;}
.fs0{font-size:48.241800px;}
.fsf{font-size:50.985391px;}
.fs12{font-size:53.999861px;}
.fs9{font-size:54.002250px;}
.fs11{font-size:56.882250px;}
.fs2{font-size:59.762250px;}
.fs14{font-size:63.362250px;}
.fs7{font-size:66.242700px;}
.fs1{font-size:74.882700px;}
.fs3{font-size:77.763154px;}
.fs10{font-size:81.363150px;}
.fs6{font-size:95.763600px;}
.fs4{font-size:180.007191px;}
.y0{bottom:0.000000px;}
.yfd{bottom:0.720017px;}
.yf8{bottom:0.899987px;}
.y79{bottom:2.700028px;}
.y4e{bottom:2.879998px;}
.yb{bottom:4.679995px;}
.y8{bottom:4.680000px;}
.y11b{bottom:6.479976px;}
.y10e{bottom:6.479993px;}
.y11e{bottom:6.480010px;}
.ye6{bottom:6.480011px;}
.y19{bottom:14.760132px;}
.y18{bottom:28.620072px;}
.y17{bottom:43.020127px;}
.y16{bottom:43.033969px;}
.y15{bottom:55.096090px;}
.y14{bottom:67.151989px;}
.y13{bottom:79.210999px;}
.yf{bottom:83.340088px;}
.y12{bottom:91.273120px;}
.y11{bottom:103.335366px;}
.y17f{bottom:108.720016px;}
.y103{bottom:110.700028px;}
.y209{bottom:112.860077px;}
.y10{bottom:115.572842px;}
.y167{bottom:116.640060px;}
.y132{bottom:116.820099px;}
.y19d{bottom:117.180039px;}
.ye1{bottom:120.960091px;}
.yac{bottom:127.080093px;}
.ye{bottom:127.800041px;}
.y102{bottom:129.240074px;}
.y17e{bottom:129.960091px;}
.y19c{bottom:130.500068px;}
.y1d3{bottom:133.740074px;}
.y166{bottom:137.700096px;}
.y131{bottom:137.880066px;}
.y208{bottom:141.300041px;}
.ye0{bottom:142.200096px;}
.y19b{bottom:143.820099px;}
.y101{bottom:147.780052px;}
.y1d2{bottom:147.960091px;}
.yab{bottom:148.320099px;}
.y17d{bottom:151.020058px;}
.y207{bottom:155.520058px;}
.y19a{bottom:157.140060px;}
.y165{bottom:158.760064px;}
.y130{bottom:159.120072px;}
.ydf{bottom:163.260064px;}
.y100{bottom:166.320099px;}
.yaa{bottom:169.380066px;}
.y1d1{bottom:169.740074px;}
.y17c{bottom:172.080093px;}
.y199{bottom:175.500068px;}
.y206{bottom:177.120072px;}
.y164{bottom:180.000068px;}
.y12f{bottom:180.180039px;}
.yde{bottom:184.320099px;}
.yff{bottom:184.860077px;}
.ya9{bottom:190.440033px;}
.y205{bottom:191.340088px;}
.y1d0{bottom:191.520058px;}
.y17b{bottom:193.320099px;}
.y12e{bottom:193.680039px;}
.y78{bottom:196.560036px;}
.yfc{bottom:196.920043px;}
.y163{bottom:201.060036px;}
.yfe{bottom:203.400055px;}
.yfb{bottom:204.120072px;}
.ydd{bottom:205.560036px;}
.y1cf{bottom:205.740074px;}
.y13f{bottom:207.181796px;}
.y198{bottom:207.720085px;}
.ya8{bottom:211.680039px;}
.y77{bottom:212.580093px;}
.y204{bottom:213.120072px;}
.y17a{bottom:214.380066px;}
.y1ce{bottom:219.960091px;}
.y197{bottom:221.040047px;}
.yfa{bottom:221.940033px;}
.y162{bottom:222.300041px;}
.y136{bottom:224.641725px;}
.ydc{bottom:226.620072px;}
.y203{bottom:227.340088px;}
.ya7{bottom:232.740074px;}
.yf7{bottom:234.000068px;}
.y196{bottom:234.360077px;}
.y76{bottom:234.540047px;}
.y179{bottom:235.620072px;}
.yf9{bottom:240.480079px;}
.yf6{bottom:241.380066px;}
.y1cd{bottom:241.560036px;}
.y161{bottom:243.360077px;}
.y75{bottom:247.320099px;}
.ydb{bottom:247.860077px;}
.y202{bottom:249.120072px;}
.ya6{bottom:253.980079px;}
.y137{bottom:253.983434px;}
.y1cc{bottom:255.780052px;}
.y178{bottom:256.680039px;}
.yf5{bottom:259.020058px;}
.y201{bottom:263.340088px;}
.y160{bottom:264.420043px;}
.y4d{bottom:267.480079px;}
.yda{bottom:268.920043px;}
.y74{bottom:269.280052px;}
.y1cb{bottom:270.000068px;}
.y4c{bottom:270.360077px;}
.yf4{bottom:271.080093px;}
.ya5{bottom:275.040047px;}
.y195{bottom:276.120072px;}
.yf3{bottom:277.560036px;}
.y177{bottom:277.740074px;}
.y138{bottom:283.143772px;}
.y15f{bottom:285.660049px;}
.y4b{bottom:288.180039px;}
.y194{bottom:289.440033px;}
.yd9{bottom:289.980079px;}
.y73{bottom:291.060036px;}
.y1ca{bottom:291.780052px;}
.ya4{bottom:296.100083px;}
.yf2{bottom:297.360077px;}
.y176{bottom:298.980079px;}
.y200{bottom:299.160049px;}
.y193{bottom:302.760064px;}
.y133{bottom:304.558850px;}
.y1c9{bottom:306.000068px;}
.y15e{bottom:306.720085px;}
.yd8{bottom:311.220085px;}
.y139{bottom:312.300088px;}
.y72{bottom:312.840088px;}
.y1ff{bottom:313.380066px;}
.y192{bottom:316.080093px;}
.ya3{bottom:317.340088px;}
.yf1{bottom:318.420043px;}
.y4a{bottom:320.040047px;}
.y1c8{bottom:320.220085px;}
.y1fe{bottom:327.600083px;}
.y15d{bottom:327.960091px;}
.yd7{bottom:332.280052px;}
.y49{bottom:334.260064px;}
.y71{bottom:334.800041px;}
.ya2{bottom:338.400055px;}
.yf0{bottom:339.660049px;}
.y175{bottom:341.280052px;}
.y13a{bottom:341.460426px;}
.y1c7{bottom:342.000068px;}
.y15c{bottom:349.020058px;}
.y191{bottom:349.380066px;}
.y48{bottom:352.620072px;}
.yd6{bottom:353.520058px;}
.y1c6{bottom:356.220085px;}
.y70{bottom:356.580093px;}
.ya1{bottom:359.640060px;}
.yef{bottom:360.720085px;}
.y174{bottom:362.340088px;}
.y1fd{bottom:363.600083px;}
.y15b{bottom:370.080093px;}
.y47{bottom:370.260064px;}
.y1c5{bottom:370.440033px;}
.y13b{bottom:370.624949px;}
.y135{bottom:371.704401px;}
.yd5{bottom:374.580093px;}
.y6f{bottom:378.360077px;}
.ya0{bottom:380.700096px;}
.y190{bottom:382.860077px;}
.y173{bottom:383.400055px;}
.y46{bottom:384.480079px;}
.y1fc{bottom:385.380066px;}
.y15a{bottom:391.320099px;}
.y1c4{bottom:392.040047px;}
.yd4{bottom:395.640060px;}
.y45{bottom:398.700096px;}
.y13c{bottom:399.962474px;}
.y6e{bottom:400.320099px;}
.y9f{bottom:401.760064px;}
.yee{bottom:403.020058px;}
.y172{bottom:404.640060px;}
.y1c3{bottom:406.260064px;}
.y1fb{bottom:406.980079px;}
.y159{bottom:412.380066px;}
.y44{bottom:412.920043px;}
.yd3{bottom:416.880066px;}
.y1fa{bottom:421.200096px;}
.y6d{bottom:422.100083px;}
.y9e{bottom:423.000068px;}
.yed{bottom:423.720085px;}
.y18f{bottom:424.980079px;}
.y171{bottom:425.700096px;}
.y43{bottom:427.140060px;}
.y1c2{bottom:428.040047px;}
.y13d{bottom:429.126996px;}
.y158{bottom:433.620072px;}
.y134{bottom:434.161517px;}
.y1f9{bottom:435.420043px;}
.yd2{bottom:437.940033px;}
.y42{bottom:441.360077px;}
.y1c1{bottom:442.260064px;}
.y9d{bottom:444.060036px;}
.y6c{bottom:444.240074px;}
.y18e{bottom:444.780052px;}
.y170{bottom:446.940033px;}
.yec{bottom:448.560036px;}
.y157{bottom:454.680039px;}
.y41{bottom:455.580093px;}
.y1f8{bottom:457.200096px;}
.y18d{bottom:458.100083px;}
.y13e{bottom:458.279127px;}
.yd1{bottom:459.180039px;}
.y1c0{bottom:464.040047px;}
.y9c{bottom:465.300041px;}
.y6b{bottom:466.560036px;}
.y16f{bottom:468.000068px;}
.y40{bottom:469.800041px;}
.y18c{bottom:471.420043px;}
.yeb{bottom:473.220085px;}
.y156{bottom:475.740074px;}
.y1bf{bottom:478.260064px;}
.yd0{bottom:480.240074px;}
.y3f{bottom:484.020058px;}
.y18b{bottom:484.740074px;}
.y1f7{bottom:485.640060px;}
.y9b{bottom:486.360077px;}
.y16e{bottom:489.060036px;}
.y6a{bottom:489.240074px;}
.y1be{bottom:492.480079px;}
.y155{bottom:496.980079px;}
.yea{bottom:498.060036px;}
.y3e{bottom:498.240074px;}
.ycf{bottom:501.300041px;}
.y9a{bottom:507.420043px;}
.y16d{bottom:510.300041px;}
.y18a{bottom:511.380066px;}
.y69{bottom:511.920043px;}
.y3d{bottom:512.460091px;}
.y1bd{bottom:514.080093px;}
.y154{bottom:518.040047px;}
.y1f6{bottom:521.640060px;}
.yce{bottom:522.540047px;}
.ye9{bottom:522.720085px;}
.y189{bottom:524.700096px;}
.y12d{bottom:525.420043px;}
.y3c{bottom:526.680039px;}
.y1bc{bottom:528.300041px;}
.y99{bottom:528.660049px;}
.y16c{bottom:531.360077px;}
.y68{bottom:533.880066px;}
.y1f5{bottom:535.860077px;}
.y188{bottom:538.020058px;}
.y153{bottom:539.280052px;}
.y3b{bottom:540.900055px;}
.ycd{bottom:543.600083px;}
.y12c{bottom:546.480079px;}
.ye8{bottom:547.560036px;}
.y98{bottom:549.720085px;}
.y1bb{bottom:550.080093px;}
.y16b{bottom:552.600083px;}
.y67{bottom:553.140060px;}
.y3a{bottom:555.120072px;}
.y1f4{bottom:557.460091px;}
.y152{bottom:560.340088px;}
.y1ba{bottom:564.300041px;}
.ycc{bottom:564.840088px;}
.y12b{bottom:567.540047px;}
.y39{bottom:569.340088px;}
.y66{bottom:570.600083px;}
.y97{bottom:570.960091px;}
.y1f3{bottom:571.680039px;}
.ye5{bottom:572.040047px;}
.ye7{bottom:572.220085px;}
.y16a{bottom:573.660049px;}
.y1b9{bottom:578.520058px;}
.y151{bottom:581.400055px;}
.y38{bottom:583.560036px;}
.ycb{bottom:585.900055px;}
.y96{bottom:592.020058px;}
.y1f2{bottom:593.460091px;}
.y169{bottom:594.720085px;}
.y37{bottom:597.780052px;}
.ye4{bottom:598.140060px;}
.y1b8{bottom:600.300041px;}
.y150{bottom:602.640060px;}
.y65{bottom:603.360077px;}
.yca{bottom:606.960091px;}
.y1f1{bottom:607.680039px;}
.y12a{bottom:609.840088px;}
.y95{bottom:613.080093px;}
.y36{bottom:613.980079px;}
.y1b7{bottom:614.520058px;}
.y64{bottom:615.960091px;}
.y187{bottom:619.200096px;}
.ye3{bottom:622.440033px;}
.y14f{bottom:623.700096px;}
.y63{bottom:629.100083px;}
.y1f0{bottom:629.460091px;}
.y129{bottom:630.540047px;}
.yc9{bottom:631.260064px;}
.y94{bottom:634.320099px;}
.y35{bottom:636.300041px;}
.y168{bottom:637.020058px;}
.y186{bottom:640.440033px;}
.y62{bottom:641.880066px;}
.y1ef{bottom:643.680039px;}
.y1b6{bottom:644.040047px;}
.y14e{bottom:644.940033px;}
.y127{bottom:648.540047px;}
.y128{bottom:649.080093px;}
.ye2{bottom:652.500068px;}
.y34{bottom:652.680039px;}
.y93{bottom:655.380066px;}
.yc8{bottom:658.260064px;}
.y185{bottom:661.500068px;}
.y61{bottom:664.380066px;}
.y1ee{bottom:665.280052px;}
.y126{bottom:667.620072px;}
.y33{bottom:670.860077px;}
.y92{bottom:676.620072px;}
.y60{bottom:678.600083px;}
.yc7{bottom:679.320099px;}
.y1ed{bottom:679.500068px;}
.y1b5{bottom:681.300041px;}
.y184{bottom:682.740074px;}
.y125{bottom:686.160049px;}
.y32{bottom:688.500068px;}
.y14d{bottom:696.060070px;}
.y91{bottom:697.680073px;}
.yc6{bottom:700.380066px;}
.y1ec{bottom:701.280052px;}
.y5f{bottom:701.820065px;}
.y31{bottom:702.720051px;}
.y183{bottom:703.800076px;}
.y123{bottom:704.160049px;}
.y124{bottom:704.700061px;}
.y1b4{bottom:710.460056px;}
.y1eb{bottom:715.500068px;}
.y5e{bottom:716.040081px;}
.y30{bottom:716.940067px;}
.y14c{bottom:717.120072px;}
.y90{bottom:718.920078px;}
.yc5{bottom:721.620072px;}
.y122{bottom:723.240074px;}
.y1b3{bottom:724.680073px;}
.y182{bottom:724.860077px;}
.y5d{bottom:730.260064px;}
.y2f{bottom:731.160049px;}
.y121{bottom:735.480079px;}
.y1ea{bottom:737.280052px;}
.y14b{bottom:738.360077px;}
.y1b2{bottom:738.900055px;}
.y8f{bottom:739.980079px;}
.yc4{bottom:742.680073px;}
.y2e{bottom:745.380066px;}
.y5c{bottom:748.980079px;}
.y181{bottom:749.160049px;}
.y1e9{bottom:751.500068px;}
.y1b1{bottom:753.120072px;}
.y120{bottom:754.020058px;}
.y2d{bottom:759.600083px;}
.y11f{bottom:759.780052px;}
.y8e{bottom:761.040081px;}
.yc3{bottom:763.920078px;}
.y5b{bottom:767.700061px;}
.y11d{bottom:772.560070px;}
.y1e8{bottom:773.100083px;}
.y2c{bottom:773.820065px;}
.y14a{bottom:776.520058px;}
.y11c{bottom:778.860077px;}
.y180{bottom:779.220051px;}
.y8d{bottom:782.280052px;}
.yc2{bottom:784.980079px;}
.y1b0{bottom:785.700061px;}
.y1e7{bottom:787.320065px;}
.y2b{bottom:788.040081px;}
.y5a{bottom:790.920078px;}
.y11a{bottom:791.100083px;}
.y2a{bottom:802.260064px;}
.y8c{bottom:803.340054px;}
.y59{bottom:805.140060px;}
.yc1{bottom:806.040081px;}
.y148{bottom:806.220051px;}
.y149{bottom:806.400055px;}
.y1e6{bottom:809.100083px;}
.y119{bottom:816.120072px;}
.y29{bottom:816.480079px;}
.y1af{bottom:817.740074px;}
.y58{bottom:819.360077px;}
.y1e5{bottom:823.320065px;}
.y8b{bottom:824.580059px;}
.yc0{bottom:827.280052px;}
.y28{bottom:830.700061px;}
.y118{bottom:834.660049px;}
.y1ae{bottom:836.100083px;}
.y1e4{bottom:837.540081px;}
.y57{bottom:838.080059px;}
.y27{bottom:844.920078px;}
.y8a{bottom:845.640060px;}
.ybf{bottom:848.340054px;}
.y147{bottom:848.700061px;}
.y56{bottom:852.300076px;}
.y117{bottom:853.200061px;}
.y26{bottom:859.140060px;}
.y1e3{bottom:859.320065px;}
.y55{bottom:861.660049px;}
.y89{bottom:866.700061px;}
.y1ad{bottom:868.320065px;}
.ybe{bottom:869.580059px;}
.y115{bottom:871.020058px;}
.y116{bottom:871.740074px;}
.y25{bottom:873.360077px;}
.y1e2{bottom:873.540081px;}
.y54{bottom:874.080059px;}
.y1ac{bottom:881.820065px;}
.y146{bottom:884.700061px;}
.y53{bottom:886.860077px;}
.y24{bottom:887.580059px;}
.y88{bottom:887.940067px;}
.y114{bottom:890.280052px;}
.ybd{bottom:890.640060px;}
.y1ab{bottom:895.140060px;}
.y52{bottom:901.080059px;}
.y23{bottom:901.800076px;}
.y210{bottom:906.840054px;}
.y113{bottom:908.820065px;}
.y87{bottom:909.000068px;}
.y1e1{bottom:909.360077px;}
.ybc{bottom:911.700061px;}
.y1aa{bottom:913.500068px;}
.y51{bottom:915.300076px;}
.y22{bottom:916.020058px;}
.y145{bottom:919.260064px;}
.y111{bottom:926.640060px;}
.y112{bottom:927.360077px;}
.y50{bottom:929.160049px;}
.y21{bottom:930.240074px;}
.y1e0{bottom:931.140060px;}
.ybb{bottom:932.940067px;}
.y20f{bottom:933.300076px;}
.y144{bottom:937.800076px;}
.y4f{bottom:940.140060px;}
.y20{bottom:945.180073px;}
.y1df{bottom:945.360077px;}
.y1a9{bottom:945.720051px;}
.y110{bottom:945.900055px;}
.y86{bottom:951.300076px;}
.yba{bottom:954.000068px;}
.y1de{bottom:959.580059px;}
.y143{bottom:961.740074px;}
.y10f{bottom:965.880066px;}
.y85{bottom:972.360077px;}
.y1f{bottom:973.260064px;}
.y20e{bottom:973.800076px;}
.y1a8{bottom:973.980079px;}
.yb9{bottom:975.240074px;}
.y10d{bottom:977.220068px;}
.y142{bottom:980.460074px;}
.y1dd{bottom:981.360060px;}
.y20d{bottom:988.020058px;}
.y84{bottom:993.600065px;}
.y1dc{bottom:995.580059px;}
.yb8{bottom:996.300058px;}
.y1e{bottom:1001.520058px;}
.y10c{bottom:1003.320065px;}
.y141{bottom:1004.400072px;}
.y1a7{bottom:1007.280069px;}
.y1db{bottom:1009.800058px;}
.y83{bottom:1014.660067px;}
.yb7{bottom:1017.540064px;}
.y20c{bottom:1024.020058px;}
.y10b{bottom:1024.380066px;}
.y1a6{bottom:1024.560070px;}
.y1da{bottom:1031.400072px;}
.y82{bottom:1035.900072px;}
.y1d{bottom:1036.080059px;}
.y1a5{bottom:1037.880066px;}
.yb6{bottom:1038.600065px;}
.y10a{bottom:1045.620072px;}
.y1a4{bottom:1051.200061px;}
.y1c{bottom:1055.880066px;}
.y81{bottom:1056.960074px;}
.yb5{bottom:1059.660067px;}
.y1d9{bottom:1059.840070px;}
.y140{bottom:1061.100065px;}
.y1a3{bottom:1064.520058px;}
.y109{bottom:1066.680073px;}
.y1b{bottom:1077.480063px;}
.y1a2{bottom:1077.840070px;}
.y80{bottom:1078.020058px;}
.yb4{bottom:1080.900072px;}
.y1d8{bottom:1081.620072px;}
.y1a1{bottom:1091.160067px;}
.y1d7{bottom:1095.840070px;}
.y7f{bottom:1099.260064px;}
.yb3{bottom:1101.960074px;}
.y1a{bottom:1106.460074px;}
.y108{bottom:1108.980063px;}
.y1a0{bottom:1109.520058px;}
.y20b{bottom:1110.060070px;}
.y1d6{bottom:1117.620072px;}
.y7e{bottom:1120.320065px;}
.yb2{bottom:1123.200061px;}
.y107{bottom:1129.680064px;}
.yd{bottom:1131.840063px;}
.y106{bottom:1141.740066px;}
.yb1{bottom:1144.260064px;}
.y20a{bottom:1146.060070px;}
.y105{bottom:1148.220068px;}
.yc{bottom:1149.660067px;}
.y1d5{bottom:1153.440067px;}
.y19f{bottom:1155.060070px;}
.y7d{bottom:1159.560070px;}
.yb0{bottom:1165.320065px;}
.y104{bottom:1166.760064px;}
.y1d4{bottom:1167.660067px;}
.y19e{bottom:1168.380066px;}
.ya{bottom:1173.780069px;}
.y9{bottom:1178.460065px;}
.y4{bottom:1187.280069px;}
.yaf{bottom:1187.640069px;}
.y7{bottom:1196.640065px;}
.y6{bottom:1201.320065px;}
.y7c{bottom:1201.500065px;}
.y3{bottom:1201.680064px;}
.yae{bottom:1202.040064px;}
.y2{bottom:1215.720068px;}
.y7b{bottom:1216.080068px;}
.yad{bottom:1216.620067px;}
.y5{bottom:1223.820065px;}
.y7a{bottom:1230.300067px;}
.y1{bottom:1230.480067px;}
.h25{height:11.339951px;}
.h27{height:12.060036px;}
.h26{height:12.240006px;}
.h16{height:13.319996px;}
.h1d{height:13.320030px;}
.h15{height:13.679970px;}
.h2a{height:17.639991px;}
.h22{height:17.639992px;}
.h2f{height:17.640026px;}
.h8{height:22.499995px;}
.h6{height:22.500000px;}
.h1b{height:24.381804px;}
.h1a{height:25.137693px;}
.h19{height:28.275494px;}
.hb{height:29.158271px;}
.h4{height:33.684460px;}
.hf{height:36.354188px;}
.h18{height:39.047115px;}
.h1c{height:40.634056px;}
.h2b{height:41.000871px;}
.h13{height:42.413283px;}
.h17{height:44.137031px;}
.h2{height:45.106083px;}
.h14{height:45.829710px;}
.h1e{height:45.926194px;}
.h3{height:46.891030px;}
.h31{height:46.939271px;}
.h32{height:47.671340px;}
.h2c{height:48.436121px;}
.h1f{height:48.538092px;}
.h11{height:50.492104px;}
.h21{height:54.038138px;}
.h30{height:56.774138px;}
.h24{height:58.069580px;}
.h23{height:58.069854px;}
.h10{height:58.148669px;}
.he{height:61.936925px;}
.h33{height:62.665265px;}
.hd{height:63.063050px;}
.h5{height:71.288330px;}
.h28{height:71.749719px;}
.h7{height:72.860867px;}
.h12{height:75.663549px;}
.h9{height:76.907760px;}
.h20{height:77.294993px;}
.hc{height:91.166947px;}
.h29{height:116.389678px;}
.h2e{height:117.109692px;}
.ha{height:121.909167px;}
.h2d{height:141.589701px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.wb{width:2.879998px;}
.w4{width:4.500000px;}
.w6{width:5.579991px;}
.w7{width:5.579999px;}
.wf{width:5.939998px;}
.w8{width:5.939999px;}
.wa{width:6.120003px;}
.w2{width:8.100014px;}
.wd{width:18.000000px;}
.w10{width:20.879997px;}
.we{width:20.880032px;}
.wc{width:41.579990px;}
.w11{width:41.579991px;}
.w5{width:76.860008px;}
.w3{width:147.600014px;}
.w9{width:174.059997px;}
.w12{width:190.980007px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:54.000000px;}
.x18{left:62.100001px;}
.x19{left:66.600001px;}
.x1d{left:69.479998px;}
.xa{left:81.719999px;}
.x10{left:86.939999px;}
.x1{left:89.640000px;}
.x2d{left:93.420001px;}
.x7{left:102.959997px;}
.x13{left:106.920001px;}
.x2e{left:119.879998px;}
.x12{left:124.379998px;}
.x22{left:131.579999px;}
.x1e{left:133.560001px;}
.x1c{left:153.719999px;}
.x30{left:160.199993px;}
.x11{left:163.800007px;}
.x17{left:181.620002px;}
.x35{left:186.296883px;}
.x15{left:191.340002px;}
.x34{left:196.382319px;}
.x16{left:213.300007px;}
.x3c{left:233.819996px;}
.x1b{left:236.159998px;}
.x8{left:244.263088px;}
.x37{left:253.080008px;}
.x1f{left:261.360008px;}
.x23{left:264.240006px;}
.xc{left:266.400003px;}
.x1a{left:272.699993px;}
.x36{left:293.940663px;}
.x2b{left:302.939999px;}
.x24{left:305.819996px;}
.x31{left:320.578028px;}
.xb{left:323.639992px;}
.x38{left:327.060001px;}
.x39{left:348.839985px;}
.xe{left:362.699993px;}
.x25{left:390.060001px;}
.x26{left:408.060001px;}
.x27{left:447.839985px;}
.x28{left:468.720017px;}
.x14{left:470.879998px;}
.x32{left:477.356116px;}
.x29{left:529.920010px;}
.x2a{left:550.800007px;}
.xd{left:552.600014px;}
.x2{left:561.600014px;}
.x3{left:584.820030px;}
.x3b{left:612.539978px;}
.x5{left:625.860008px;}
.x33{left:634.137484px;}
.x20{left:653.399987px;}
.x2c{left:667.080025px;}
.x3a{left:706.860008px;}
.x2f{left:716.399987px;}
.x9{left:723.960023px;}
.xf{left:745.379998px;}
.x21{left:768.240006px;}
.x4{left:803.340019px;}
@media print{
.vc{vertical-align:-95.359988pt;}
.v8{vertical-align:-74.879884pt;}
.vb{vertical-align:-63.360108pt;}
.v3{vertical-align:-50.559816pt;}
.v2{vertical-align:-21.120056pt;}
.v4{vertical-align:-16.000000pt;}
.v7{vertical-align:-10.880128pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.880128pt;}
.v5{vertical-align:13.439940pt;}
.v1{vertical-align:21.120056pt;}
.v9{vertical-align:23.040008pt;}
.va{vertical-align:62.719972pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.129562pt;}
.lsa{letter-spacing:0.159604pt;}
.lsb{letter-spacing:0.208906pt;}
.ls8{letter-spacing:22.677930pt;}
.ls5{letter-spacing:74.402864pt;}
.ls6{letter-spacing:372.642856pt;}
.ls9{letter-spacing:476.437938pt;}
.ls4{letter-spacing:498.722812pt;}
.ls3{letter-spacing:738.722796pt;}
.ls7{letter-spacing:916.002824pt;}
.ls0{letter-spacing:1008.769606pt;}
.wsd{word-spacing:-47.999876pt;}
.ws10{word-spacing:-40.321600pt;}
.ws2{word-spacing:-40.001598pt;}
.wsb{word-spacing:-16.995858pt;}
.ws1{word-spacing:-14.111229pt;}
.ws0{word-spacing:-13.778417pt;}
.ws4{word-spacing:-10.996254pt;}
.wsf{word-spacing:-10.650282pt;}
.wsc{word-spacing:-10.077176pt;}
.ws6{word-spacing:-9.391070pt;}
.ws11{word-spacing:-8.876491pt;}
.ws5{word-spacing:-8.830430pt;}
.ws8{word-spacing:-8.000310pt;}
.ws9{word-spacing:-7.684138pt;}
.ws3{word-spacing:-7.568929pt;}
.ws7{word-spacing:-5.886948pt;}
.wsa{word-spacing:0.000000pt;}
.wse{word-spacing:381.743015pt;}
._5a{margin-left:-5.646307pt;}
._48{margin-left:-4.548076pt;}
._7{margin-left:-2.738574pt;}
._0{margin-left:-1.329330pt;}
._1{width:0.998436pt;}
._8{width:2.383450pt;}
._5{width:3.489241pt;}
._c{width:4.400973pt;}
._6{width:5.301126pt;}
._9{width:7.075464pt;}
._2{width:8.087368pt;}
._3{width:9.538947pt;}
._10{width:10.516896pt;}
._5d{width:11.421029pt;}
._15{width:12.956676pt;}
._13{width:14.009548pt;}
._b{width:15.265850pt;}
._a{width:16.166363pt;}
._d{width:17.109758pt;}
._11{width:18.758502pt;}
._12{width:19.847826pt;}
._14{width:20.905146pt;}
._56{width:21.851746pt;}
._16{width:22.752900pt;}
._57{width:24.118074pt;}
._58{width:25.233006pt;}
._55{width:26.140554pt;}
._17{width:27.809100pt;}
._5b{width:43.668293pt;}
._5e{width:45.754667pt;}
._59{width:47.377880pt;}
._5c{width:49.031066pt;}
._37{width:60.120003pt;}
._43{width:90.725942pt;}
._e{width:121.054757pt;}
._1f{width:127.610770pt;}
._3d{width:130.745998pt;}
._35{width:132.975842pt;}
._27{width:135.119922pt;}
._34{width:141.852333pt;}
._2e{width:143.181662pt;}
._38{width:144.296584pt;}
._32{width:150.042718pt;}
._50{width:151.171770pt;}
._36{width:166.166200pt;}
._39{width:169.641342pt;}
._19{width:175.342862pt;}
._f{width:180.016957pt;}
._1b{width:187.006658pt;}
._33{width:191.552107pt;}
._1e{width:200.385717pt;}
._25{width:201.757928pt;}
._3e{width:207.161010pt;}
._2c{width:209.219326pt;}
._3a{width:212.586054pt;}
._2f{width:216.509198pt;}
._2a{width:224.485176pt;}
._2d{width:225.771624pt;}
._4c{width:228.688330pt;}
._18{width:231.131824pt;}
._29{width:234.865506pt;}
._23{width:248.584635pt;}
._4f{width:250.385662pt;}
._2b{width:252.658387pt;}
._53{width:261.163074pt;}
._26{width:264.788717pt;}
._1a{width:269.382211pt;}
._44{width:270.511716pt;}
._49{width:272.083752pt;}
._4d{width:277.401070pt;}
._42{width:280.917362pt;}
._20{width:286.406206pt;}
._28{width:287.387320pt;}
._24{width:288.593168pt;}
._30{width:291.208946pt;}
._22{width:292.838446pt;}
._3b{width:295.754395pt;}
._3c{width:298.841870pt;}
._40{width:299.782190pt;}
._4b{width:305.089806pt;}
._1d{width:322.941330pt;}
._4a{width:332.117992pt;}
._51{width:335.133834pt;}
._47{width:347.555368pt;}
._21{width:367.359526pt;}
._1c{width:368.567352pt;}
._31{width:373.970434pt;}
._3f{width:403.472974pt;}
._41{width:413.764558pt;}
._45{width:437.326871pt;}
._4e{width:642.323486pt;}
._52{width:663.850050pt;}
._54{width:707.045950pt;}
._46{width:750.856816pt;}
._4{width:1063.892496pt;}
.fsd{font-size:24.320960pt;}
.fsc{font-size:26.881040pt;}
.fs13{font-size:28.409809pt;}
.fse{font-size:32.001240pt;}
.fs8{font-size:34.561320pt;}
.fs5{font-size:37.119590pt;}
.fsb{font-size:37.121440pt;}
.fsa{font-size:40.321600pt;}
.fs0{font-size:42.881600pt;}
.fsf{font-size:45.320347pt;}
.fs12{font-size:47.999876pt;}
.fs9{font-size:48.002000pt;}
.fs11{font-size:50.562000pt;}
.fs2{font-size:53.122000pt;}
.fs14{font-size:56.322000pt;}
.fs7{font-size:58.882400pt;}
.fs1{font-size:66.562400pt;}
.fs3{font-size:69.122804pt;}
.fs10{font-size:72.322800pt;}
.fs6{font-size:85.123200pt;}
.fs4{font-size:160.006392pt;}
.y0{bottom:0.000000pt;}
.yfd{bottom:0.640015pt;}
.yf8{bottom:0.799988pt;}
.y79{bottom:2.400025pt;}
.y4e{bottom:2.559998pt;}
.yb{bottom:4.159996pt;}
.y8{bottom:4.160000pt;}
.y11b{bottom:5.759979pt;}
.y10e{bottom:5.759994pt;}
.y11e{bottom:5.760009pt;}
.ye6{bottom:5.760010pt;}
.y19{bottom:13.120118pt;}
.y18{bottom:25.440064pt;}
.y17{bottom:38.240113pt;}
.y16{bottom:38.252417pt;}
.y15{bottom:48.974302pt;}
.y14{bottom:59.690657pt;}
.y13{bottom:70.409777pt;}
.yf{bottom:74.080079pt;}
.y12{bottom:81.131662pt;}
.y11{bottom:91.853659pt;}
.y17f{bottom:96.640015pt;}
.y103{bottom:98.400025pt;}
.y209{bottom:100.320069pt;}
.y10{bottom:102.731415pt;}
.y167{bottom:103.680054pt;}
.y132{bottom:103.840088pt;}
.y19d{bottom:104.160035pt;}
.ye1{bottom:107.520081pt;}
.yac{bottom:112.960083pt;}
.ye{bottom:113.600037pt;}
.y102{bottom:114.880066pt;}
.y17e{bottom:115.520081pt;}
.y19c{bottom:116.000061pt;}
.y1d3{bottom:118.880066pt;}
.y166{bottom:122.400086pt;}
.y131{bottom:122.560059pt;}
.y208{bottom:125.600037pt;}
.ye0{bottom:126.400086pt;}
.y19b{bottom:127.840088pt;}
.y101{bottom:131.360047pt;}
.y1d2{bottom:131.520081pt;}
.yab{bottom:131.840088pt;}
.y17d{bottom:134.240052pt;}
.y207{bottom:138.240052pt;}
.y19a{bottom:139.680054pt;}
.y165{bottom:141.120057pt;}
.y130{bottom:141.440064pt;}
.ydf{bottom:145.120057pt;}
.y100{bottom:147.840088pt;}
.yaa{bottom:150.560059pt;}
.y1d1{bottom:150.880066pt;}
.y17c{bottom:152.960083pt;}
.y199{bottom:156.000061pt;}
.y206{bottom:157.440064pt;}
.y164{bottom:160.000061pt;}
.y12f{bottom:160.160035pt;}
.yde{bottom:163.840088pt;}
.yff{bottom:164.320069pt;}
.ya9{bottom:169.280030pt;}
.y205{bottom:170.080079pt;}
.y1d0{bottom:170.240052pt;}
.y17b{bottom:171.840088pt;}
.y12e{bottom:172.160035pt;}
.y78{bottom:174.720032pt;}
.yfc{bottom:175.040039pt;}
.y163{bottom:178.720032pt;}
.yfe{bottom:180.800049pt;}
.yfb{bottom:181.440064pt;}
.ydd{bottom:182.720032pt;}
.y1cf{bottom:182.880066pt;}
.y13f{bottom:184.161596pt;}
.y198{bottom:184.640076pt;}
.ya8{bottom:188.160035pt;}
.y77{bottom:188.960083pt;}
.y204{bottom:189.440064pt;}
.y17a{bottom:190.560059pt;}
.y1ce{bottom:195.520081pt;}
.y197{bottom:196.480042pt;}
.yfa{bottom:197.280030pt;}
.y162{bottom:197.600037pt;}
.y136{bottom:199.681533pt;}
.ydc{bottom:201.440064pt;}
.y203{bottom:202.080079pt;}
.ya7{bottom:206.880066pt;}
.yf7{bottom:208.000061pt;}
.y196{bottom:208.320069pt;}
.y76{bottom:208.480042pt;}
.y179{bottom:209.440064pt;}
.yf9{bottom:213.760071pt;}
.yf6{bottom:214.560059pt;}
.y1cd{bottom:214.720032pt;}
.y161{bottom:216.320069pt;}
.y75{bottom:219.840088pt;}
.ydb{bottom:220.320069pt;}
.y202{bottom:221.440064pt;}
.ya6{bottom:225.760071pt;}
.y137{bottom:225.763052pt;}
.y1cc{bottom:227.360047pt;}
.y178{bottom:228.160035pt;}
.yf5{bottom:230.240052pt;}
.y201{bottom:234.080079pt;}
.y160{bottom:235.040039pt;}
.y4d{bottom:237.760071pt;}
.yda{bottom:239.040039pt;}
.y74{bottom:239.360047pt;}
.y1cb{bottom:240.000061pt;}
.y4c{bottom:240.320069pt;}
.yf4{bottom:240.960083pt;}
.ya5{bottom:244.480042pt;}
.y195{bottom:245.440064pt;}
.yf3{bottom:246.720032pt;}
.y177{bottom:246.880066pt;}
.y138{bottom:251.683353pt;}
.y15f{bottom:253.920044pt;}
.y4b{bottom:256.160035pt;}
.y194{bottom:257.280030pt;}
.yd9{bottom:257.760071pt;}
.y73{bottom:258.720032pt;}
.y1ca{bottom:259.360047pt;}
.ya4{bottom:263.200074pt;}
.yf2{bottom:264.320069pt;}
.y176{bottom:265.760071pt;}
.y200{bottom:265.920044pt;}
.y193{bottom:269.120057pt;}
.y133{bottom:270.718978pt;}
.y1c9{bottom:272.000061pt;}
.y15e{bottom:272.640076pt;}
.yd8{bottom:276.640076pt;}
.y139{bottom:277.600078pt;}
.y72{bottom:278.080079pt;}
.y1ff{bottom:278.560059pt;}
.y192{bottom:280.960083pt;}
.ya3{bottom:282.080079pt;}
.yf1{bottom:283.040039pt;}
.y4a{bottom:284.480042pt;}
.y1c8{bottom:284.640076pt;}
.y1fe{bottom:291.200074pt;}
.y15d{bottom:291.520081pt;}
.yd7{bottom:295.360047pt;}
.y49{bottom:297.120057pt;}
.y71{bottom:297.600037pt;}
.ya2{bottom:300.800049pt;}
.yf0{bottom:301.920044pt;}
.y175{bottom:303.360047pt;}
.y13a{bottom:303.520379pt;}
.y1c7{bottom:304.000061pt;}
.y15c{bottom:310.240052pt;}
.y191{bottom:310.560059pt;}
.y48{bottom:313.440064pt;}
.yd6{bottom:314.240052pt;}
.y1c6{bottom:316.640076pt;}
.y70{bottom:316.960083pt;}
.ya1{bottom:319.680054pt;}
.yef{bottom:320.640076pt;}
.y174{bottom:322.080079pt;}
.y1fd{bottom:323.200074pt;}
.y15b{bottom:328.960083pt;}
.y47{bottom:329.120057pt;}
.y1c5{bottom:329.280030pt;}
.y13b{bottom:329.444399pt;}
.y135{bottom:330.403912pt;}
.yd5{bottom:332.960083pt;}
.y6f{bottom:336.320069pt;}
.ya0{bottom:338.400086pt;}
.y190{bottom:340.320069pt;}
.y173{bottom:340.800049pt;}
.y46{bottom:341.760071pt;}
.y1fc{bottom:342.560059pt;}
.y15a{bottom:347.840088pt;}
.y1c4{bottom:348.480042pt;}
.yd4{bottom:351.680054pt;}
.y45{bottom:354.400086pt;}
.y13c{bottom:355.522199pt;}
.y6e{bottom:355.840088pt;}
.y9f{bottom:357.120057pt;}
.yee{bottom:358.240052pt;}
.y172{bottom:359.680054pt;}
.y1c3{bottom:361.120057pt;}
.y1fb{bottom:361.760071pt;}
.y159{bottom:366.560059pt;}
.y44{bottom:367.040039pt;}
.yd3{bottom:370.560059pt;}
.y1fa{bottom:374.400086pt;}
.y6d{bottom:375.200074pt;}
.y9e{bottom:376.000061pt;}
.yed{bottom:376.640076pt;}
.y18f{bottom:377.760071pt;}
.y171{bottom:378.400086pt;}
.y43{bottom:379.680054pt;}
.y1c2{bottom:380.480042pt;}
.y13d{bottom:381.446219pt;}
.y158{bottom:385.440064pt;}
.y134{bottom:385.921348pt;}
.y1f9{bottom:387.040039pt;}
.yd2{bottom:389.280030pt;}
.y42{bottom:392.320069pt;}
.y1c1{bottom:393.120057pt;}
.y9d{bottom:394.720032pt;}
.y6c{bottom:394.880066pt;}
.y18e{bottom:395.360047pt;}
.y170{bottom:397.280030pt;}
.yec{bottom:398.720032pt;}
.y157{bottom:404.160035pt;}
.y41{bottom:404.960083pt;}
.y1f8{bottom:406.400086pt;}
.y18d{bottom:407.200074pt;}
.y13e{bottom:407.359224pt;}
.yd1{bottom:408.160035pt;}
.y1c0{bottom:412.480042pt;}
.y9c{bottom:413.600037pt;}
.y6b{bottom:414.720032pt;}
.y16f{bottom:416.000061pt;}
.y40{bottom:417.600037pt;}
.y18c{bottom:419.040039pt;}
.yeb{bottom:420.640076pt;}
.y156{bottom:422.880066pt;}
.y1bf{bottom:425.120057pt;}
.yd0{bottom:426.880066pt;}
.y3f{bottom:430.240052pt;}
.y18b{bottom:430.880066pt;}
.y1f7{bottom:431.680054pt;}
.y9b{bottom:432.320069pt;}
.y16e{bottom:434.720032pt;}
.y6a{bottom:434.880066pt;}
.y1be{bottom:437.760071pt;}
.y155{bottom:441.760071pt;}
.yea{bottom:442.720032pt;}
.y3e{bottom:442.880066pt;}
.ycf{bottom:445.600037pt;}
.y9a{bottom:451.040039pt;}
.y16d{bottom:453.600037pt;}
.y18a{bottom:454.560059pt;}
.y69{bottom:455.040039pt;}
.y3d{bottom:455.520081pt;}
.y1bd{bottom:456.960083pt;}
.y154{bottom:460.480042pt;}
.y1f6{bottom:463.680054pt;}
.yce{bottom:464.480042pt;}
.ye9{bottom:464.640076pt;}
.y189{bottom:466.400086pt;}
.y12d{bottom:467.040039pt;}
.y3c{bottom:468.160035pt;}
.y1bc{bottom:469.600037pt;}
.y99{bottom:469.920044pt;}
.y16c{bottom:472.320069pt;}
.y68{bottom:474.560059pt;}
.y1f5{bottom:476.320069pt;}
.y188{bottom:478.240052pt;}
.y153{bottom:479.360047pt;}
.y3b{bottom:480.800049pt;}
.ycd{bottom:483.200074pt;}
.y12c{bottom:485.760071pt;}
.ye8{bottom:486.720032pt;}
.y98{bottom:488.640076pt;}
.y1bb{bottom:488.960083pt;}
.y16b{bottom:491.200074pt;}
.y67{bottom:491.680054pt;}
.y3a{bottom:493.440064pt;}
.y1f4{bottom:495.520081pt;}
.y152{bottom:498.080079pt;}
.y1ba{bottom:501.600037pt;}
.ycc{bottom:502.080079pt;}
.y12b{bottom:504.480042pt;}
.y39{bottom:506.080079pt;}
.y66{bottom:507.200074pt;}
.y97{bottom:507.520081pt;}
.y1f3{bottom:508.160035pt;}
.ye5{bottom:508.480042pt;}
.ye7{bottom:508.640076pt;}
.y16a{bottom:509.920044pt;}
.y1b9{bottom:514.240052pt;}
.y151{bottom:516.800049pt;}
.y38{bottom:518.720032pt;}
.ycb{bottom:520.800049pt;}
.y96{bottom:526.240052pt;}
.y1f2{bottom:527.520081pt;}
.y169{bottom:528.640076pt;}
.y37{bottom:531.360047pt;}
.ye4{bottom:531.680054pt;}
.y1b8{bottom:533.600037pt;}
.y150{bottom:535.680054pt;}
.y65{bottom:536.320069pt;}
.yca{bottom:539.520081pt;}
.y1f1{bottom:540.160035pt;}
.y12a{bottom:542.080079pt;}
.y95{bottom:544.960083pt;}
.y36{bottom:545.760071pt;}
.y1b7{bottom:546.240052pt;}
.y64{bottom:547.520081pt;}
.y187{bottom:550.400086pt;}
.ye3{bottom:553.280030pt;}
.y14f{bottom:554.400086pt;}
.y63{bottom:559.200074pt;}
.y1f0{bottom:559.520081pt;}
.y129{bottom:560.480042pt;}
.yc9{bottom:561.120057pt;}
.y94{bottom:563.840088pt;}
.y35{bottom:565.600037pt;}
.y168{bottom:566.240052pt;}
.y186{bottom:569.280030pt;}
.y62{bottom:570.560059pt;}
.y1ef{bottom:572.160035pt;}
.y1b6{bottom:572.480042pt;}
.y14e{bottom:573.280030pt;}
.y127{bottom:576.480042pt;}
.y128{bottom:576.960083pt;}
.ye2{bottom:580.000061pt;}
.y34{bottom:580.160035pt;}
.y93{bottom:582.560059pt;}
.yc8{bottom:585.120057pt;}
.y185{bottom:588.000061pt;}
.y61{bottom:590.560059pt;}
.y1ee{bottom:591.360047pt;}
.y126{bottom:593.440064pt;}
.y33{bottom:596.320069pt;}
.y92{bottom:601.440064pt;}
.y60{bottom:603.200074pt;}
.yc7{bottom:603.840088pt;}
.y1ed{bottom:604.000061pt;}
.y1b5{bottom:605.600037pt;}
.y184{bottom:606.880066pt;}
.y125{bottom:609.920044pt;}
.y32{bottom:612.000061pt;}
.y14d{bottom:618.720063pt;}
.y91{bottom:620.160065pt;}
.yc6{bottom:622.560059pt;}
.y1ec{bottom:623.360047pt;}
.y5f{bottom:623.840058pt;}
.y31{bottom:624.640046pt;}
.y183{bottom:625.600068pt;}
.y123{bottom:625.920044pt;}
.y124{bottom:626.400055pt;}
.y1b4{bottom:631.520050pt;}
.y1eb{bottom:636.000061pt;}
.y5e{bottom:636.480072pt;}
.y30{bottom:637.280060pt;}
.y14c{bottom:637.440064pt;}
.y90{bottom:639.040070pt;}
.yc5{bottom:641.440064pt;}
.y122{bottom:642.880066pt;}
.y1b3{bottom:644.160065pt;}
.y182{bottom:644.320069pt;}
.y5d{bottom:649.120057pt;}
.y2f{bottom:649.920044pt;}
.y121{bottom:653.760071pt;}
.y1ea{bottom:655.360047pt;}
.y14b{bottom:656.320069pt;}
.y1b2{bottom:656.800049pt;}
.y8f{bottom:657.760071pt;}
.yc4{bottom:660.160065pt;}
.y2e{bottom:662.560059pt;}
.y5c{bottom:665.760071pt;}
.y181{bottom:665.920044pt;}
.y1e9{bottom:668.000061pt;}
.y1b1{bottom:669.440064pt;}
.y120{bottom:670.240052pt;}
.y2d{bottom:675.200074pt;}
.y11f{bottom:675.360047pt;}
.y8e{bottom:676.480072pt;}
.yc3{bottom:679.040070pt;}
.y5b{bottom:682.400055pt;}
.y11d{bottom:686.720063pt;}
.y1e8{bottom:687.200074pt;}
.y2c{bottom:687.840058pt;}
.y14a{bottom:690.240052pt;}
.y11c{bottom:692.320069pt;}
.y180{bottom:692.640046pt;}
.y8d{bottom:695.360047pt;}
.yc2{bottom:697.760071pt;}
.y1b0{bottom:698.400055pt;}
.y1e7{bottom:699.840058pt;}
.y2b{bottom:700.480072pt;}
.y5a{bottom:703.040070pt;}
.y11a{bottom:703.200074pt;}
.y2a{bottom:713.120057pt;}
.y8c{bottom:714.080048pt;}
.y59{bottom:715.680054pt;}
.yc1{bottom:716.480072pt;}
.y148{bottom:716.640046pt;}
.y149{bottom:716.800049pt;}
.y1e6{bottom:719.200074pt;}
.y119{bottom:725.440064pt;}
.y29{bottom:725.760071pt;}
.y1af{bottom:726.880066pt;}
.y58{bottom:728.320069pt;}
.y1e5{bottom:731.840058pt;}
.y8b{bottom:732.960053pt;}
.yc0{bottom:735.360047pt;}
.y28{bottom:738.400055pt;}
.y118{bottom:741.920044pt;}
.y1ae{bottom:743.200074pt;}
.y1e4{bottom:744.480072pt;}
.y57{bottom:744.960053pt;}
.y27{bottom:751.040070pt;}
.y8a{bottom:751.680054pt;}
.ybf{bottom:754.080048pt;}
.y147{bottom:754.400055pt;}
.y56{bottom:757.600068pt;}
.y117{bottom:758.400055pt;}
.y26{bottom:763.680054pt;}
.y1e3{bottom:763.840058pt;}
.y55{bottom:765.920044pt;}
.y89{bottom:770.400055pt;}
.y1ad{bottom:771.840058pt;}
.ybe{bottom:772.960053pt;}
.y115{bottom:774.240052pt;}
.y116{bottom:774.880066pt;}
.y25{bottom:776.320069pt;}
.y1e2{bottom:776.480072pt;}
.y54{bottom:776.960053pt;}
.y1ac{bottom:783.840058pt;}
.y146{bottom:786.400055pt;}
.y53{bottom:788.320069pt;}
.y24{bottom:788.960053pt;}
.y88{bottom:789.280060pt;}
.y114{bottom:791.360047pt;}
.ybd{bottom:791.680054pt;}
.y1ab{bottom:795.680054pt;}
.y52{bottom:800.960053pt;}
.y23{bottom:801.600068pt;}
.y210{bottom:806.080048pt;}
.y113{bottom:807.840058pt;}
.y87{bottom:808.000061pt;}
.y1e1{bottom:808.320069pt;}
.ybc{bottom:810.400055pt;}
.y1aa{bottom:812.000061pt;}
.y51{bottom:813.600068pt;}
.y22{bottom:814.240052pt;}
.y145{bottom:817.120057pt;}
.y111{bottom:823.680054pt;}
.y112{bottom:824.320069pt;}
.y50{bottom:825.920044pt;}
.y21{bottom:826.880066pt;}
.y1e0{bottom:827.680054pt;}
.ybb{bottom:829.280060pt;}
.y20f{bottom:829.600068pt;}
.y144{bottom:833.600068pt;}
.y4f{bottom:835.680054pt;}
.y20{bottom:840.160065pt;}
.y1df{bottom:840.320069pt;}
.y1a9{bottom:840.640046pt;}
.y110{bottom:840.800049pt;}
.y86{bottom:845.600068pt;}
.yba{bottom:848.000061pt;}
.y1de{bottom:852.960053pt;}
.y143{bottom:854.880066pt;}
.y10f{bottom:858.560059pt;}
.y85{bottom:864.320069pt;}
.y1f{bottom:865.120057pt;}
.y20e{bottom:865.600068pt;}
.y1a8{bottom:865.760071pt;}
.yb9{bottom:866.880066pt;}
.y10d{bottom:868.640061pt;}
.y142{bottom:871.520066pt;}
.y1dd{bottom:872.320054pt;}
.y20d{bottom:878.240052pt;}
.y84{bottom:883.200058pt;}
.y1dc{bottom:884.960053pt;}
.yb8{bottom:885.600052pt;}
.y1e{bottom:890.240052pt;}
.y10c{bottom:891.840058pt;}
.y141{bottom:892.800064pt;}
.y1a7{bottom:895.360062pt;}
.y1db{bottom:897.600052pt;}
.y83{bottom:901.920060pt;}
.yb7{bottom:904.480057pt;}
.y20c{bottom:910.240052pt;}
.y10b{bottom:910.560059pt;}
.y1a6{bottom:910.720063pt;}
.y1da{bottom:916.800064pt;}
.y82{bottom:920.800064pt;}
.y1d{bottom:920.960053pt;}
.y1a5{bottom:922.560059pt;}
.yb6{bottom:923.200058pt;}
.y10a{bottom:929.440064pt;}
.y1a4{bottom:934.400055pt;}
.y1c{bottom:938.560059pt;}
.y81{bottom:939.520066pt;}
.yb5{bottom:941.920060pt;}
.y1d9{bottom:942.080063pt;}
.y140{bottom:943.200058pt;}
.y1a3{bottom:946.240052pt;}
.y109{bottom:948.160065pt;}
.y1b{bottom:957.760056pt;}
.y1a2{bottom:958.080063pt;}
.y80{bottom:958.240052pt;}
.yb4{bottom:960.800064pt;}
.y1d8{bottom:961.440064pt;}
.y1a1{bottom:969.920060pt;}
.y1d7{bottom:974.080063pt;}
.y7f{bottom:977.120057pt;}
.yb3{bottom:979.520066pt;}
.y1a{bottom:983.520066pt;}
.y108{bottom:985.760056pt;}
.y1a0{bottom:986.240052pt;}
.y20b{bottom:986.720063pt;}
.y1d6{bottom:993.440064pt;}
.y7e{bottom:995.840058pt;}
.yb2{bottom:998.400055pt;}
.y107{bottom:1004.160057pt;}
.yd{bottom:1006.080056pt;}
.y106{bottom:1014.880059pt;}
.yb1{bottom:1017.120057pt;}
.y20a{bottom:1018.720063pt;}
.y105{bottom:1020.640061pt;}
.yc{bottom:1021.920060pt;}
.y1d5{bottom:1025.280060pt;}
.y19f{bottom:1026.720063pt;}
.y7d{bottom:1030.720063pt;}
.yb0{bottom:1035.840058pt;}
.y104{bottom:1037.120057pt;}
.y1d4{bottom:1037.920060pt;}
.y19e{bottom:1038.560059pt;}
.ya{bottom:1043.360062pt;}
.y9{bottom:1047.520058pt;}
.y4{bottom:1055.360062pt;}
.yaf{bottom:1055.680062pt;}
.y7{bottom:1063.680058pt;}
.y6{bottom:1067.840058pt;}
.y7c{bottom:1068.000058pt;}
.y3{bottom:1068.160057pt;}
.yae{bottom:1068.480057pt;}
.y2{bottom:1080.640061pt;}
.y7b{bottom:1080.960061pt;}
.yad{bottom:1081.440060pt;}
.y5{bottom:1087.840058pt;}
.y7a{bottom:1093.600060pt;}
.y1{bottom:1093.760060pt;}
.h25{height:10.079956pt;}
.h27{height:10.720032pt;}
.h26{height:10.880005pt;}
.h16{height:11.839996pt;}
.h1d{height:11.840027pt;}
.h15{height:12.159973pt;}
.h2a{height:15.679992pt;}
.h22{height:15.679993pt;}
.h2f{height:15.680023pt;}
.h8{height:19.999996pt;}
.h6{height:20.000000pt;}
.h1b{height:21.672715pt;}
.h1a{height:22.344616pt;}
.h19{height:25.133772pt;}
.hb{height:25.918463pt;}
.h4{height:29.941742pt;}
.hf{height:32.314834pt;}
.h18{height:34.708546pt;}
.h1c{height:36.119161pt;}
.h2b{height:36.445218pt;}
.h13{height:37.700696pt;}
.h17{height:39.232917pt;}
.h2{height:40.094296pt;}
.h14{height:40.737520pt;}
.h1e{height:40.823283pt;}
.h3{height:41.680915pt;}
.h31{height:41.723797pt;}
.h32{height:42.374525pt;}
.h2c{height:43.054330pt;}
.h1f{height:43.144971pt;}
.h11{height:44.881870pt;}
.h21{height:48.033900pt;}
.h30{height:50.465900pt;}
.h24{height:51.617404pt;}
.h23{height:51.617648pt;}
.h10{height:51.687706pt;}
.he{height:55.055044pt;}
.h33{height:55.702458pt;}
.hd{height:56.056045pt;}
.h5{height:63.367405pt;}
.h28{height:63.777528pt;}
.h7{height:64.765215pt;}
.h12{height:67.256488pt;}
.h9{height:68.362453pt;}
.h20{height:68.706660pt;}
.hc{height:81.037286pt;}
.h29{height:103.457492pt;}
.h2e{height:104.097504pt;}
.ha{height:108.363704pt;}
.h2d{height:125.857512pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.wb{width:2.559998pt;}
.w4{width:4.000000pt;}
.w6{width:4.959992pt;}
.w7{width:4.959999pt;}
.wf{width:5.279998pt;}
.w8{width:5.279999pt;}
.wa{width:5.440003pt;}
.w2{width:7.200012pt;}
.wd{width:16.000000pt;}
.w10{width:18.559997pt;}
.we{width:18.560028pt;}
.wc{width:36.959991pt;}
.w11{width:36.959992pt;}
.w5{width:68.320007pt;}
.w3{width:131.200012pt;}
.w9{width:154.719997pt;}
.w12{width:169.760006pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:48.000000pt;}
.x18{left:55.200001pt;}
.x19{left:59.200001pt;}
.x1d{left:61.759998pt;}
.xa{left:72.639999pt;}
.x10{left:77.279999pt;}
.x1{left:79.680000pt;}
.x2d{left:83.040001pt;}
.x7{left:91.519997pt;}
.x13{left:95.040001pt;}
.x2e{left:106.559998pt;}
.x12{left:110.559998pt;}
.x22{left:116.959999pt;}
.x1e{left:118.720001pt;}
.x1c{left:136.639999pt;}
.x30{left:142.399994pt;}
.x11{left:145.600006pt;}
.x17{left:161.440002pt;}
.x35{left:165.597229pt;}
.x15{left:170.080002pt;}
.x34{left:174.562061pt;}
.x16{left:189.600006pt;}
.x3c{left:207.839996pt;}
.x1b{left:209.919998pt;}
.x8{left:217.122745pt;}
.x37{left:224.960007pt;}
.x1f{left:232.320007pt;}
.x23{left:234.880005pt;}
.xc{left:236.800003pt;}
.x1a{left:242.399994pt;}
.x36{left:261.280589pt;}
.x2b{left:269.279999pt;}
.x24{left:271.839996pt;}
.x31{left:284.958247pt;}
.xb{left:287.679993pt;}
.x38{left:290.720001pt;}
.x39{left:310.079987pt;}
.xe{left:322.399994pt;}
.x25{left:346.720001pt;}
.x26{left:362.720001pt;}
.x27{left:398.079987pt;}
.x28{left:416.640015pt;}
.x14{left:418.559998pt;}
.x32{left:424.316548pt;}
.x29{left:471.040009pt;}
.x2a{left:489.600006pt;}
.xd{left:491.200012pt;}
.x2{left:499.200012pt;}
.x3{left:519.840027pt;}
.x3b{left:544.479980pt;}
.x5{left:556.320007pt;}
.x33{left:563.677763pt;}
.x20{left:580.799988pt;}
.x2c{left:592.960022pt;}
.x3a{left:628.320007pt;}
.x2f{left:636.799988pt;}
.x9{left:643.520020pt;}
.xf{left:662.559998pt;}
.x21{left:682.880005pt;}
.x4{left:714.080017pt;}
}




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