
    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_3b080665a9847eb4165c2c52.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_ce6875fd8c1d7dbfc541ca24.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_7385ecdfa14188914af5c871.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_4409182a4225b82998e5afa8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.066406;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_715ab77cc4e45ab614668474.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_99df6e86f4565cdade8a0984.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934570;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-28.079955px;}
.v6{vertical-align:-22.319996px;}
.v3{vertical-align:-19.439968px;}
.v9{vertical-align:-13.680036px;}
.vc{vertical-align:-10.080090px;}
.v1{vertical-align:-5.040013px;}
.v5{vertical-align:-2.880068px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:2.160050px;}
.ve{vertical-align:5.759856px;}
.v4{vertical-align:19.439892px;}
.v2{vertical-align:22.320027px;}
.v8{vertical-align:28.079960px;}
.vb{vertical-align:30.240009px;}
.vd{vertical-align:33.839951px;}
.va{vertical-align:39.600085px;}
.ls9{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.037834px;}
.ls45{letter-spacing:0.046870px;}
.ls30{letter-spacing:0.054589px;}
.ls8{letter-spacing:0.054724px;}
.ls2c{letter-spacing:0.054863px;}
.ls31{letter-spacing:0.065241px;}
.ls33{letter-spacing:0.065308px;}
.ls36{letter-spacing:0.065380px;}
.ls32{letter-spacing:0.113234px;}
.ls34{letter-spacing:0.113238px;}
.ls1b{letter-spacing:0.116878px;}
.ls19{letter-spacing:0.120521px;}
.ls10{letter-spacing:0.138460px;}
.ls0{letter-spacing:0.138595px;}
.ls11{letter-spacing:0.138599px;}
.lse{letter-spacing:0.138662px;}
.lsb{letter-spacing:0.138667px;}
.ls16{letter-spacing:0.138730px;}
.lsd{letter-spacing:0.138734px;}
.ls2{letter-spacing:0.138869px;}
.ls12{letter-spacing:0.220556px;}
.ls14{letter-spacing:0.220696px;}
.ls2b{letter-spacing:0.222230px;}
.ls37{letter-spacing:0.222235px;}
.ls38{letter-spacing:0.222298px;}
.ls29{letter-spacing:0.222302px;}
.ls2a{letter-spacing:0.222370px;}
.ls1e{letter-spacing:0.243675px;}
.ls1f{letter-spacing:0.243679px;}
.ls20{letter-spacing:0.243747px;}
.ls40{letter-spacing:0.256941px;}
.ls5{letter-spacing:0.262016px;}
.ls21{letter-spacing:0.262151px;}
.ls7{letter-spacing:0.262155px;}
.ls3{letter-spacing:0.262290px;}
.ls2e{letter-spacing:0.322744px;}
.ls6{letter-spacing:0.322883px;}
.ls23{letter-spacing:0.322888px;}
.ls3a{letter-spacing:0.334804px;}
.ls3c{letter-spacing:0.334939px;}
.ls2d{letter-spacing:0.414972px;}
.ls1{letter-spacing:0.414977px;}
.ls43{letter-spacing:0.429464px;}
.ls44{letter-spacing:0.429599px;}
.ls35{letter-spacing:0.471573px;}
.ls13{letter-spacing:0.542054px;}
.ls26{letter-spacing:0.550466px;}
.ls1c{letter-spacing:0.568172px;}
.lsf{letter-spacing:0.640679px;}
.lsc{letter-spacing:0.640818px;}
.ls27{letter-spacing:0.696839px;}
.ls17{letter-spacing:0.971876px;}
.ls28{letter-spacing:0.982169px;}
.ls25{letter-spacing:0.982173px;}
.ls22{letter-spacing:1.042762px;}
.ls4{letter-spacing:1.042766px;}
.ls3f{letter-spacing:1.042834px;}
.ls24{letter-spacing:1.042901px;}
.ls39{letter-spacing:3.168537px;}
.ls3b{letter-spacing:3.234741px;}
.ls3e{letter-spacing:4.674773px;}
.ls3d{letter-spacing:5.394516px;}
.ls1d{letter-spacing:5.613304px;}
.ls15{letter-spacing:8.493300px;}
.ls1a{letter-spacing:9.367190px;}
.ls42{letter-spacing:12.091279px;}
.ls2f{letter-spacing:12.811297px;}
.ls41{letter-spacing:17.568596px;}
.ls18{letter-spacing:21.671915px;}
.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;}
}
.ws6{word-spacing:-52.295744px;}
.ws7{word-spacing:-47.961900px;}
.ws8{word-spacing:-39.180060px;}
.ws1{word-spacing:-15.266696px;}
.wsd{word-spacing:-14.045380px;}
.ws9{word-spacing:-14.033845px;}
.wsf{word-spacing:-12.718283px;}
.ws3{word-spacing:-12.671413px;}
.wsb{word-spacing:-12.536923px;}
.ws5{word-spacing:-10.266515px;}
.ws0{word-spacing:-10.228681px;}
.wsa{word-spacing:-9.355930px;}
.wse{word-spacing:-8.854694px;}
.ws2{word-spacing:-8.244026px;}
.wsc{word-spacing:-7.858983px;}
.ws4{word-spacing:0.000000px;}
._45{margin-left:-4.508082px;}
._b{margin-left:-3.472897px;}
._8{margin-left:-2.198266px;}
._1{margin-left:-1.061565px;}
._0{width:1.021193px;}
._2{width:2.568812px;}
._7{width:4.206241px;}
._5{width:5.402859px;}
._6{width:6.450252px;}
._3{width:7.734564px;}
._4{width:8.988626px;}
._d{width:10.451190px;}
._c{width:11.657163px;}
._e{width:12.861015px;}
._14{width:14.124746px;}
._f{width:16.792679px;}
._17{width:18.201502px;}
._12{width:19.725111px;}
._10{width:21.140795px;}
._11{width:22.449542px;}
._22{width:23.742134px;}
._a{width:24.843407px;}
._9{width:26.204274px;}
._18{width:27.483799px;}
._1d{width:28.805280px;}
._13{width:30.056571px;}
._23{width:31.408133px;}
._46{width:33.271983px;}
._1f{width:35.300803px;}
._1e{width:36.322259px;}
._1c{width:37.557385px;}
._1b{width:38.712958px;}
._16{width:43.380362px;}
._15{width:44.449051px;}
._20{width:48.873163px;}
._21{width:50.462477px;}
._31{width:71.052691px;}
._1a{width:79.408000px;}
._19{width:80.624069px;}
._27{width:104.349322px;}
._48{width:111.510451px;}
._41{width:125.269762px;}
._33{width:132.423194px;}
._40{width:135.481813px;}
._47{width:139.497682px;}
._32{width:143.645583px;}
._26{width:158.854889px;}
._37{width:172.456211px;}
._3a{width:184.309735px;}
._34{width:185.438487px;}
._2e{width:206.578833px;}
._2a{width:218.792043px;}
._30{width:237.265583px;}
._44{width:238.378294px;}
._43{width:239.496296px;}
._36{width:281.090007px;}
._3d{width:288.079606px;}
._3c{width:299.806817px;}
._3f{width:313.377817px;}
._25{width:314.877927px;}
._29{width:326.324012px;}
._28{width:334.342803px;}
._3e{width:343.123035px;}
._39{width:354.638092px;}
._3b{width:366.051124px;}
._42{width:367.834872px;}
._2f{width:387.756438px;}
._2d{width:405.999746px;}
._2c{width:418.672448px;}
._38{width:420.541791px;}
._2b{width:428.030278px;}
._35{width:434.480950px;}
._24{width:559.884153px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:28.371780px;}
.fs8{font-size:33.775920px;}
.fs3{font-size:36.477990px;}
.fs6{font-size:39.180060px;}
.fs2{font-size:45.259650px;}
.fs5{font-size:47.961900px;}
.fs7{font-size:50.663700px;}
.fs4{font-size:56.068200px;}
.fs0{font-size:62.147700px;}
.fs1{font-size:67.551750px;}
.y0{bottom:0.000000px;}
.yd1{bottom:2.699993px;}
.yc9{bottom:2.700010px;}
.y2{bottom:55.080025px;}
.y1{bottom:73.980011px;}
.y134{bottom:108.360008px;}
.y74{bottom:108.720017px;}
.y1ac{bottom:109.259994px;}
.ye3{bottom:111.600013px;}
.yb0{bottom:115.200027px;}
.y15c{bottom:115.559967px;}
.yc5{bottom:115.919975px;}
.y189{bottom:117.720017px;}
.y1cb{bottom:119.340019px;}
.yf3{bottom:124.559967px;}
.y79{bottom:125.639992px;}
.yfa{bottom:127.980011px;}
.ye2{bottom:128.519989px;}
.y17d{bottom:128.700027px;}
.y26{bottom:129.059967px;}
.y10d{bottom:129.600013px;}
.y14d{bottom:130.860008px;}
.y16d{bottom:132.659981px;}
.y1ab{bottom:135.179970px;}
.y133{bottom:139.500000px;}
.y5d{bottom:139.860008px;}
.y3f{bottom:142.559967px;}
.y188{bottom:143.639992px;}
.y1ca{bottom:145.080025px;}
.yaf{bottom:146.159981px;}
.y15b{bottom:146.519989px;}
.yc4{bottom:150.120002px;}
.y11f{bottom:152.279983px;}
.ye1{bottom:154.440033px;}
.yf2{bottom:155.519989px;}
.y78{bottom:156.779983px;}
.yf9{bottom:158.940033px;}
.y17c{bottom:159.659981px;}
.y166{bottom:160.019989px;}
.y10c{bottom:160.559967px;}
.y1aa{bottom:161.100013px;}
.y14c{bottom:161.820030px;}
.y16c{bottom:163.620002px;}
.y8d{bottom:164.700027px;}
.y25{bottom:165.600013px;}
.y187{bottom:169.559967px;}
.ye8{bottom:169.740006px;}
.y132{bottom:170.460022px;}
.y5c{bottom:170.820030px;}
.y1c9{bottom:171.000000px;}
.y3e{bottom:173.700027px;}
.yae{bottom:177.120002px;}
.y15a{bottom:177.480011px;}
.ye0{bottom:178.019989px;}
.y11e{bottom:183.240006px;}
.yc3{bottom:184.500000px;}
.yf1{bottom:186.659981px;}
.y1a9{bottom:186.840019px;}
.y77{bottom:187.740006px;}
.yf8{bottom:189.899986px;}
.y165{bottom:190.980011px;}
.y24{bottom:191.519989px;}
.y14b{bottom:192.960022px;}
.y16b{bottom:194.580025px;}
.y186{bottom:195.299973px;}
.ye7{bottom:195.480011px;}
.y8c{bottom:195.659981px;}
.y1c8{bottom:196.740006px;}
.y17b{bottom:199.259994px;}
.y131{bottom:201.419975px;}
.y5b{bottom:201.779983px;}
.y3d{bottom:204.659981px;}
.y10b{bottom:206.820030px;}
.yad{bottom:208.080025px;}
.y159{bottom:208.620002px;}
.y73{bottom:210.240006px;}
.y1a8{bottom:212.759994px;}
.y11d{bottom:214.200027px;}
.y23{bottom:217.440033px;}
.yf0{bottom:217.620002px;}
.y76{bottom:218.700027px;}
.yf7{bottom:220.860008px;}
.y185{bottom:221.220017px;}
.yc2{bottom:221.399986px;}
.y164{bottom:221.940033px;}
.y1c7{bottom:222.480011px;}
.y14a{bottom:223.919975px;}
.y16a{bottom:225.539977px;}
.y8b{bottom:226.799973px;}
.y10a{bottom:226.980011px;}
.ye6{bottom:227.700027px;}
.y130{bottom:232.379998px;}
.y5a{bottom:232.740006px;}
.y3c{bottom:235.620002px;}
.y1a7{bottom:238.500000px;}
.y17a{bottom:238.679970px;}
.yac{bottom:239.039977px;}
.y158{bottom:239.580025px;}
.y22{bottom:243.179970px;}
.y11c{bottom:245.340019px;}
.y184{bottom:246.960022px;}
.y109{bottom:247.139992px;}
.y1c6{bottom:248.399986px;}
.yef{bottom:248.580025px;}
.yf6{bottom:249.299973px;}
.y72{bottom:249.659981px;}
.y163{bottom:250.200027px;}
.yc1{bottom:252.360008px;}
.y169{bottom:253.980011px;}
.y149{bottom:254.879998px;}
.y8a{bottom:257.759994px;}
.y8e{bottom:258.120002px;}
.y150{bottom:260.820030px;}
.yb4{bottom:261.360008px;}
.y12f{bottom:263.340019px;}
.y59{bottom:263.700027px;}
.y1a6{bottom:264.419975px;}
.y3b{bottom:266.580025px;}
.y108{bottom:267.299973px;}
.y21{bottom:269.100013px;}
.y179{bottom:269.639992px;}
.yab{bottom:270.000000px;}
.y90{bottom:272.159981px;}
.y183{bottom:272.879998px;}
.y1c5{bottom:274.139992px;}
.yf5{bottom:275.039977px;}
.y162{bottom:275.940033px;}
.y11b{bottom:276.299973px;}
.y157{bottom:279.000000px;}
.yee{bottom:279.539977px;}
.y168{bottom:279.720017px;}
.y71{bottom:280.620002px;}
.yc0{bottom:283.320030px;}
.y148{bottom:285.840019px;}
.y14f{bottom:286.740006px;}
.y107{bottom:287.460022px;}
.y89{bottom:288.720017px;}
.y1a5{bottom:289.980011px;}
.yb3{bottom:293.580025px;}
.y12e{bottom:294.299973px;}
.y58{bottom:294.659981px;}
.y20{bottom:294.840019px;}
.y3a{bottom:297.539977px;}
.y182{bottom:298.440033px;}
.y1c4{bottom:300.059967px;}
.y178{bottom:300.600013px;}
.yaa{bottom:300.960022px;}
.y161{bottom:301.860008px;}
.y167{bottom:303.659981px;}
.y11a{bottom:307.259994px;}
.y106{bottom:307.620002px;}
.y70{bottom:311.580025px;}
.ybf{bottom:314.279983px;}
.y156{bottom:315.720017px;}
.y1a4{bottom:315.899986px;}
.y14e{bottom:317.159981px;}
.yed{bottom:318.960022px;}
.y88{bottom:319.679970px;}
.y1f{bottom:320.759994px;}
.y147{bottom:322.559967px;}
.y181{bottom:324.360008px;}
.yf4{bottom:324.720017px;}
.y57{bottom:325.620002px;}
.y1c3{bottom:325.980011px;}
.y160{bottom:327.600013px;}
.y105{bottom:327.779983px;}
.y39{bottom:328.500000px;}
.y12d{bottom:329.940033px;}
.y177{bottom:331.559967px;}
.ya9{bottom:332.100013px;}
.y119{bottom:338.220017px;}
.y155{bottom:341.639992px;}
.y1a3{bottom:341.820030px;}
.y6f{bottom:342.539977px;}
.ybe{bottom:345.240006px;}
.y146{bottom:345.779983px;}
.y1e{bottom:346.500000px;}
.y104{bottom:347.940033px;}
.yec{bottom:349.919975px;}
.y180{bottom:350.279983px;}
.y87{bottom:350.639992px;}
.y12c{bottom:351.720017px;}
.y15f{bottom:353.519989px;}
.y56{bottom:356.580025px;}
.y38{bottom:359.460022px;}
.y176{bottom:362.519989px;}
.ya8{bottom:363.059967px;}
.y154{bottom:363.779983px;}
.y145{bottom:365.940033px;}
.y1a2{bottom:367.559967px;}
.y103{bottom:368.100013px;}
.y118{bottom:369.179970px;}
.y12b{bottom:371.700027px;}
.y1d{bottom:372.240006px;}
.y6e{bottom:373.500000px;}
.y17f{bottom:376.019989px;}
.ybd{bottom:376.200027px;}
.y1c2{bottom:377.460022px;}
.y15e{bottom:379.440033px;}
.y86{bottom:381.600013px;}
.y144{bottom:385.919975px;}
.yeb{bottom:386.820030px;}
.y55{bottom:387.539977px;}
.y102{bottom:388.259994px;}
.y37{bottom:390.419975px;}
.y12a{bottom:391.860008px;}
.y175{bottom:393.480011px;}
.ya7{bottom:394.019989px;}
.y1c{bottom:398.159981px;}
.y117{bottom:400.139992px;}
.y15d{bottom:403.200027px;}
.y6d{bottom:404.460022px;}
.y143{bottom:406.080025px;}
.ybc{bottom:407.159981px;}
.y101{bottom:408.419975px;}
.y129{bottom:412.019989px;}
.y85{bottom:412.559967px;}
.y17e{bottom:412.919975px;}
.y54{bottom:418.500000px;}
.y1a1{bottom:419.220017px;}
.y36{bottom:421.379998px;}
.y1b{bottom:423.899986px;}
.y174{bottom:424.440033px;}
.ya6{bottom:425.159981px;}
.y142{bottom:426.240006px;}
.y100{bottom:428.580025px;}
.y1c1{bottom:429.120002px;}
.y116{bottom:431.100013px;}
.y128{bottom:432.179970px;}
.y6c{bottom:435.419975px;}
.ybb{bottom:438.299973px;}
.yea{bottom:438.480011px;}
.y84{bottom:443.519989px;}
.y1a0{bottom:444.960022px;}
.y141{bottom:446.399986px;}
.yff{bottom:448.740006px;}
.y53{bottom:449.639992px;}
.y1a{bottom:449.820030px;}
.y35{bottom:452.340019px;}
.y1c0{bottom:454.860008px;}
.y173{bottom:455.399986px;}
.ya5{bottom:456.120002px;}
.y115{bottom:456.659981px;}
.ye9{bottom:461.519989px;}
.y6b{bottom:466.559967px;}
.y140{bottom:466.740006px;}
.yfe{bottom:468.899986px;}
.yba{bottom:469.259994px;}
.y19f{bottom:470.879998px;}
.y127{bottom:472.679970px;}
.y83{bottom:474.480011px;}
.y19{bottom:475.740006px;}
.y114{bottom:476.820030px;}
.y52{bottom:480.600013px;}
.y1bf{bottom:480.779983px;}
.y34{bottom:483.480011px;}
.y172{bottom:486.360008px;}
.y13f{bottom:486.899986px;}
.ya4{bottom:487.080025px;}
.yfd{bottom:489.059967px;}
.y126{bottom:492.840019px;}
.y19e{bottom:496.620002px;}
.y113{bottom:497.159981px;}
.y6a{bottom:497.519989px;}
.yb9{bottom:500.220017px;}
.y18{bottom:501.299973px;}
.y82{bottom:505.620002px;}
.y1be{bottom:506.700027px;}
.y13e{bottom:506.879998px;}
.yfc{bottom:509.220017px;}
.y51{bottom:511.559967px;}
.y125{bottom:512.820030px;}
.y33{bottom:514.440033px;}
.y112{bottom:517.320030px;}
.y171{bottom:517.500000px;}
.ya3{bottom:518.039977px;}
.y19d{bottom:522.539977px;}
.y13d{bottom:527.039977px;}
.y17{bottom:527.220017px;}
.y69{bottom:528.480011px;}
.yfb{bottom:529.379998px;}
.yb8{bottom:531.179970px;}
.y1bd{bottom:532.259994px;}
.y124{bottom:532.980011px;}
.y81{bottom:536.580025px;}
.y111{bottom:537.480011px;}
.y50{bottom:542.519989px;}
.y32{bottom:545.399986px;}
.y170{bottom:545.759994px;}
.y13c{bottom:547.200027px;}
.y19c{bottom:548.279983px;}
.ya2{bottom:549.000000px;}
.y9c{bottom:550.980011px;}
.y16{bottom:552.960022px;}
.y123{bottom:556.740006px;}
.y110{bottom:557.639992px;}
.y1bc{bottom:558.179970px;}
.y68{bottom:559.440033px;}
.yb7{bottom:562.139992px;}
.y13b{bottom:567.360008px;}
.y80{bottom:567.539977px;}
.y75{bottom:567.899986px;}
.y16f{bottom:571.679970px;}
.y4f{bottom:573.480011px;}
.y19b{bottom:574.200027px;}
.y31{bottom:576.360008px;}
.y10f{bottom:577.620002px;}
.y15{bottom:578.879998px;}
.ya1{bottom:579.960022px;}
.y41{bottom:581.940033px;}
.y122{bottom:582.480011px;}
.y1bb{bottom:583.919975px;}
.y13a{bottom:587.519989px;}
.y67{bottom:590.399986px;}
.ydf{bottom:592.740006px;}
.yb2{bottom:594.179970px;}
.y16e{bottom:595.259994px;}
.y7f{bottom:598.500000px;}
.yb6{bottom:599.039977px;}
.y19a{bottom:599.940033px;}
.y10e{bottom:601.379998px;}
.y4e{bottom:604.440033px;}
.y14{bottom:607.320030px;}
.ye5{bottom:608.399986px;}
.y1ba{bottom:609.840019px;}
.ya0{bottom:610.919975px;}
.y40{bottom:612.899986px;}
.y121{bottom:616.860008px;}
.y139{bottom:619.740006px;}
.y66{bottom:621.360008px;}
.yde{bottom:623.699993px;}
.y199{bottom:625.680004px;}
.yb1{bottom:626.220017px;}
.y7e{bottom:629.459988px;}
.y9b{bottom:629.819995px;}
.yb5{bottom:631.259994px;}
.ye4{bottom:634.139992px;}
.y4d{bottom:635.399986px;}
.y13{bottom:635.759994px;}
.y30{bottom:638.279983px;}
.y9f{bottom:642.060001px;}
.y120{bottom:642.600013px;}
.y138{bottom:645.480011px;}
.y198{bottom:651.600013px;}
.y65{bottom:652.319995px;}
.ydd{bottom:654.660015px;}
.y7d{bottom:660.420010px;}
.y9a{bottom:660.779983px;}
.y1b9{bottom:661.500000px;}
.y12{bottom:666.360008px;}
.y2f{bottom:669.240006px;}
.y9e{bottom:670.319995px;}
.y197{bottom:677.339985px;}
.y137{bottom:679.680004px;}
.y64{bottom:683.279983px;}
.ydc{bottom:685.800007px;}
.y11{bottom:687.420010px;}
.y7c{bottom:691.379998px;}
.y99{bottom:691.740006px;}
.y9d{bottom:696.060001px;}
.y4c{bottom:697.319995px;}
.y2e{bottom:700.199993px;}
.y196{bottom:703.259994px;}
.y136{bottom:705.600013px;}
.y153{bottom:710.100013px;}
.y1b8{bottom:712.980011px;}
.y63{bottom:714.240006px;}
.ydb{bottom:716.759994px;}
.y10{bottom:718.019989px;}
.y7b{bottom:720.360008px;}
.y98{bottom:722.699993px;}
.y4b{bottom:728.459988px;}
.y7a{bottom:728.819995px;}
.y195{bottom:729.000000px;}
.y2d{bottom:731.160015px;}
.y152{bottom:736.019989px;}
.y135{bottom:738.000000px;}
.yf{bottom:738.899986px;}
.y62{bottom:745.379998px;}
.yda{bottom:747.720017px;}
.y97{bottom:753.839985px;}
.y194{bottom:754.920010px;}
.y4a{bottom:759.420010px;}
.y2c{bottom:762.300007px;}
.y1b7{bottom:764.819995px;}
.y151{bottom:768.420010px;}
.ye{bottom:769.680004px;}
.y61{bottom:776.339985px;}
.yd9{bottom:778.680004px;}
.y193{bottom:780.660015px;}
.y96{bottom:784.800007px;}
.y49{bottom:790.379998px;}
.y1b6{bottom:790.560001px;}
.y2b{bottom:793.259994px;}
.yd{bottom:795.420010px;}
.y1cc{bottom:805.500000px;}
.y192{bottom:806.399986px;}
.y60{bottom:807.300007px;}
.yd7{bottom:808.560001px;}
.yd8{bottom:810.540012px;}
.y95{bottom:815.759994px;}
.y1b5{bottom:816.480011px;}
.yc{bottom:821.339985px;}
.y2a{bottom:824.220017px;}
.y48{bottom:829.800007px;}
.yd5{bottom:834.660015px;}
.yd6{bottom:836.819995px;}
.y5f{bottom:838.259994px;}
.yb{bottom:842.220017px;}
.y191{bottom:843.300007px;}
.y94{bottom:846.720017px;}
.y29{bottom:855.180004px;}
.yd3{bottom:860.939999px;}
.yd4{bottom:862.920010px;}
.y1b4{bottom:867.959988px;}
.y47{bottom:869.220017px;}
.ya{bottom:873.000000px;}
.y93{bottom:877.680004px;}
.y190{bottom:880.199993px;}
.y28{bottom:886.139992px;}
.yd0{bottom:887.220017px;}
.yd2{bottom:889.199993px;}
.y1b3{bottom:893.699993px;}
.y9{bottom:898.740006px;}
.y46{bottom:900.180004px;}
.y18f{bottom:906.120002px;}
.y92{bottom:908.639992px;}
.yce{bottom:913.319996px;}
.ycf{bottom:915.479994px;}
.y27{bottom:917.099997px;}
.y1b2{bottom:919.620002px;}
.y8{bottom:924.479994px;}
.y45{bottom:931.139992px;}
.y18e{bottom:931.860008px;}
.y91{bottom:939.599997px;}
.ycd{bottom:941.580008px;}
.y1b1{bottom:945.539995px;}
.y7{bottom:948.060001px;}
.y18d{bottom:957.780001px;}
.y44{bottom:962.099997px;}
.ycc{bottom:965.879998px;}
.y8f{bottom:970.560001px;}
.y1b0{bottom:971.280001px;}
.y6{bottom:979.020006px;}
.y18c{bottom:983.520006px;}
.ycb{bottom:991.979994px;}
.y43{bottom:993.060001px;}
.y1af{bottom:997.199993px;}
.y5e{bottom:1001.520006px;}
.y18b{bottom:1009.259994px;}
.y5{bottom:1009.979994px;}
.yc8{bottom:1018.259994px;}
.yca{bottom:1020.240006px;}
.y1ae{bottom:1022.939999px;}
.y42{bottom:1032.479994px;}
.y18a{bottom:1035.000000px;}
.yc7{bottom:1035.539996px;}
.y4{bottom:1040.939999px;}
.y1ad{bottom:1048.680004px;}
.y3{bottom:1072.079999px;}
.yc6{bottom:1074.599997px;}
.h1b{height:14.219982px;}
.h1d{height:14.219983px;}
.h19{height:14.219999px;}
.h16{height:14.220000px;}
.h1c{height:14.220016px;}
.h1a{height:24.688746px;}
.h18{height:24.853668px;}
.h5{height:29.353383px;}
.h22{height:33.082859px;}
.h21{height:33.303854px;}
.h8{height:36.327021px;}
.h15{height:37.032988px;}
.h17{height:37.280369px;}
.h11{height:45.016556px;}
.h6{height:45.117380px;}
.h7{height:48.793275px;}
.h23{height:50.391581px;}
.h12{height:54.358049px;}
.ha{height:55.767052px;}
.h9{height:57.409675px;}
.h1{height:61.813899px;}
.hb{height:67.188923px;}
.hf{height:67.336376px;}
.he{height:67.336381px;}
.hc{height:67.336516px;}
.h4{height:67.336520px;}
.h10{height:67.336552px;}
.h3{height:67.336583px;}
.h1e{height:67.336588px;}
.hd{height:67.336655px;}
.h1f{height:67.908874px;}
.h20{height:67.908941px;}
.h2{height:69.167978px;}
.h13{height:80.021101px;}
.h14{height:101.028874px;}
.h0{height:1188.000000px;}
.w5{width:3.599945px;}
.wd{width:3.600014px;}
.w8{width:4.139992px;}
.w6{width:4.320030px;}
.wf{width:7.199960px;}
.w15{width:7.199992px;}
.w3{width:7.199993px;}
.w9{width:7.200027px;}
.w11{width:7.200028px;}
.w4{width:7.559967px;}
.w13{width:9.899987px;}
.w1{width:10.800007px;}
.w18{width:14.219948px;}
.w17{width:17.820030px;}
.w14{width:18.360008px;}
.w2{width:19.800007px;}
.wc{width:25.019990px;}
.w16{width:25.379997px;}
.w7{width:28.439964px;}
.wa{width:30.960006px;}
.wb{width:31.860009px;}
.we{width:42.120003px;}
.w10{width:60.839985px;}
.w12{width:79.199993px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:138.780001px;}
.x35{left:140.400003px;}
.xd{left:144.000000px;}
.x3c{left:146.879998px;}
.x9{left:149.219999px;}
.x1c{left:151.020006px;}
.x5{left:152.280001px;}
.xf{left:155.699993px;}
.x8{left:158.759994px;}
.x6{left:162.000000px;}
.xb{left:163.080008px;}
.x3{left:164.699993px;}
.x1a{left:166.680005px;}
.x11{left:168.659998px;}
.x3e{left:173.159998px;}
.x47{left:176.039996px;}
.xc{left:183.780001px;}
.x44{left:192.240006px;}
.x41{left:216.360008px;}
.x55{left:219.419992px;}
.x48{left:234.900003px;}
.x50{left:236.340002px;}
.x1d{left:249.120002px;}
.x4d{left:255.780001px;}
.x3f{left:264.599997px;}
.x27{left:280.080008px;}
.x4b{left:286.199993px;}
.x53{left:289.259994px;}
.x4f{left:294.300007px;}
.x2e{left:309.779983px;}
.x46{left:319.319996px;}
.x7{left:328.319996px;}
.x2f{left:333.000000px;}
.x4{left:335.160015px;}
.x16{left:336.779983px;}
.x49{left:339.300007px;}
.x30{left:342.720017px;}
.x31{left:349.740006px;}
.x4e{left:360.899987px;}
.x32{left:367.920010px;}
.x33{left:375.120002px;}
.x39{left:377.819996px;}
.xe{left:379.980011px;}
.x3a{left:381.240006px;}
.x37{left:385.560001px;}
.xa{left:389.699993px;}
.x12{left:393.300007px;}
.x4a{left:400.500000px;}
.x10{left:418.319996px;}
.x43{left:421.019989px;}
.x42{left:423.899987px;}
.x3d{left:435.240006px;}
.x1e{left:439.920010px;}
.x28{left:442.620002px;}
.x40{left:446.579990px;}
.x14{left:450.540012px;}
.x1{left:454.680005px;}
.x1b{left:458.459988px;}
.x13{left:474.300007px;}
.x1f{left:477.360008px;}
.x29{left:559.620002px;}
.x21{left:570.240006px;}
.x20{left:577.259994px;}
.x45{left:579.059967px;}
.x2a{left:584.639992px;}
.x22{left:586.080025px;}
.x23{left:589.679970px;}
.x2b{left:591.659981px;}
.x24{left:593.820030px;}
.x2c{left:595.259994px;}
.x25{left:622.259994px;}
.x26{left:626.399987px;}
.x2d{left:637.200027px;}
.x18{left:656.100014px;}
.x54{left:672.120002px;}
.x3b{left:675.179970px;}
.x51{left:680.580025px;}
.x15{left:691.200027px;}
.x36{left:693.360008px;}
.x56{left:700.740006px;}
.x34{left:717.480011px;}
.x17{left:728.460023px;}
.x38{left:737.639992px;}
.x4c{left:751.320030px;}
.x52{left:768.240006px;}
.x19{left:778.320030px;}
@media print{
.v7{vertical-align:-24.959960pt;}
.v6{vertical-align:-19.839996pt;}
.v3{vertical-align:-17.279972pt;}
.v9{vertical-align:-12.160032pt;}
.vc{vertical-align:-8.960080pt;}
.v1{vertical-align:-4.480012pt;}
.v5{vertical-align:-2.560060pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:1.920044pt;}
.ve{vertical-align:5.119872pt;}
.v4{vertical-align:17.279904pt;}
.v2{vertical-align:19.840024pt;}
.v8{vertical-align:24.959964pt;}
.vb{vertical-align:26.880008pt;}
.vd{vertical-align:30.079956pt;}
.va{vertical-align:35.200076pt;}
.ls9{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.033630pt;}
.ls45{letter-spacing:0.041662pt;}
.ls30{letter-spacing:0.048523pt;}
.ls8{letter-spacing:0.048643pt;}
.ls2c{letter-spacing:0.048767pt;}
.ls31{letter-spacing:0.057992pt;}
.ls33{letter-spacing:0.058052pt;}
.ls36{letter-spacing:0.058116pt;}
.ls32{letter-spacing:0.100652pt;}
.ls34{letter-spacing:0.100656pt;}
.ls1b{letter-spacing:0.103892pt;}
.ls19{letter-spacing:0.107130pt;}
.ls10{letter-spacing:0.123075pt;}
.ls0{letter-spacing:0.123195pt;}
.ls11{letter-spacing:0.123199pt;}
.lse{letter-spacing:0.123255pt;}
.lsb{letter-spacing:0.123259pt;}
.ls16{letter-spacing:0.123315pt;}
.lsd{letter-spacing:0.123319pt;}
.ls2{letter-spacing:0.123439pt;}
.ls12{letter-spacing:0.196050pt;}
.ls14{letter-spacing:0.196174pt;}
.ls2b{letter-spacing:0.197538pt;}
.ls37{letter-spacing:0.197542pt;}
.ls38{letter-spacing:0.197598pt;}
.ls29{letter-spacing:0.197602pt;}
.ls2a{letter-spacing:0.197662pt;}
.ls1e{letter-spacing:0.216600pt;}
.ls1f{letter-spacing:0.216604pt;}
.ls20{letter-spacing:0.216664pt;}
.ls40{letter-spacing:0.228392pt;}
.ls5{letter-spacing:0.232903pt;}
.ls21{letter-spacing:0.233023pt;}
.ls7{letter-spacing:0.233027pt;}
.ls3{letter-spacing:0.233147pt;}
.ls2e{letter-spacing:0.286883pt;}
.ls6{letter-spacing:0.287007pt;}
.ls23{letter-spacing:0.287011pt;}
.ls3a{letter-spacing:0.297604pt;}
.ls3c{letter-spacing:0.297724pt;}
.ls2d{letter-spacing:0.368864pt;}
.ls1{letter-spacing:0.368868pt;}
.ls43{letter-spacing:0.381746pt;}
.ls44{letter-spacing:0.381866pt;}
.ls35{letter-spacing:0.419176pt;}
.ls13{letter-spacing:0.481826pt;}
.ls26{letter-spacing:0.489303pt;}
.ls1c{letter-spacing:0.505042pt;}
.lsf{letter-spacing:0.569492pt;}
.lsc{letter-spacing:0.569616pt;}
.ls27{letter-spacing:0.619412pt;}
.ls17{letter-spacing:0.863890pt;}
.ls28{letter-spacing:0.873039pt;}
.ls25{letter-spacing:0.873043pt;}
.ls22{letter-spacing:0.926899pt;}
.ls4{letter-spacing:0.926903pt;}
.ls3f{letter-spacing:0.926963pt;}
.ls24{letter-spacing:0.927023pt;}
.ls39{letter-spacing:2.816478pt;}
.ls3b{letter-spacing:2.875326pt;}
.ls3e{letter-spacing:4.155354pt;}
.ls3d{letter-spacing:4.795126pt;}
.ls1d{letter-spacing:4.989604pt;}
.ls15{letter-spacing:7.549600pt;}
.ls1a{letter-spacing:8.326391pt;}
.ls42{letter-spacing:10.747803pt;}
.ls2f{letter-spacing:11.387819pt;}
.ls41{letter-spacing:15.616530pt;}
.ls18{letter-spacing:19.263925pt;}
.ws6{word-spacing:-46.485106pt;}
.ws7{word-spacing:-42.632800pt;}
.ws8{word-spacing:-34.826720pt;}
.ws1{word-spacing:-13.570396pt;}
.wsd{word-spacing:-12.484782pt;}
.ws9{word-spacing:-12.474529pt;}
.wsf{word-spacing:-11.305140pt;}
.ws3{word-spacing:-11.263478pt;}
.wsb{word-spacing:-11.143932pt;}
.ws5{word-spacing:-9.125791pt;}
.ws0{word-spacing:-9.092161pt;}
.wsa{word-spacing:-8.316382pt;}
.wse{word-spacing:-7.870839pt;}
.ws2{word-spacing:-7.328023pt;}
.wsc{word-spacing:-6.985763pt;}
.ws4{word-spacing:0.000000pt;}
._45{margin-left:-4.007184pt;}
._b{margin-left:-3.087020pt;}
._8{margin-left:-1.954014pt;}
._1{margin-left:-0.943613pt;}
._0{width:0.907727pt;}
._2{width:2.283389pt;}
._7{width:3.738881pt;}
._5{width:4.802541pt;}
._6{width:5.733557pt;}
._3{width:6.875168pt;}
._4{width:7.989890pt;}
._d{width:9.289946pt;}
._c{width:10.361922pt;}
._e{width:11.432014pt;}
._14{width:12.555329pt;}
._f{width:14.926826pt;}
._17{width:16.179113pt;}
._12{width:17.533432pt;}
._10{width:18.791818pt;}
._11{width:19.955148pt;}
._22{width:21.104119pt;}
._a{width:22.083028pt;}
._9{width:23.292688pt;}
._18{width:24.430043pt;}
._1d{width:25.604693pt;}
._13{width:26.716952pt;}
._23{width:27.918341pt;}
._46{width:29.575096pt;}
._1f{width:31.378492pt;}
._1e{width:32.286453pt;}
._1c{width:33.384342pt;}
._1b{width:34.411518pt;}
._16{width:38.560321pt;}
._15{width:39.510268pt;}
._20{width:43.442812pt;}
._21{width:44.855535pt;}
._31{width:63.157947pt;}
._1a{width:70.584889pt;}
._19{width:71.665839pt;}
._27{width:92.754953pt;}
._48{width:99.120401pt;}
._41{width:111.350900pt;}
._33{width:117.709506pt;}
._40{width:120.428278pt;}
._47{width:123.997939pt;}
._32{width:127.684963pt;}
._26{width:141.204346pt;}
._37{width:153.294410pt;}
._3a{width:163.830876pt;}
._34{width:164.834210pt;}
._2e{width:183.625629pt;}
._2a{width:194.481816pt;}
._30{width:210.902740pt;}
._44{width:211.891817pt;}
._43{width:212.885597pt;}
._36{width:249.857784pt;}
._3d{width:256.070761pt;}
._3c{width:266.494948pt;}
._3f{width:278.558059pt;}
._25{width:279.891490pt;}
._29{width:290.065788pt;}
._28{width:297.193602pt;}
._3e{width:304.998254pt;}
._39{width:315.233859pt;}
._3b{width:325.378777pt;}
._42{width:326.964330pt;}
._2f{width:344.672390pt;}
._2d{width:360.888663pt;}
._2c{width:372.153287pt;}
._38{width:373.814926pt;}
._2b{width:380.471358pt;}
._35{width:386.205289pt;}
._24{width:497.674803pt;}
.fs9{font-size:25.219360pt;}
.fs8{font-size:30.023040pt;}
.fs3{font-size:32.424880pt;}
.fs6{font-size:34.826720pt;}
.fs2{font-size:40.230800pt;}
.fs5{font-size:42.632800pt;}
.fs7{font-size:45.034400pt;}
.fs4{font-size:49.838400pt;}
.fs0{font-size:55.242400pt;}
.fs1{font-size:60.046000pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:2.399994pt;}
.yc9{bottom:2.400009pt;}
.y2{bottom:48.960022pt;}
.y1{bottom:65.760010pt;}
.y134{bottom:96.320007pt;}
.y74{bottom:96.640015pt;}
.y1ac{bottom:97.119995pt;}
.ye3{bottom:99.200012pt;}
.yb0{bottom:102.400024pt;}
.y15c{bottom:102.719971pt;}
.yc5{bottom:103.039978pt;}
.y189{bottom:104.640015pt;}
.y1cb{bottom:106.080017pt;}
.yf3{bottom:110.719971pt;}
.y79{bottom:111.679993pt;}
.yfa{bottom:113.760010pt;}
.ye2{bottom:114.239990pt;}
.y17d{bottom:114.400024pt;}
.y26{bottom:114.719971pt;}
.y10d{bottom:115.200012pt;}
.y14d{bottom:116.320007pt;}
.y16d{bottom:117.919983pt;}
.y1ab{bottom:120.159973pt;}
.y133{bottom:124.000000pt;}
.y5d{bottom:124.320007pt;}
.y3f{bottom:126.719971pt;}
.y188{bottom:127.679993pt;}
.y1ca{bottom:128.960022pt;}
.yaf{bottom:129.919983pt;}
.y15b{bottom:130.239990pt;}
.yc4{bottom:133.440002pt;}
.y11f{bottom:135.359985pt;}
.ye1{bottom:137.280029pt;}
.yf2{bottom:138.239990pt;}
.y78{bottom:139.359985pt;}
.yf9{bottom:141.280029pt;}
.y17c{bottom:141.919983pt;}
.y166{bottom:142.239990pt;}
.y10c{bottom:142.719971pt;}
.y1aa{bottom:143.200012pt;}
.y14c{bottom:143.840027pt;}
.y16c{bottom:145.440002pt;}
.y8d{bottom:146.400024pt;}
.y25{bottom:147.200012pt;}
.y187{bottom:150.719971pt;}
.ye8{bottom:150.880005pt;}
.y132{bottom:151.520020pt;}
.y5c{bottom:151.840027pt;}
.y1c9{bottom:152.000000pt;}
.y3e{bottom:154.400024pt;}
.yae{bottom:157.440002pt;}
.y15a{bottom:157.760010pt;}
.ye0{bottom:158.239990pt;}
.y11e{bottom:162.880005pt;}
.yc3{bottom:164.000000pt;}
.yf1{bottom:165.919983pt;}
.y1a9{bottom:166.080017pt;}
.y77{bottom:166.880005pt;}
.yf8{bottom:168.799988pt;}
.y165{bottom:169.760010pt;}
.y24{bottom:170.239990pt;}
.y14b{bottom:171.520020pt;}
.y16b{bottom:172.960022pt;}
.y186{bottom:173.599976pt;}
.ye7{bottom:173.760010pt;}
.y8c{bottom:173.919983pt;}
.y1c8{bottom:174.880005pt;}
.y17b{bottom:177.119995pt;}
.y131{bottom:179.039978pt;}
.y5b{bottom:179.359985pt;}
.y3d{bottom:181.919983pt;}
.y10b{bottom:183.840027pt;}
.yad{bottom:184.960022pt;}
.y159{bottom:185.440002pt;}
.y73{bottom:186.880005pt;}
.y1a8{bottom:189.119995pt;}
.y11d{bottom:190.400024pt;}
.y23{bottom:193.280029pt;}
.yf0{bottom:193.440002pt;}
.y76{bottom:194.400024pt;}
.yf7{bottom:196.320007pt;}
.y185{bottom:196.640015pt;}
.yc2{bottom:196.799988pt;}
.y164{bottom:197.280029pt;}
.y1c7{bottom:197.760010pt;}
.y14a{bottom:199.039978pt;}
.y16a{bottom:200.479980pt;}
.y8b{bottom:201.599976pt;}
.y10a{bottom:201.760010pt;}
.ye6{bottom:202.400024pt;}
.y130{bottom:206.559998pt;}
.y5a{bottom:206.880005pt;}
.y3c{bottom:209.440002pt;}
.y1a7{bottom:212.000000pt;}
.y17a{bottom:212.159973pt;}
.yac{bottom:212.479980pt;}
.y158{bottom:212.960022pt;}
.y22{bottom:216.159973pt;}
.y11c{bottom:218.080017pt;}
.y184{bottom:219.520020pt;}
.y109{bottom:219.679993pt;}
.y1c6{bottom:220.799988pt;}
.yef{bottom:220.960022pt;}
.yf6{bottom:221.599976pt;}
.y72{bottom:221.919983pt;}
.y163{bottom:222.400024pt;}
.yc1{bottom:224.320007pt;}
.y169{bottom:225.760010pt;}
.y149{bottom:226.559998pt;}
.y8a{bottom:229.119995pt;}
.y8e{bottom:229.440002pt;}
.y150{bottom:231.840027pt;}
.yb4{bottom:232.320007pt;}
.y12f{bottom:234.080017pt;}
.y59{bottom:234.400024pt;}
.y1a6{bottom:235.039978pt;}
.y3b{bottom:236.960022pt;}
.y108{bottom:237.599976pt;}
.y21{bottom:239.200012pt;}
.y179{bottom:239.679993pt;}
.yab{bottom:240.000000pt;}
.y90{bottom:241.919983pt;}
.y183{bottom:242.559998pt;}
.y1c5{bottom:243.679993pt;}
.yf5{bottom:244.479980pt;}
.y162{bottom:245.280029pt;}
.y11b{bottom:245.599976pt;}
.y157{bottom:248.000000pt;}
.yee{bottom:248.479980pt;}
.y168{bottom:248.640015pt;}
.y71{bottom:249.440002pt;}
.yc0{bottom:251.840027pt;}
.y148{bottom:254.080017pt;}
.y14f{bottom:254.880005pt;}
.y107{bottom:255.520020pt;}
.y89{bottom:256.640015pt;}
.y1a5{bottom:257.760010pt;}
.yb3{bottom:260.960022pt;}
.y12e{bottom:261.599976pt;}
.y58{bottom:261.919983pt;}
.y20{bottom:262.080017pt;}
.y3a{bottom:264.479980pt;}
.y182{bottom:265.280029pt;}
.y1c4{bottom:266.719971pt;}
.y178{bottom:267.200012pt;}
.yaa{bottom:267.520020pt;}
.y161{bottom:268.320007pt;}
.y167{bottom:269.919983pt;}
.y11a{bottom:273.119995pt;}
.y106{bottom:273.440002pt;}
.y70{bottom:276.960022pt;}
.ybf{bottom:279.359985pt;}
.y156{bottom:280.640015pt;}
.y1a4{bottom:280.799988pt;}
.y14e{bottom:281.919983pt;}
.yed{bottom:283.520020pt;}
.y88{bottom:284.159973pt;}
.y1f{bottom:285.119995pt;}
.y147{bottom:286.719971pt;}
.y181{bottom:288.320007pt;}
.yf4{bottom:288.640015pt;}
.y57{bottom:289.440002pt;}
.y1c3{bottom:289.760010pt;}
.y160{bottom:291.200012pt;}
.y105{bottom:291.359985pt;}
.y39{bottom:292.000000pt;}
.y12d{bottom:293.280029pt;}
.y177{bottom:294.719971pt;}
.ya9{bottom:295.200012pt;}
.y119{bottom:300.640015pt;}
.y155{bottom:303.679993pt;}
.y1a3{bottom:303.840027pt;}
.y6f{bottom:304.479980pt;}
.ybe{bottom:306.880005pt;}
.y146{bottom:307.359985pt;}
.y1e{bottom:308.000000pt;}
.y104{bottom:309.280029pt;}
.yec{bottom:311.039978pt;}
.y180{bottom:311.359985pt;}
.y87{bottom:311.679993pt;}
.y12c{bottom:312.640015pt;}
.y15f{bottom:314.239990pt;}
.y56{bottom:316.960022pt;}
.y38{bottom:319.520020pt;}
.y176{bottom:322.239990pt;}
.ya8{bottom:322.719971pt;}
.y154{bottom:323.359985pt;}
.y145{bottom:325.280029pt;}
.y1a2{bottom:326.719971pt;}
.y103{bottom:327.200012pt;}
.y118{bottom:328.159973pt;}
.y12b{bottom:330.400024pt;}
.y1d{bottom:330.880005pt;}
.y6e{bottom:332.000000pt;}
.y17f{bottom:334.239990pt;}
.ybd{bottom:334.400024pt;}
.y1c2{bottom:335.520020pt;}
.y15e{bottom:337.280029pt;}
.y86{bottom:339.200012pt;}
.y144{bottom:343.039978pt;}
.yeb{bottom:343.840027pt;}
.y55{bottom:344.479980pt;}
.y102{bottom:345.119995pt;}
.y37{bottom:347.039978pt;}
.y12a{bottom:348.320007pt;}
.y175{bottom:349.760010pt;}
.ya7{bottom:350.239990pt;}
.y1c{bottom:353.919983pt;}
.y117{bottom:355.679993pt;}
.y15d{bottom:358.400024pt;}
.y6d{bottom:359.520020pt;}
.y143{bottom:360.960022pt;}
.ybc{bottom:361.919983pt;}
.y101{bottom:363.039978pt;}
.y129{bottom:366.239990pt;}
.y85{bottom:366.719971pt;}
.y17e{bottom:367.039978pt;}
.y54{bottom:372.000000pt;}
.y1a1{bottom:372.640015pt;}
.y36{bottom:374.559998pt;}
.y1b{bottom:376.799988pt;}
.y174{bottom:377.280029pt;}
.ya6{bottom:377.919983pt;}
.y142{bottom:378.880005pt;}
.y100{bottom:380.960022pt;}
.y1c1{bottom:381.440002pt;}
.y116{bottom:383.200012pt;}
.y128{bottom:384.159973pt;}
.y6c{bottom:387.039978pt;}
.ybb{bottom:389.599976pt;}
.yea{bottom:389.760010pt;}
.y84{bottom:394.239990pt;}
.y1a0{bottom:395.520020pt;}
.y141{bottom:396.799988pt;}
.yff{bottom:398.880005pt;}
.y53{bottom:399.679993pt;}
.y1a{bottom:399.840027pt;}
.y35{bottom:402.080017pt;}
.y1c0{bottom:404.320007pt;}
.y173{bottom:404.799988pt;}
.ya5{bottom:405.440002pt;}
.y115{bottom:405.919983pt;}
.ye9{bottom:410.239990pt;}
.y6b{bottom:414.719971pt;}
.y140{bottom:414.880005pt;}
.yfe{bottom:416.799988pt;}
.yba{bottom:417.119995pt;}
.y19f{bottom:418.559998pt;}
.y127{bottom:420.159973pt;}
.y83{bottom:421.760010pt;}
.y19{bottom:422.880005pt;}
.y114{bottom:423.840027pt;}
.y52{bottom:427.200012pt;}
.y1bf{bottom:427.359985pt;}
.y34{bottom:429.760010pt;}
.y172{bottom:432.320007pt;}
.y13f{bottom:432.799988pt;}
.ya4{bottom:432.960022pt;}
.yfd{bottom:434.719971pt;}
.y126{bottom:438.080017pt;}
.y19e{bottom:441.440002pt;}
.y113{bottom:441.919983pt;}
.y6a{bottom:442.239990pt;}
.yb9{bottom:444.640015pt;}
.y18{bottom:445.599976pt;}
.y82{bottom:449.440002pt;}
.y1be{bottom:450.400024pt;}
.y13e{bottom:450.559998pt;}
.yfc{bottom:452.640015pt;}
.y51{bottom:454.719971pt;}
.y125{bottom:455.840027pt;}
.y33{bottom:457.280029pt;}
.y112{bottom:459.840027pt;}
.y171{bottom:460.000000pt;}
.ya3{bottom:460.479980pt;}
.y19d{bottom:464.479980pt;}
.y13d{bottom:468.479980pt;}
.y17{bottom:468.640015pt;}
.y69{bottom:469.760010pt;}
.yfb{bottom:470.559998pt;}
.yb8{bottom:472.159973pt;}
.y1bd{bottom:473.119995pt;}
.y124{bottom:473.760010pt;}
.y81{bottom:476.960022pt;}
.y111{bottom:477.760010pt;}
.y50{bottom:482.239990pt;}
.y32{bottom:484.799988pt;}
.y170{bottom:485.119995pt;}
.y13c{bottom:486.400024pt;}
.y19c{bottom:487.359985pt;}
.ya2{bottom:488.000000pt;}
.y9c{bottom:489.760010pt;}
.y16{bottom:491.520020pt;}
.y123{bottom:494.880005pt;}
.y110{bottom:495.679993pt;}
.y1bc{bottom:496.159973pt;}
.y68{bottom:497.280029pt;}
.yb7{bottom:499.679993pt;}
.y13b{bottom:504.320007pt;}
.y80{bottom:504.479980pt;}
.y75{bottom:504.799988pt;}
.y16f{bottom:508.159973pt;}
.y4f{bottom:509.760010pt;}
.y19b{bottom:510.400024pt;}
.y31{bottom:512.320007pt;}
.y10f{bottom:513.440002pt;}
.y15{bottom:514.559998pt;}
.ya1{bottom:515.520020pt;}
.y41{bottom:517.280029pt;}
.y122{bottom:517.760010pt;}
.y1bb{bottom:519.039978pt;}
.y13a{bottom:522.239990pt;}
.y67{bottom:524.799988pt;}
.ydf{bottom:526.880005pt;}
.yb2{bottom:528.159973pt;}
.y16e{bottom:529.119995pt;}
.y7f{bottom:532.000000pt;}
.yb6{bottom:532.479980pt;}
.y19a{bottom:533.280029pt;}
.y10e{bottom:534.559998pt;}
.y4e{bottom:537.280029pt;}
.y14{bottom:539.840027pt;}
.ye5{bottom:540.799988pt;}
.y1ba{bottom:542.080017pt;}
.ya0{bottom:543.039978pt;}
.y40{bottom:544.799988pt;}
.y121{bottom:548.320007pt;}
.y139{bottom:550.880005pt;}
.y66{bottom:552.320007pt;}
.yde{bottom:554.399994pt;}
.y199{bottom:556.160004pt;}
.yb1{bottom:556.640015pt;}
.y7e{bottom:559.519989pt;}
.y9b{bottom:559.839996pt;}
.yb5{bottom:561.119995pt;}
.ye4{bottom:563.679993pt;}
.y4d{bottom:564.799988pt;}
.y13{bottom:565.119995pt;}
.y30{bottom:567.359985pt;}
.y9f{bottom:570.720001pt;}
.y120{bottom:571.200012pt;}
.y138{bottom:573.760010pt;}
.y198{bottom:579.200012pt;}
.y65{bottom:579.839996pt;}
.ydd{bottom:581.920013pt;}
.y7d{bottom:587.040009pt;}
.y9a{bottom:587.359985pt;}
.y1b9{bottom:588.000000pt;}
.y12{bottom:592.320007pt;}
.y2f{bottom:594.880005pt;}
.y9e{bottom:595.839996pt;}
.y197{bottom:602.079987pt;}
.y137{bottom:604.160004pt;}
.y64{bottom:607.359985pt;}
.ydc{bottom:609.600006pt;}
.y11{bottom:611.040009pt;}
.y7c{bottom:614.559998pt;}
.y99{bottom:614.880005pt;}
.y9d{bottom:618.720001pt;}
.y4c{bottom:619.839996pt;}
.y2e{bottom:622.399994pt;}
.y196{bottom:625.119995pt;}
.y136{bottom:627.200012pt;}
.y153{bottom:631.200012pt;}
.y1b8{bottom:633.760010pt;}
.y63{bottom:634.880005pt;}
.ydb{bottom:637.119995pt;}
.y10{bottom:638.239990pt;}
.y7b{bottom:640.320007pt;}
.y98{bottom:642.399994pt;}
.y4b{bottom:647.519989pt;}
.y7a{bottom:647.839996pt;}
.y195{bottom:648.000000pt;}
.y2d{bottom:649.920013pt;}
.y152{bottom:654.239990pt;}
.y135{bottom:656.000000pt;}
.yf{bottom:656.799988pt;}
.y62{bottom:662.559998pt;}
.yda{bottom:664.640015pt;}
.y97{bottom:670.079987pt;}
.y194{bottom:671.040009pt;}
.y4a{bottom:675.040009pt;}
.y2c{bottom:677.600006pt;}
.y1b7{bottom:679.839996pt;}
.y151{bottom:683.040009pt;}
.ye{bottom:684.160004pt;}
.y61{bottom:690.079987pt;}
.yd9{bottom:692.160004pt;}
.y193{bottom:693.920013pt;}
.y96{bottom:697.600006pt;}
.y49{bottom:702.559998pt;}
.y1b6{bottom:702.720001pt;}
.y2b{bottom:705.119995pt;}
.yd{bottom:707.040009pt;}
.y1cc{bottom:716.000000pt;}
.y192{bottom:716.799988pt;}
.y60{bottom:717.600006pt;}
.yd7{bottom:718.720001pt;}
.yd8{bottom:720.480011pt;}
.y95{bottom:725.119995pt;}
.y1b5{bottom:725.760010pt;}
.yc{bottom:730.079987pt;}
.y2a{bottom:732.640015pt;}
.y48{bottom:737.600006pt;}
.yd5{bottom:741.920013pt;}
.yd6{bottom:743.839996pt;}
.y5f{bottom:745.119995pt;}
.yb{bottom:748.640015pt;}
.y191{bottom:749.600006pt;}
.y94{bottom:752.640015pt;}
.y29{bottom:760.160004pt;}
.yd3{bottom:765.279999pt;}
.yd4{bottom:767.040009pt;}
.y1b4{bottom:771.519989pt;}
.y47{bottom:772.640015pt;}
.ya{bottom:776.000000pt;}
.y93{bottom:780.160004pt;}
.y190{bottom:782.399994pt;}
.y28{bottom:787.679993pt;}
.yd0{bottom:788.640015pt;}
.yd2{bottom:790.399994pt;}
.y1b3{bottom:794.399994pt;}
.y9{bottom:798.880005pt;}
.y46{bottom:800.160004pt;}
.y18f{bottom:805.440002pt;}
.y92{bottom:807.679993pt;}
.yce{bottom:811.839996pt;}
.ycf{bottom:813.759995pt;}
.y27{bottom:815.199997pt;}
.y1b2{bottom:817.440002pt;}
.y8{bottom:821.759995pt;}
.y45{bottom:827.679993pt;}
.y18e{bottom:828.320007pt;}
.y91{bottom:835.199997pt;}
.ycd{bottom:836.960007pt;}
.y1b1{bottom:840.479996pt;}
.y7{bottom:842.720001pt;}
.y18d{bottom:851.360001pt;}
.y44{bottom:855.199997pt;}
.ycc{bottom:858.559998pt;}
.y8f{bottom:862.720001pt;}
.y1b0{bottom:863.360001pt;}
.y6{bottom:870.240005pt;}
.y18c{bottom:874.240005pt;}
.ycb{bottom:881.759995pt;}
.y43{bottom:882.720001pt;}
.y1af{bottom:886.399994pt;}
.y5e{bottom:890.240005pt;}
.y18b{bottom:897.119995pt;}
.y5{bottom:897.759995pt;}
.yc8{bottom:905.119995pt;}
.yca{bottom:906.880005pt;}
.y1ae{bottom:909.279999pt;}
.y42{bottom:917.759995pt;}
.y18a{bottom:920.000000pt;}
.yc7{bottom:920.479996pt;}
.y4{bottom:925.279999pt;}
.y1ad{bottom:932.160004pt;}
.y3{bottom:952.959999pt;}
.yc6{bottom:955.199997pt;}
.h1b{height:12.639984pt;}
.h1d{height:12.639985pt;}
.h19{height:12.639999pt;}
.h16{height:12.640000pt;}
.h1c{height:12.640014pt;}
.h1a{height:21.945552pt;}
.h18{height:22.092149pt;}
.h5{height:26.091896pt;}
.h22{height:29.406986pt;}
.h21{height:29.603426pt;}
.h8{height:32.290685pt;}
.h15{height:32.918211pt;}
.h17{height:33.138106pt;}
.h11{height:40.014717pt;}
.h6{height:40.104338pt;}
.h7{height:43.371800pt;}
.h23{height:44.792516pt;}
.h12{height:48.318266pt;}
.ha{height:49.570713pt;}
.h9{height:51.030823pt;}
.h1{height:54.945688pt;}
.hb{height:59.723487pt;}
.hf{height:59.854557pt;}
.he{height:59.854561pt;}
.hc{height:59.854681pt;}
.h4{height:59.854685pt;}
.h10{height:59.854713pt;}
.h3{height:59.854741pt;}
.h1e{height:59.854745pt;}
.hd{height:59.854805pt;}
.h1f{height:60.363443pt;}
.h20{height:60.363503pt;}
.h2{height:61.482647pt;}
.h13{height:71.129867pt;}
.h14{height:89.803443pt;}
.h0{height:1056.000000pt;}
.w5{width:3.199951pt;}
.wd{width:3.200012pt;}
.w8{width:3.679993pt;}
.w6{width:3.840027pt;}
.wf{width:6.399964pt;}
.w15{width:6.399993pt;}
.w3{width:6.399994pt;}
.w9{width:6.400024pt;}
.w11{width:6.400025pt;}
.w4{width:6.719971pt;}
.w13{width:8.799988pt;}
.w1{width:9.600006pt;}
.w18{width:12.639954pt;}
.w17{width:15.840027pt;}
.w14{width:16.320007pt;}
.w2{width:17.600006pt;}
.wc{width:22.239991pt;}
.w16{width:22.559997pt;}
.w7{width:25.279968pt;}
.wa{width:27.520005pt;}
.wb{width:28.320008pt;}
.we{width:37.440003pt;}
.w10{width:54.079987pt;}
.w12{width:70.399994pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:123.360001pt;}
.x35{left:124.800003pt;}
.xd{left:128.000000pt;}
.x3c{left:130.559998pt;}
.x9{left:132.639999pt;}
.x1c{left:134.240005pt;}
.x5{left:135.360001pt;}
.xf{left:138.399994pt;}
.x8{left:141.119995pt;}
.x6{left:144.000000pt;}
.xb{left:144.960007pt;}
.x3{left:146.399994pt;}
.x1a{left:148.160004pt;}
.x11{left:149.919998pt;}
.x3e{left:153.919998pt;}
.x47{left:156.479996pt;}
.xc{left:163.360001pt;}
.x44{left:170.880005pt;}
.x41{left:192.320007pt;}
.x55{left:195.039993pt;}
.x48{left:208.800003pt;}
.x50{left:210.080002pt;}
.x1d{left:221.440002pt;}
.x4d{left:227.360001pt;}
.x3f{left:235.199997pt;}
.x27{left:248.960007pt;}
.x4b{left:254.399994pt;}
.x53{left:257.119995pt;}
.x4f{left:261.600006pt;}
.x2e{left:275.359985pt;}
.x46{left:283.839996pt;}
.x7{left:291.839996pt;}
.x2f{left:296.000000pt;}
.x4{left:297.920013pt;}
.x16{left:299.359985pt;}
.x49{left:301.600006pt;}
.x30{left:304.640015pt;}
.x31{left:310.880005pt;}
.x4e{left:320.799988pt;}
.x32{left:327.040009pt;}
.x33{left:333.440002pt;}
.x39{left:335.839996pt;}
.xe{left:337.760010pt;}
.x3a{left:338.880005pt;}
.x37{left:342.720001pt;}
.xa{left:346.399994pt;}
.x12{left:349.600006pt;}
.x4a{left:356.000000pt;}
.x10{left:371.839996pt;}
.x43{left:374.239990pt;}
.x42{left:376.799988pt;}
.x3d{left:386.880005pt;}
.x1e{left:391.040009pt;}
.x28{left:393.440002pt;}
.x40{left:396.959991pt;}
.x14{left:400.480011pt;}
.x1{left:404.160004pt;}
.x1b{left:407.519989pt;}
.x13{left:421.600006pt;}
.x1f{left:424.320007pt;}
.x29{left:497.440002pt;}
.x21{left:506.880005pt;}
.x20{left:513.119995pt;}
.x45{left:514.719971pt;}
.x2a{left:519.679993pt;}
.x22{left:520.960022pt;}
.x23{left:524.159973pt;}
.x2b{left:525.919983pt;}
.x24{left:527.840027pt;}
.x2c{left:529.119995pt;}
.x25{left:553.119995pt;}
.x26{left:556.799988pt;}
.x2d{left:566.400024pt;}
.x18{left:583.200012pt;}
.x54{left:597.440002pt;}
.x3b{left:600.159973pt;}
.x51{left:604.960022pt;}
.x15{left:614.400024pt;}
.x36{left:616.320007pt;}
.x56{left:622.880005pt;}
.x34{left:637.760010pt;}
.x17{left:647.520020pt;}
.x38{left:655.679993pt;}
.x4c{left:667.840027pt;}
.x52{left:682.880005pt;}
.x19{left:691.840027pt;}
}




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