
    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_1123b36cbdbe9a4186d058d4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104000;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_fb8203a70963140e8b799b44.woff')format("woff");}.ff2{font-family:ff2;line-height:0.837402;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_7456d9da850f940892707e1d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.703000;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_dc08f9174cca959d1f1ca7b4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d3edc6100641fd27f485c157.woff')format("woff");}.ff5{font-family:ff5;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a5d83f98cc5b9a75173d7fa3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.898000;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_eb5665515aeaa619df3129e9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.805664;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_e292665a302fd9604b3ce3e6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.746094;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;}
.md{transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249487,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249606,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.879999px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.046495px;}
.lsb{letter-spacing:0.046560px;}
.ls14{letter-spacing:0.049487px;}
.ls10{letter-spacing:0.049745px;}
.ls15{letter-spacing:0.054780px;}
.ls4{letter-spacing:0.073274px;}
.ls5{letter-spacing:0.186014px;}
.ls6{letter-spacing:0.189665px;}
.ls12{letter-spacing:0.253783px;}
.ls8{letter-spacing:0.378309px;}
.lsd{letter-spacing:0.771124px;}
.ls2{letter-spacing:0.794594px;}
.ls13{letter-spacing:0.899474px;}
.ls3{letter-spacing:0.907394px;}
.lse{letter-spacing:0.975196px;}
.ls1{letter-spacing:12.988305px;}
.ls11{letter-spacing:33.437163px;}
.ls7{letter-spacing:38.236175px;}
.ls9{letter-spacing:42.815100px;}
.lsa{letter-spacing:43.536479px;}
.lsf{letter-spacing:61.571092px;}
.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;}
}
.ws9{word-spacing:-48.378487px;}
.ws7{word-spacing:-40.969169px;}
.ws0{word-spacing:-28.255789px;}
.ws1{word-spacing:-22.503591px;}
.ws4{word-spacing:-19.795792px;}
.ws5{word-spacing:-15.565794px;}
.ws2{word-spacing:-14.889414px;}
.ws8{word-spacing:-14.090089px;}
.ws3{word-spacing:-14.043594px;}
.wsb{word-spacing:-14.041434px;}
.wsa{word-spacing:-13.366435px;}
.wsc{word-spacing:-13.364995px;}
.ws6{word-spacing:0.000000px;}
._e{margin-left:-2.767632px;}
._1{margin-left:-1.493556px;}
._0{width:1.245848px;}
._3{width:3.014856px;}
._2{width:4.514459px;}
._4{width:6.200318px;}
._5{width:7.458990px;}
._6{width:8.594932px;}
._7{width:9.647557px;}
._9{width:11.287914px;}
._8{width:12.630493px;}
._b{width:14.167082px;}
._20{width:15.577652px;}
._a{width:17.289244px;}
._d{width:18.443577px;}
._c{width:19.622984px;}
._1c{width:21.234162px;}
._10{width:22.395792px;}
._f{width:23.905334px;}
._1e{width:30.668439px;}
._1d{width:31.746353px;}
._1f{width:32.850629px;}
._1b{width:47.419528px;}
._15{width:344.223095px;}
._13{width:491.020558px;}
._12{width:519.153947px;}
._18{width:522.760545px;}
._17{width:544.836233px;}
._14{width:556.664732px;}
._19{width:674.532030px;}
._11{width:692.646830px;}
._16{width:719.547362px;}
._1a{width:759.521858px;}
.fc2{color:rgb(19,20,19);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:45.343422px;}
.fs5{font-size:48.051341px;}
.fsa{font-size:50.759980px;}
.fse{font-size:53.459979px;}
.fsb{font-size:53.465739px;}
.fsc{font-size:56.165738px;}
.fs0{font-size:56.174378px;}
.fs7{font-size:59.557656px;}
.fs8{font-size:62.263175px;}
.fsd{font-size:67.671573px;}
.fs1{font-size:67.679973px;}
.fs4{font-size:73.094371px;}
.fs9{font-size:79.183168px;}
.fs3{font-size:90.014364px;}
.fs2{font-size:113.023155px;}
.y15c{bottom:-8.280196px;}
.y164{bottom:-8.280176px;}
.y168{bottom:-8.280155px;}
.y15f{bottom:-7.020186px;}
.y0{bottom:0.000000px;}
.y10f{bottom:3.059651px;}
.y122{bottom:3.059791px;}
.y100{bottom:3.059880px;}
.y1a3{bottom:3.419565px;}
.y1a6{bottom:3.419578px;}
.y1a9{bottom:3.419585px;}
.y1ac{bottom:3.419591px;}
.y1b0{bottom:3.419604px;}
.y1b2{bottom:3.419611px;}
.y1b6{bottom:3.419624px;}
.y1b8{bottom:3.419630px;}
.y1bb{bottom:3.419637px;}
.y1bd{bottom:3.419643px;}
.y1bf{bottom:3.419650px;}
.y10d{bottom:3.419651px;}
.y1c2{bottom:3.419656px;}
.y1c5{bottom:3.419663px;}
.y1c9{bottom:3.419675px;}
.y1cb{bottom:3.419682px;}
.y1cd{bottom:3.419688px;}
.y1d0{bottom:3.419695px;}
.y1d2{bottom:3.419701px;}
.y1d4{bottom:3.419708px;}
.y1d6{bottom:3.419714px;}
.y1d8{bottom:3.419721px;}
.y1db{bottom:3.419734px;}
.y1dd{bottom:3.419740px;}
.y1e0{bottom:3.419747px;}
.y1e3{bottom:3.419753px;}
.y1e6{bottom:3.419760px;}
.y1e8{bottom:3.419766px;}
.y1ea{bottom:3.419773px;}
.y1ed{bottom:3.419779px;}
.y1f4{bottom:3.419816px;}
.y1f6{bottom:3.419822px;}
.y1f9{bottom:3.419828px;}
.y1fc{bottom:3.419835px;}
.y200{bottom:3.419848px;}
.y202{bottom:3.419854px;}
.y204{bottom:3.419861px;}
.y206{bottom:3.419867px;}
.y208{bottom:3.419874px;}
.yfe{bottom:3.419880px;}
.y20c{bottom:3.419893px;}
.y20e{bottom:3.419900px;}
.y210{bottom:3.419906px;}
.y107{bottom:3.419912px;}
.y14b{bottom:3.779753px;}
.y151{bottom:3.779763px;}
.y162{bottom:8.999818px;}
.y14d{bottom:10.079753px;}
.y157{bottom:10.799776px;}
.y163{bottom:14.579815px;}
.y14e{bottom:15.839750px;}
.y158{bottom:16.559774px;}
.y153{bottom:17.459763px;}
.y154{bottom:23.219761px;}
.y2{bottom:106.199958px;}
.y37{bottom:124.559950px;}
.y177{bottom:126.719949px;}
.ybf{bottom:129.059948px;}
.y136{bottom:129.599948px;}
.y6b{bottom:132.119947px;}
.ya2{bottom:133.559947px;}
.y1a1{bottom:139.319944px;}
.y86{bottom:141.839943px;}
.y36{bottom:142.559943px;}
.y176{bottom:144.719942px;}
.ybe{bottom:146.879941px;}
.y135{bottom:147.599941px;}
.y6a{bottom:149.939940px;}
.ya1{bottom:151.559939px;}
.y10a{bottom:152.459939px;}
.y1a0{bottom:155.519938px;}
.y35{bottom:160.199936px;}
.y175{bottom:162.539935px;}
.ybd{bottom:164.879934px;}
.y134{bottom:165.599934px;}
.y69{bottom:167.939933px;}
.ya0{bottom:169.199932px;}
.y109{bottom:170.999932px;}
.y19f{bottom:171.719931px;}
.ydc{bottom:173.339931px;}
.y85{bottom:177.479929px;}
.y34{bottom:178.199929px;}
.y174{bottom:180.179928px;}
.ybc{bottom:182.519927px;}
.y133{bottom:183.599927px;}
.y68{bottom:185.579926px;}
.y9f{bottom:187.019925px;}
.y19e{bottom:188.099925px;}
.ydb{bottom:192.779923px;}
.y84{bottom:193.859922px;}
.y33{bottom:196.019922px;}
.y173{bottom:198.179921px;}
.ybb{bottom:200.519920px;}
.y132{bottom:201.419919px;}
.y212{bottom:201.779919px;}
.y108{bottom:203.219919px;}
.y67{bottom:203.579919px;}
.y19d{bottom:204.299918px;}
.y9e{bottom:205.379918px;}
.y83{bottom:206.459917px;}
.yda{bottom:211.319915px;}
.y32{bottom:213.659915px;}
.y211{bottom:214.560000px;}
.y172{bottom:215.999914px;}
.y106{bottom:216.000000px;}
.y219{bottom:217.979913px;}
.yba{bottom:218.339913px;}
.y131{bottom:219.239912px;}
.y105{bottom:219.419912px;}
.y19c{bottom:220.499912px;}
.y66{bottom:221.399911px;}
.yd9{bottom:224.099910px;}
.y9d{bottom:224.459910px;}
.y20f{bottom:230.760000px;}
.y31{bottom:231.659907px;}
.y171{bottom:233.819906px;}
.y104{bottom:235.799906px;}
.y19b{bottom:236.519905px;}
.yb9{bottom:236.699905px;}
.y130{bottom:237.599905px;}
.y65{bottom:239.759904px;}
.y9c{bottom:244.439902px;}
.y20d{bottom:246.960000px;}
.y30{bottom:249.479900px;}
.y170{bottom:251.639899px;}
.y103{bottom:251.999899px;}
.y19a{bottom:252.899899px;}
.yb8{bottom:255.239898px;}
.y12f{bottom:256.139898px;}
.y64{bottom:258.659897px;}
.y20b{bottom:263.160000px;}
.y9b{bottom:263.339895px;}
.y20a{bottom:266.579893px;}
.y2f{bottom:267.299893px;}
.y102{bottom:268.199893px;}
.y199{bottom:269.099892px;}
.y16f{bottom:269.459892px;}
.yb7{bottom:273.959890px;}
.y12e{bottom:275.039890px;}
.y63{bottom:276.479889px;}
.y9a{bottom:281.159888px;}
.y209{bottom:282.959887px;}
.y101{bottom:284.219886px;}
.y2e{bottom:285.119886px;}
.y198{bottom:285.299886px;}
.y16e{bottom:287.279885px;}
.yb6{bottom:292.859883px;}
.y12d{bottom:293.759882px;}
.y62{bottom:294.299882px;}
.yfd{bottom:297.180000px;}
.yff{bottom:297.540000px;}
.y99{bottom:298.979880px;}
.y197{bottom:301.679879px;}
.y2d{bottom:302.939879px;}
.y16d{bottom:305.099878px;}
.yb5{bottom:310.679876px;}
.y207{bottom:311.760000px;}
.y61{bottom:312.299875px;}
.y98{bottom:317.519873px;}
.yfc{bottom:318.059873px;}
.y196{bottom:321.119872px;}
.y2c{bottom:321.299871px;}
.y16c{bottom:323.099871px;}
.y205{bottom:327.960000px;}
.yb4{bottom:328.679869px;}
.y60{bottom:329.939868px;}
.y12c{bottom:331.199868px;}
.y218{bottom:331.379867px;}
.y97{bottom:335.879866px;}
.yfb{bottom:337.679865px;}
.y2b{bottom:340.379864px;}
.y195{bottom:340.559864px;}
.y16b{bottom:341.459863px;}
.y203{bottom:344.340000px;}
.yb3{bottom:346.319861px;}
.y5f{bottom:347.759861px;}
.y12b{bottom:350.639860px;}
.y96{bottom:354.599858px;}
.yfa{bottom:355.499858px;}
.y2a{bottom:358.019857px;}
.y194{bottom:358.379857px;}
.y16a{bottom:360.359856px;}
.y201{bottom:360.540000px;}
.yb2{bottom:364.139854px;}
.y5e{bottom:365.759854px;}
.y95{bottom:373.499851px;}
.y29{bottom:376.019850px;}
.y193{bottom:376.199850px;}
.y1ff{bottom:376.740000px;}
.y17b{bottom:379.619848px;}
.y1fe{bottom:380.159848px;}
.y169{bottom:380.339848px;}
.yb1{bottom:382.139847px;}
.y5d{bottom:384.119846px;}
.y94{bottom:391.319843px;}
.y12a{bottom:392.219843px;}
.y28{bottom:393.839842px;}
.y192{bottom:394.019842px;}
.y1fd{bottom:396.179842px;}
.y167{bottom:396.540000px;}
.y17a{bottom:398.339841px;}
.yb0{bottom:399.779840px;}
.y5c{bottom:403.019839px;}
.y166{bottom:405.899838px;}
.y129{bottom:408.419837px;}
.y93{bottom:409.139836px;}
.y1fb{bottom:409.140000px;}
.y27{bottom:411.479835px;}
.y191{bottom:411.839835px;}
.y1fa{bottom:412.559835px;}
.y179{bottom:414.539834px;}
.yaf{bottom:417.779833px;}
.y5b{bottom:422.459831px;}
.y128{bottom:424.799830px;}
.y1f8{bottom:425.340000px;}
.yf9{bottom:426.959829px;}
.y92{bottom:427.139829px;}
.y1f7{bottom:428.759828px;}
.y26{bottom:429.479828px;}
.y190{bottom:429.659828px;}
.y165{bottom:431.999827px;}
.yae{bottom:436.319825px;}
.y127{bottom:440.999824px;}
.y1f5{bottom:441.540000px;}
.y5a{bottom:441.899823px;}
.y91{bottom:444.779822px;}
.y161{bottom:447.120000px;}
.y25{bottom:447.299821px;}
.y18f{bottom:447.659821px;}
.yad{bottom:454.679818px;}
.y160{bottom:456.119818px;}
.y126{bottom:457.019817px;}
.y1f3{bottom:457.740000px;}
.y59{bottom:459.719816px;}
.y1f2{bottom:461.159816px;}
.y90{bottom:462.599815px;}
.y24{bottom:465.119814px;}
.y18e{bottom:465.299814px;}
.y82{bottom:466.019814px;}
.y15e{bottom:471.780000px;}
.y125{bottom:473.219811px;}
.yac{bottom:473.399811px;}
.y58{bottom:477.539809px;}
.y1f1{bottom:477.719809px;}
.yf8{bottom:480.419808px;}
.y8f{bottom:480.599808px;}
.y81{bottom:482.399807px;}
.y15d{bottom:482.579807px;}
.y23{bottom:482.939807px;}
.y18d{bottom:483.299807px;}
.y124{bottom:489.599804px;}
.yab{bottom:492.299803px;}
.y57{bottom:495.899802px;}
.y1f0{bottom:497.159801px;}
.y15b{bottom:497.700000px;}
.y8e{bottom:498.419801px;}
.y18c{bottom:500.759800px;}
.y80{bottom:500.939800px;}
.y22{bottom:501.299799px;}
.yaa{bottom:504.719798px;}
.y123{bottom:505.799798px;}
.y15a{bottom:507.239797px;}
.yf7{bottom:516.059794px;}
.y8d{bottom:516.239794px;}
.y1ef{bottom:516.599793px;}
.y56{bottom:518.219793px;}
.y121{bottom:518.940000px;}
.y18b{bottom:519.479792px;}
.y7f{bottom:519.659792px;}
.y120{bottom:521.999791px;}
.y21{bottom:523.979790px;}
.y159{bottom:533.159787px;}
.yf6{bottom:533.879786px;}
.y8c{bottom:534.779786px;}
.y1ee{bottom:535.679786px;}
.y55{bottom:535.859786px;}
.y7e{bottom:538.019785px;}
.y11f{bottom:539.639784px;}
.y18a{bottom:541.439783px;}
.y20{bottom:542.879783px;}
.y156{bottom:548.280000px;}
.y1ec{bottom:548.460000px;}
.y1eb{bottom:551.879779px;}
.yf5{bottom:552.059779px;}
.y8b{bottom:553.139779px;}
.y54{bottom:553.679779px;}
.y7d{bottom:557.099777px;}
.y189{bottom:557.639777px;}
.y1f{bottom:559.079776px;}
.y11e{bottom:559.799776px;}
.y1e9{bottom:564.660000px;}
.y217{bottom:568.079773px;}
.yf4{bottom:569.879772px;}
.y8a{bottom:570.959772px;}
.y53{bottom:571.679771px;}
.y7c{bottom:574.739770px;}
.y152{bottom:574.740000px;}
.y1e{bottom:575.459770px;}
.y188{bottom:575.639770px;}
.y11d{bottom:578.519769px;}
.y1e7{bottom:581.040000px;}
.yf3{bottom:587.879765px;}
.y150{bottom:588.420000px;}
.y89{bottom:588.959764px;}
.y52{bottom:589.319764px;}
.y155{bottom:592.199763px;}
.y7b{bottom:593.279763px;}
.y187{bottom:593.459763px;}
.y1d{bottom:596.159762px;}
.y11c{bottom:596.519761px;}
.y1e5{bottom:597.240000px;}
.y1e4{bottom:600.659760px;}
.y88{bottom:605.339758px;}
.yf2{bottom:605.519758px;}
.y51{bottom:607.319757px;}
.y14c{bottom:608.040000px;}
.y186{bottom:611.279755px;}
.y7a{bottom:611.999755px;}
.y1e2{bottom:613.440000px;}
.y1c{bottom:614.159754px;}
.y14a{bottom:614.340000px;}
.y1e1{bottom:616.859753px;}
.y87{bottom:617.939753px;}
.y14f{bottom:618.119753px;}
.yd8{bottom:620.099752px;}
.yf1{bottom:624.059750px;}
.y50{bottom:625.139750px;}
.y185{bottom:629.099748px;}
.y1df{bottom:629.460000px;}
.y1b{bottom:630.359748px;}
.y79{bottom:630.539748px;}
.y11b{bottom:632.159747px;}
.y1de{bottom:632.879747px;}
.yd7{bottom:638.099745px;}
.y4f{bottom:642.779743px;}
.yf0{bottom:642.959743px;}
.y1dc{bottom:645.840000px;}
.y1a{bottom:646.559741px;}
.y149{bottom:646.739741px;}
.y184{bottom:646.919741px;}
.y216{bottom:649.259740px;}
.y78{bottom:649.439740px;}
.y11a{bottom:649.979740px;}
.yd6{bottom:655.919738px;}
.y4e{bottom:660.779736px;}
.y1da{bottom:662.040000px;}
.y19{bottom:662.759735px;}
.yef{bottom:662.939735px;}
.y183{bottom:664.739734px;}
.y1d9{bottom:665.459734px;}
.y148{bottom:666.179734px;}
.y77{bottom:667.259733px;}
.y119{bottom:667.619733px;}
.yd5{bottom:673.739731px;}
.y4d{bottom:678.599729px;}
.y18{bottom:678.959728px;}
.yee{bottom:681.659727px;}
.y182{bottom:682.559727px;}
.y147{bottom:684.899726px;}
.y76{bottom:685.619726px;}
.yd4{bottom:691.559723px;}
.y1d7{bottom:694.440000px;}
.y17{bottom:695.339722px;}
.y4c{bottom:696.419721px;}
.yed{bottom:699.659720px;}
.y181{bottom:700.559720px;}
.y146{bottom:701.279719px;}
.y118{bottom:703.439719px;}
.y75{bottom:704.519718px;}
.yd3{bottom:709.379716px;}
.y1d5{bottom:710.820000px;}
.y16{bottom:711.539715px;}
.y4b{bottom:714.239714px;}
.yec{bottom:717.479713px;}
.y180{bottom:718.379713px;}
.y145{bottom:719.099712px;}
.y74{bottom:722.339711px;}
.y1d3{bottom:726.840000px;}
.yd2{bottom:727.199709px;}
.y15{bottom:727.559709px;}
.y21b{bottom:730.259708px;}
.y4a{bottom:732.059707px;}
.yeb{bottom:735.299706px;}
.y17f{bottom:736.739705px;}
.y144{bottom:736.919705px;}
.y73{bottom:740.159704px;}
.y1d1{bottom:743.040000px;}
.y117{bottom:743.579703px;}
.y14{bottom:743.759702px;}
.yd1{bottom:745.019702px;}
.y49{bottom:749.879700px;}
.yea{bottom:753.119699px;}
.y143{bottom:754.919698px;}
.y17e{bottom:755.459698px;}
.y72{bottom:757.799697px;}
.y1cf{bottom:759.240000px;}
.y116{bottom:759.779696px;}
.y178{bottom:759.959696px;}
.y13{bottom:760.139696px;}
.y1ce{bottom:762.659695px;}
.yd0{bottom:763.019695px;}
.ya9{bottom:766.259693px;}
.y48{bottom:767.699693px;}
.ye9{bottom:770.219692px;}
.y142{bottom:772.559691px;}
.y17d{bottom:773.279691px;}
.y71{bottom:774.359690px;}
.y1cc{bottom:775.440000px;}
.y115{bottom:775.979690px;}
.y12{bottom:776.339689px;}
.y215{bottom:778.859688px;}
.ycf{bottom:780.659688px;}
.ya8{bottom:783.899686px;}
.y47{bottom:785.699686px;}
.y17c{bottom:786.059686px;}
.y141{bottom:790.379684px;}
.y1ca{bottom:791.820000px;}
.y70{bottom:791.999683px;}
.y114{bottom:792.179683px;}
.y11{bottom:792.539683px;}
.y214{bottom:795.239682px;}
.yce{bottom:798.479681px;}
.ya7{bottom:801.899679px;}
.y46{bottom:803.339679px;}
.y1c8{bottom:807.840000px;}
.y140{bottom:808.379677px;}
.y113{bottom:808.559677px;}
.y10{bottom:808.739677px;}
.y6f{bottom:809.819676px;}
.y1c7{bottom:811.259675px;}
.ycd{bottom:816.479673px;}
.ya6{bottom:819.719672px;}
.y45{bottom:821.339671px;}
.y112{bottom:824.579670px;}
.yf{bottom:825.299670px;}
.y13f{bottom:826.739669px;}
.y6e{bottom:827.099669px;}
.y1c6{bottom:827.459669px;}
.ycc{bottom:834.119666px;}
.ya5{bottom:837.359665px;}
.ye8{bottom:838.979664px;}
.y44{bottom:839.159664px;}
.y1c4{bottom:840.240000px;}
.y111{bottom:840.779664px;}
.y6d{bottom:842.039663px;}
.y1c3{bottom:843.659663px;}
.y13e{bottom:845.639662px;}
.ycb{bottom:852.119659px;}
.ye{bottom:854.819658px;}
.ye7{bottom:855.359658px;}
.ya4{bottom:855.899658px;}
.y1c1{bottom:856.620000px;}
.y43{bottom:856.799657px;}
.y110{bottom:856.979657px;}
.y6c{bottom:859.319656px;}
.y1c0{bottom:860.039656px;}
.y13d{bottom:865.619654px;}
.yca{bottom:869.939652px;}
.y10c{bottom:869.940000px;}
.y10e{bottom:870.300000px;}
.y1be{bottom:872.820000px;}
.ye6{bottom:873.179651px;}
.ya3{bottom:874.439650px;}
.y42{bottom:874.799650px;}
.yd{bottom:876.239650px;}
.yc{bottom:884.159646px;}
.y13c{bottom:884.519646px;}
.yc9{bottom:887.579645px;}
.y1bc{bottom:889.020000px;}
.y10b{bottom:890.819644px;}
.ye5{bottom:890.999644px;}
.y41{bottom:892.619643px;}
.yb{bottom:895.859642px;}
.y13b{bottom:902.339639px;}
.ya{bottom:903.599639px;}
.y1ba{bottom:905.040000px;}
.yc8{bottom:905.579638px;}
.ye4{bottom:908.099637px;}
.y1b9{bottom:908.459637px;}
.y40{bottom:910.439636px;}
.y9{bottom:915.299634px;}
.y13a{bottom:920.159632px;}
.y1b7{bottom:921.420000px;}
.yc7{bottom:923.399631px;}
.y213{bottom:924.839630px;}
.y3f{bottom:928.259629px;}
.y7{bottom:936.359625px;}
.y1b5{bottom:937.620000px;}
.y139{bottom:938.519625px;}
.y1b4{bottom:941.039624px;}
.yc6{bottom:941.219624px;}
.ye3{bottom:941.759623px;}
.y8{bottom:944.819622px;}
.y3e{bottom:946.079622px;}
.y1b3{bottom:957.239617px;}
.y6{bottom:957.599617px;}
.y138{bottom:958.139617px;}
.yc5{bottom:959.039616px;}
.ye2{bottom:960.839616px;}
.y3d{bottom:963.899614px;}
.y1b1{bottom:970.020000px;}
.yc4{bottom:976.859609px;}
.ye1{bottom:978.479609px;}
.y5{bottom:979.379608px;}
.y137{bottom:980.639608px;}
.y3c{bottom:981.719607px;}
.y1af{bottom:986.400000px;}
.y1ae{bottom:989.819604px;}
.yc3{bottom:994.679602px;}
.ye0{bottom:996.299601px;}
.y3b{bottom:999.719600px;}
.y1ad{bottom:1005.839598px;}
.y4{bottom:1011.059596px;}
.yc2{bottom:1012.499595px;}
.ydf{bottom:1014.299594px;}
.y3a{bottom:1017.359593px;}
.y1ab{bottom:1018.620000px;}
.y1aa{bottom:1022.039591px;}
.yc1{bottom:1030.139588px;}
.yde{bottom:1032.659587px;}
.y1a8{bottom:1034.820000px;}
.y39{bottom:1035.179586px;}
.y1a7{bottom:1038.239585px;}
.y3{bottom:1042.739583px;}
.yc0{bottom:1048.859580px;}
.y1a5{bottom:1051.200000px;}
.ydd{bottom:1051.559579px;}
.y38{bottom:1053.179579px;}
.y1a4{bottom:1054.619578px;}
.y1a2{bottom:1083.060000px;}
.y21a{bottom:1086.479565px;}
.y1{bottom:1086.659565px;}
.hc{height:0.000000px;}
.h20{height:5.580000px;}
.h21{height:6.840000px;}
.h15{height:15.480000px;}
.h18{height:15.660000px;}
.h14{height:15.840000px;}
.h17{height:16.020000px;}
.h19{height:17.640000px;}
.h22{height:23.580000px;}
.h1a{height:24.840000px;}
.h1f{height:25.560000px;}
.h1e{height:32.220000px;}
.h1c{height:34.029707px;}
.h12{height:35.125906px;}
.h24{height:36.998291px;}
.hb{height:38.367100px;}
.h16{height:38.872669px;}
.h8{height:40.174272px;}
.ha{height:40.796994px;}
.h7{height:42.573488px;}
.he{height:43.086117px;}
.h13{height:44.973342px;}
.h5{height:45.108966px;}
.h1b{height:46.727783px;}
.h26{height:46.828728px;}
.h11{height:46.834541px;}
.h25{height:49.762843px;}
.h1{height:49.770498px;}
.h9{height:50.069644px;}
.hd{height:54.794752px;}
.hf{height:55.165173px;}
.h23{height:57.325172px;}
.h1d{height:58.045172px;}
.h27{height:59.957014px;}
.h2{height:59.964456px;}
.h4{height:59.994925px;}
.h6{height:64.761612px;}
.h10{height:70.156287px;}
.h3{height:75.330374px;}
.h0{height:1188.000000px;}
.w2e{width:1.080000px;}
.w27{width:3.060000px;}
.wa{width:3.600000px;}
.w4{width:3.780000px;}
.w19{width:5.040000px;}
.w8{width:6.300000px;}
.w10{width:6.480000px;}
.w13{width:7.920000px;}
.w52{width:9.720000px;}
.w6{width:10.620000px;}
.w1{width:10.800000px;}
.w2{width:14.760000px;}
.w20{width:15.480000px;}
.w1f{width:16.380000px;}
.wf{width:17.280000px;}
.w4b{width:17.820000px;}
.wb{width:18.000000px;}
.w2c{width:19.080000px;}
.w3c{width:19.980000px;}
.w53{width:22.140000px;}
.w12{width:22.320000px;}
.w43{width:25.560000px;}
.w54{width:26.100000px;}
.w40{width:26.640000px;}
.wc{width:33.480000px;}
.w50{width:34.740000px;}
.w5{width:37.980000px;}
.w7{width:39.420000px;}
.w21{width:41.040000px;}
.w3{width:41.400000px;}
.wd{width:41.580000px;}
.w1a{width:45.000000px;}
.w16{width:49.860000px;}
.w35{width:54.360000px;}
.w24{width:54.540000px;}
.w1e{width:61.380000px;}
.w41{width:73.260000px;}
.w18{width:75.420000px;}
.w4d{width:79.920000px;}
.w51{width:80.280000px;}
.w49{width:84.600000px;}
.w4f{width:84.780000px;}
.w17{width:85.680000px;}
.w4e{width:88.380000px;}
.w4c{width:88.560000px;}
.w30{width:91.620000px;}
.w4a{width:93.060000px;}
.w37{width:102.600000px;}
.w45{width:103.860000px;}
.w47{width:113.220000px;}
.w1b{width:123.120000px;}
.w1c{width:125.640000px;}
.w44{width:129.060000px;}
.w33{width:130.320000px;}
.we{width:133.200000px;}
.w32{width:134.460000px;}
.w39{width:137.880000px;}
.w11{width:140.220000px;}
.w29{width:147.780000px;}
.w2d{width:151.020000px;}
.w25{width:152.280000px;}
.w3e{width:153.360000px;}
.w28{width:155.160000px;}
.w42{width:156.780000px;}
.w3d{width:164.520000px;}
.w26{width:165.600000px;}
.w14{width:167.400000px;}
.w15{width:170.820000px;}
.w31{width:179.280000px;}
.w3a{width:180.000000px;}
.w36{width:195.480000px;}
.w1d{width:202.680000px;}
.w22{width:202.860000px;}
.w38{width:219.960000px;}
.w2f{width:226.080000px;}
.w9{width:236.700000px;}
.w34{width:237.060000px;}
.w23{width:268.200000px;}
.w46{width:288.180000px;}
.w48{width:288.360000px;}
.w3f{width:291.060000px;}
.w3b{width:297.720000px;}
.w2b{width:298.980000px;}
.w2a{width:322.560000px;}
.w0{width:918.000000px;}
.x94{left:-493.200076px;}
.x93{left:-397.800114px;}
.x99{left:-367.380127px;}
.x97{left:-327.420143px;}
.x9d{left:-219.780186px;}
.x89{left:-202.680064px;}
.x9c{left:-195.300195px;}
.x9e{left:-179.820202px;}
.x66{left:-171.000076px;}
.x65{left:-167.400078px;}
.x90{left:-165.420207px;}
.xa4{left:-156.600211px;}
.xa1{left:-153.360212px;}
.x91{left:-147.780214px;}
.x9a{left:-134.280220px;}
.x88{left:-125.820094px;}
.x80{left:-123.300095px;}
.xa5{left:-103.680232px;}
.x96{left:-91.620237px;}
.x6a{left:-85.680110px;}
.x6d{left:-75.600114px;}
.x8a{left:-61.560120px;}
.x8f{left:-54.360252px;}
.x69{left:-50.040125px;}
.x75{left:-45.000127px;}
.x8d{left:-41.220128px;}
.xa2{left:-26.460263px;}
.x95{left:-18.900266px;}
.x8b{left:-16.560138px;}
.x74{left:-5.220142px;}
.x71{left:-3.960143px;}
.x0{left:0.000000px;}
.x3{left:158.759936px;}
.x6{left:165.060152px;}
.x1f{left:170.819932px;}
.x21{left:173.519931px;}
.x4d{left:176.399876px;}
.x22{left:177.479929px;}
.x7{left:179.459928px;}
.x20{left:184.859926px;}
.x36{left:189.539924px;}
.x28{left:190.619924px;}
.x1{left:192.239923px;}
.x24{left:194.039922px;}
.x3d{left:203.400000px;}
.x44{left:204.479918px;}
.x35{left:209.519916px;}
.x3e{left:214.020000px;}
.x46{left:215.280000px;}
.x3f{left:228.780000px;}
.x47{left:229.860000px;}
.x1b{left:235.979906px;}
.x4e{left:238.680000px;}
.x1c{left:241.739903px;}
.x1d{left:244.799902px;}
.x1e{left:250.559900px;}
.x8{left:267.299893px;}
.x40{left:270.000000px;}
.x48{left:271.260000px;}
.x16{left:272.339891px;}
.x41{left:273.780000px;}
.x37{left:275.939890px;}
.x4f{left:280.079888px;}
.x61{left:286.020000px;}
.x49{left:289.440000px;}
.x60{left:294.119882px;}
.x29{left:297.719881px;}
.x63{left:300.060000px;}
.x23{left:303.119879px;}
.x4a{left:307.260000px;}
.x57{left:309.240000px;}
.x50{left:310.679876px;}
.x2a{left:311.939875px;}
.x9{left:315.899874px;}
.x52{left:320.219872px;}
.x42{left:322.200000px;}
.x38{left:323.819870px;}
.x51{left:325.079870px;}
.x55{left:331.200000px;}
.x39{left:336.959865px;}
.x2b{left:338.399865px;}
.x53{left:341.640000px;}
.x4b{left:344.340000px;}
.x64{left:345.960000px;}
.x54{left:348.659861px;}
.x2c{left:352.619859px;}
.x56{left:355.679858px;}
.x62{left:357.660000px;}
.x17{left:359.459856px;}
.x43{left:361.620000px;}
.x18{left:365.399854px;}
.x3c{left:368.099853px;}
.xa{left:369.359852px;}
.x31{left:375.119929px;}
.x5d{left:377.639905px;}
.xb{left:380.519848px;}
.x33{left:383.579786px;}
.x85{left:386.999845px;}
.x12{left:391.679843px;}
.x7a{left:415.799834px;}
.x2d{left:420.119832px;}
.x3a{left:421.379831px;}
.x5e{left:424.979830px;}
.x5f{left:428.939828px;}
.x83{left:434.699826px;}
.x2e{left:439.919824px;}
.x8c{left:446.039822px;}
.xc{left:454.139818px;}
.x13{left:460.979816px;}
.x5{left:463.499815px;}
.xd{left:473.209311px;}
.x2f{left:475.379810px;}
.x14{left:478.439809px;}
.x58{left:487.260000px;}
.x7b{left:488.520000px;}
.x86{left:490.499804px;}
.x78{left:491.759803px;}
.x59{left:494.460000px;}
.x7c{left:499.319800px;}
.x7d{left:504.000000px;}
.x70{left:512.459795px;}
.x67{left:513.719795px;}
.x6b{left:516.599793px;}
.x68{left:518.400000px;}
.x45{left:519.840000px;}
.x19{left:524.159790px;}
.x7f{left:525.779790px;}
.x84{left:527.220000px;}
.x1a{left:530.279788px;}
.x6c{left:536.220000px;}
.x76{left:540.719784px;}
.x77{left:549.540000px;}
.x4c{left:571.679771px;}
.x87{left:580.140000px;}
.xe{left:581.399767px;}
.x72{left:587.519765px;}
.x73{left:592.380000px;}
.x79{left:598.320000px;}
.xf{left:601.739759px;}
.x15{left:610.739756px;}
.x5a{left:629.099748px;}
.x30{left:645.479742px;}
.x10{left:649.619740px;}
.x81{left:652.499739px;}
.x82{left:657.360000px;}
.x7e{left:659.159736px;}
.x6e{left:660.239736px;}
.x6f{left:664.920000px;}
.x11{left:671.939731px;}
.x5c{left:676.079795px;}
.x8e{left:684.000000px;}
.x9b{left:693.539723px;}
.x3b{left:701.639719px;}
.x9f{left:706.139718px;}
.x5b{left:707.219680px;}
.xa0{left:710.099716px;}
.x32{left:711.539715px;}
.x34{left:714.599714px;}
.xa3{left:717.479713px;}
.x98{left:718.559713px;}
.x25{left:733.319707px;}
.x2{left:734.939706px;}
.x26{left:754.559698px;}
.x92{left:763.919694px;}
.x4{left:765.899694px;}
.x27{left:768.599693px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.559999pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.041329pt;}
.lsb{letter-spacing:0.041387pt;}
.ls14{letter-spacing:0.043988pt;}
.ls10{letter-spacing:0.044218pt;}
.ls15{letter-spacing:0.048694pt;}
.ls4{letter-spacing:0.065133pt;}
.ls5{letter-spacing:0.165346pt;}
.ls6{letter-spacing:0.168591pt;}
.ls12{letter-spacing:0.225585pt;}
.ls8{letter-spacing:0.336275pt;}
.lsd{letter-spacing:0.685444pt;}
.ls2{letter-spacing:0.706306pt;}
.ls13{letter-spacing:0.799532pt;}
.ls3{letter-spacing:0.806572pt;}
.lse{letter-spacing:0.866841pt;}
.ls1{letter-spacing:11.545160pt;}
.ls11{letter-spacing:29.721923pt;}
.ls7{letter-spacing:33.987711pt;}
.ls9{letter-spacing:38.057866pt;}
.lsa{letter-spacing:38.699093pt;}
.lsf{letter-spacing:54.729860pt;}
.ws9{word-spacing:-43.003100pt;}
.ws7{word-spacing:-36.417039pt;}
.ws0{word-spacing:-25.116257pt;}
.ws1{word-spacing:-20.003192pt;}
.ws4{word-spacing:-17.596260pt;}
.ws5{word-spacing:-13.836261pt;}
.ws2{word-spacing:-13.235035pt;}
.ws8{word-spacing:-12.524524pt;}
.ws3{word-spacing:-12.483195pt;}
.wsb{word-spacing:-12.481275pt;}
.wsa{word-spacing:-11.881275pt;}
.wsc{word-spacing:-11.879995pt;}
.ws6{word-spacing:0.000000pt;}
._e{margin-left:-2.460118pt;}
._1{margin-left:-1.327605pt;}
._0{width:1.107421pt;}
._3{width:2.679872pt;}
._2{width:4.012853pt;}
._4{width:5.511393pt;}
._5{width:6.630214pt;}
._6{width:7.639940pt;}
._7{width:8.575606pt;}
._9{width:10.033702pt;}
._8{width:11.227105pt;}
._b{width:12.592962pt;}
._20{width:13.846802pt;}
._a{width:15.368217pt;}
._d{width:16.394291pt;}
._c{width:17.442652pt;}
._1c{width:18.874811pt;}
._10{width:19.907371pt;}
._f{width:21.249185pt;}
._1e{width:27.260835pt;}
._1d{width:28.218981pt;}
._1f{width:29.200559pt;}
._1b{width:42.150691pt;}
._15{width:305.976084pt;}
._13{width:436.462718pt;}
._12{width:461.470175pt;}
._18{width:464.676040pt;}
._17{width:484.298873pt;}
._14{width:494.813095pt;}
._19{width:599.584026pt;}
._11{width:615.686071pt;}
._16{width:639.597655pt;}
._1a{width:675.130541pt;}
.fs6{font-size:40.305264pt;}
.fs5{font-size:42.712303pt;}
.fsa{font-size:45.119982pt;}
.fse{font-size:47.519981pt;}
.fsb{font-size:47.525101pt;}
.fsc{font-size:49.925100pt;}
.fs0{font-size:49.932780pt;}
.fs7{font-size:52.940139pt;}
.fs8{font-size:55.345045pt;}
.fsd{font-size:60.152509pt;}
.fs1{font-size:60.159976pt;}
.fs4{font-size:64.972774pt;}
.fs9{font-size:70.385039pt;}
.fs3{font-size:80.012768pt;}
.fs2{font-size:100.465026pt;}
.y15c{bottom:-7.360174pt;}
.y164{bottom:-7.360156pt;}
.y168{bottom:-7.360138pt;}
.y15f{bottom:-6.240165pt;}
.y0{bottom:0.000000pt;}
.y10f{bottom:2.719689pt;}
.y122{bottom:2.719814pt;}
.y100{bottom:2.719893pt;}
.y1a3{bottom:3.039614pt;}
.y1a6{bottom:3.039625pt;}
.y1a9{bottom:3.039631pt;}
.y1ac{bottom:3.039637pt;}
.y1b0{bottom:3.039648pt;}
.y1b2{bottom:3.039654pt;}
.y1b6{bottom:3.039665pt;}
.y1b8{bottom:3.039671pt;}
.y1bb{bottom:3.039677pt;}
.y1bd{bottom:3.039683pt;}
.y1bf{bottom:3.039688pt;}
.y10d{bottom:3.039689pt;}
.y1c2{bottom:3.039694pt;}
.y1c5{bottom:3.039700pt;}
.y1c9{bottom:3.039712pt;}
.y1cb{bottom:3.039717pt;}
.y1cd{bottom:3.039723pt;}
.y1d0{bottom:3.039729pt;}
.y1d2{bottom:3.039735pt;}
.y1d4{bottom:3.039740pt;}
.y1d6{bottom:3.039746pt;}
.y1d8{bottom:3.039752pt;}
.y1db{bottom:3.039763pt;}
.y1dd{bottom:3.039769pt;}
.y1e0{bottom:3.039775pt;}
.y1e3{bottom:3.039781pt;}
.y1e6{bottom:3.039786pt;}
.y1e8{bottom:3.039792pt;}
.y1ea{bottom:3.039798pt;}
.y1ed{bottom:3.039804pt;}
.y1f4{bottom:3.039836pt;}
.y1f6{bottom:3.039842pt;}
.y1f9{bottom:3.039848pt;}
.y1fc{bottom:3.039853pt;}
.y200{bottom:3.039865pt;}
.y202{bottom:3.039871pt;}
.y204{bottom:3.039876pt;}
.y206{bottom:3.039882pt;}
.y208{bottom:3.039888pt;}
.yfe{bottom:3.039893pt;}
.y20c{bottom:3.039905pt;}
.y20e{bottom:3.039911pt;}
.y210{bottom:3.039917pt;}
.y107{bottom:3.039922pt;}
.y14b{bottom:3.359780pt;}
.y151{bottom:3.359789pt;}
.y162{bottom:7.999838pt;}
.y14d{bottom:8.959780pt;}
.y157{bottom:9.599801pt;}
.y163{bottom:12.959836pt;}
.y14e{bottom:14.079778pt;}
.y158{bottom:14.719799pt;}
.y153{bottom:15.519789pt;}
.y154{bottom:20.639787pt;}
.y2{bottom:94.399962pt;}
.y37{bottom:110.719956pt;}
.y177{bottom:112.639955pt;}
.ybf{bottom:114.719954pt;}
.y136{bottom:115.199954pt;}
.y6b{bottom:117.439953pt;}
.ya2{bottom:118.719953pt;}
.y1a1{bottom:123.839950pt;}
.y86{bottom:126.079950pt;}
.y36{bottom:126.719949pt;}
.y176{bottom:128.639949pt;}
.ybe{bottom:130.559948pt;}
.y135{bottom:131.199948pt;}
.y6a{bottom:133.279947pt;}
.ya1{bottom:134.719946pt;}
.y10a{bottom:135.519946pt;}
.y1a0{bottom:138.239945pt;}
.y35{bottom:142.399943pt;}
.y175{bottom:144.479942pt;}
.ybd{bottom:146.559941pt;}
.y134{bottom:147.199941pt;}
.y69{bottom:149.279940pt;}
.ya0{bottom:150.399940pt;}
.y109{bottom:151.999939pt;}
.y19f{bottom:152.639939pt;}
.ydc{bottom:154.079938pt;}
.y85{bottom:157.759937pt;}
.y34{bottom:158.399937pt;}
.y174{bottom:160.159936pt;}
.ybc{bottom:162.239935pt;}
.y133{bottom:163.199935pt;}
.y68{bottom:164.959934pt;}
.y9f{bottom:166.239934pt;}
.y19e{bottom:167.199933pt;}
.ydb{bottom:171.359931pt;}
.y84{bottom:172.319931pt;}
.y33{bottom:174.239930pt;}
.y173{bottom:176.159930pt;}
.ybb{bottom:178.239929pt;}
.y132{bottom:179.039928pt;}
.y212{bottom:179.359928pt;}
.y108{bottom:180.639928pt;}
.y67{bottom:180.959928pt;}
.y19d{bottom:181.599927pt;}
.y9e{bottom:182.559927pt;}
.y83{bottom:183.519927pt;}
.yda{bottom:187.839925pt;}
.y32{bottom:189.919924pt;}
.y211{bottom:190.720000pt;}
.y172{bottom:191.999923pt;}
.y106{bottom:192.000000pt;}
.y219{bottom:193.759922pt;}
.yba{bottom:194.079922pt;}
.y131{bottom:194.879922pt;}
.y105{bottom:195.039922pt;}
.y19c{bottom:195.999922pt;}
.y66{bottom:196.799921pt;}
.yd9{bottom:199.199920pt;}
.y9d{bottom:199.519920pt;}
.y20f{bottom:205.120000pt;}
.y31{bottom:205.919918pt;}
.y171{bottom:207.839917pt;}
.y104{bottom:209.599916pt;}
.y19b{bottom:210.239916pt;}
.yb9{bottom:210.399916pt;}
.y130{bottom:211.199916pt;}
.y65{bottom:213.119915pt;}
.y9c{bottom:217.279913pt;}
.y20d{bottom:219.520000pt;}
.y30{bottom:221.759911pt;}
.y170{bottom:223.679911pt;}
.y103{bottom:223.999910pt;}
.y19a{bottom:224.799910pt;}
.yb8{bottom:226.879909pt;}
.y12f{bottom:227.679909pt;}
.y64{bottom:229.919908pt;}
.y20b{bottom:233.920000pt;}
.y9b{bottom:234.079906pt;}
.y20a{bottom:236.959905pt;}
.y2f{bottom:237.599905pt;}
.y102{bottom:238.399905pt;}
.y199{bottom:239.199904pt;}
.y16f{bottom:239.519904pt;}
.yb7{bottom:243.519903pt;}
.y12e{bottom:244.479902pt;}
.y63{bottom:245.759902pt;}
.y9a{bottom:249.919900pt;}
.y209{bottom:251.519899pt;}
.y101{bottom:252.639899pt;}
.y2e{bottom:253.439899pt;}
.y198{bottom:253.599899pt;}
.y16e{bottom:255.359898pt;}
.yb6{bottom:260.319896pt;}
.y12d{bottom:261.119896pt;}
.y62{bottom:261.599895pt;}
.yfd{bottom:264.160000pt;}
.yff{bottom:264.480000pt;}
.y99{bottom:265.759894pt;}
.y197{bottom:268.159893pt;}
.y2d{bottom:269.279892pt;}
.y16d{bottom:271.199892pt;}
.yb5{bottom:276.159890pt;}
.y207{bottom:277.120000pt;}
.y61{bottom:277.599889pt;}
.y98{bottom:282.239887pt;}
.yfc{bottom:282.719887pt;}
.y196{bottom:285.439886pt;}
.y2c{bottom:285.599886pt;}
.y16c{bottom:287.199885pt;}
.y205{bottom:291.520000pt;}
.yb4{bottom:292.159883pt;}
.y60{bottom:293.279883pt;}
.y12c{bottom:294.399882pt;}
.y218{bottom:294.559882pt;}
.y97{bottom:298.559881pt;}
.yfb{bottom:300.159880pt;}
.y2b{bottom:302.559879pt;}
.y195{bottom:302.719879pt;}
.y16b{bottom:303.519879pt;}
.y203{bottom:306.080000pt;}
.yb3{bottom:307.839877pt;}
.y5f{bottom:309.119876pt;}
.y12b{bottom:311.679875pt;}
.y96{bottom:315.199874pt;}
.yfa{bottom:315.999874pt;}
.y2a{bottom:318.239873pt;}
.y194{bottom:318.559873pt;}
.y16a{bottom:320.319872pt;}
.y201{bottom:320.480000pt;}
.yb2{bottom:323.679871pt;}
.y5e{bottom:325.119870pt;}
.y95{bottom:331.999867pt;}
.y29{bottom:334.239866pt;}
.y193{bottom:334.399866pt;}
.y1ff{bottom:334.880000pt;}
.y17b{bottom:337.439865pt;}
.y1fe{bottom:337.919865pt;}
.y169{bottom:338.079865pt;}
.yb1{bottom:339.679864pt;}
.y5d{bottom:341.439863pt;}
.y94{bottom:347.839861pt;}
.y12a{bottom:348.639861pt;}
.y28{bottom:350.079860pt;}
.y192{bottom:350.239860pt;}
.y1fd{bottom:352.159859pt;}
.y167{bottom:352.480000pt;}
.y17a{bottom:354.079858pt;}
.yb0{bottom:355.359858pt;}
.y5c{bottom:358.239857pt;}
.y166{bottom:360.799856pt;}
.y129{bottom:363.039855pt;}
.y93{bottom:363.679855pt;}
.y1fb{bottom:363.680000pt;}
.y27{bottom:365.759854pt;}
.y191{bottom:366.079854pt;}
.y1fa{bottom:366.719853pt;}
.y179{bottom:368.479853pt;}
.yaf{bottom:371.359851pt;}
.y5b{bottom:375.519850pt;}
.y128{bottom:377.599849pt;}
.y1f8{bottom:378.080000pt;}
.yf9{bottom:379.519848pt;}
.y92{bottom:379.679848pt;}
.y1f7{bottom:381.119848pt;}
.y26{bottom:381.759847pt;}
.y190{bottom:381.919847pt;}
.y165{bottom:383.999846pt;}
.yae{bottom:387.839845pt;}
.y127{bottom:391.999843pt;}
.y1f5{bottom:392.480000pt;}
.y5a{bottom:392.799843pt;}
.y91{bottom:395.359842pt;}
.y161{bottom:397.440000pt;}
.y25{bottom:397.599841pt;}
.y18f{bottom:397.919841pt;}
.yad{bottom:404.159838pt;}
.y160{bottom:405.439838pt;}
.y126{bottom:406.239838pt;}
.y1f3{bottom:406.880000pt;}
.y59{bottom:408.639837pt;}
.y1f2{bottom:409.919836pt;}
.y90{bottom:411.199836pt;}
.y24{bottom:413.439835pt;}
.y18e{bottom:413.599835pt;}
.y82{bottom:414.239834pt;}
.y15e{bottom:419.360000pt;}
.y125{bottom:420.639832pt;}
.yac{bottom:420.799832pt;}
.y58{bottom:424.479830pt;}
.y1f1{bottom:424.639830pt;}
.yf8{bottom:427.039829pt;}
.y8f{bottom:427.199829pt;}
.y81{bottom:428.799828pt;}
.y15d{bottom:428.959828pt;}
.y23{bottom:429.279828pt;}
.y18d{bottom:429.599828pt;}
.y124{bottom:435.199826pt;}
.yab{bottom:437.599825pt;}
.y57{bottom:440.799824pt;}
.y1f0{bottom:441.919823pt;}
.y15b{bottom:442.400000pt;}
.y8e{bottom:443.039823pt;}
.y18c{bottom:445.119822pt;}
.y80{bottom:445.279822pt;}
.y22{bottom:445.599822pt;}
.yaa{bottom:448.639821pt;}
.y123{bottom:449.599820pt;}
.y15a{bottom:450.879820pt;}
.yf7{bottom:458.719817pt;}
.y8d{bottom:458.879816pt;}
.y1ef{bottom:459.199816pt;}
.y56{bottom:460.639816pt;}
.y121{bottom:461.280000pt;}
.y18b{bottom:461.759815pt;}
.y7f{bottom:461.919815pt;}
.y120{bottom:463.999814pt;}
.y21{bottom:465.759814pt;}
.y159{bottom:473.919810pt;}
.yf6{bottom:474.559810pt;}
.y8c{bottom:475.359810pt;}
.y1ee{bottom:476.159810pt;}
.y55{bottom:476.319809pt;}
.y7e{bottom:478.239809pt;}
.y11f{bottom:479.679808pt;}
.y18a{bottom:481.279807pt;}
.y20{bottom:482.559807pt;}
.y156{bottom:487.360000pt;}
.y1ec{bottom:487.520000pt;}
.y1eb{bottom:490.559804pt;}
.yf5{bottom:490.719804pt;}
.y8b{bottom:491.679803pt;}
.y54{bottom:492.159803pt;}
.y7d{bottom:495.199802pt;}
.y189{bottom:495.679802pt;}
.y1f{bottom:496.959801pt;}
.y11e{bottom:497.599801pt;}
.y1e9{bottom:501.920000pt;}
.y217{bottom:504.959798pt;}
.yf4{bottom:506.559797pt;}
.y8a{bottom:507.519797pt;}
.y53{bottom:508.159797pt;}
.y7c{bottom:510.879796pt;}
.y152{bottom:510.880000pt;}
.y1e{bottom:511.519795pt;}
.y188{bottom:511.679795pt;}
.y11d{bottom:514.239794pt;}
.y1e7{bottom:516.480000pt;}
.yf3{bottom:522.559791pt;}
.y150{bottom:523.040000pt;}
.y89{bottom:523.519791pt;}
.y52{bottom:523.839790pt;}
.y155{bottom:526.399789pt;}
.y7b{bottom:527.359789pt;}
.y187{bottom:527.519789pt;}
.y1d{bottom:529.919788pt;}
.y11c{bottom:530.239788pt;}
.y1e5{bottom:530.880000pt;}
.y1e4{bottom:533.919786pt;}
.y88{bottom:538.079785pt;}
.yf2{bottom:538.239785pt;}
.y51{bottom:539.839784pt;}
.y14c{bottom:540.480000pt;}
.y186{bottom:543.359783pt;}
.y7a{bottom:543.999782pt;}
.y1e2{bottom:545.280000pt;}
.y1c{bottom:545.919782pt;}
.y14a{bottom:546.080000pt;}
.y1e1{bottom:548.319781pt;}
.y87{bottom:549.279780pt;}
.y14f{bottom:549.439780pt;}
.yd8{bottom:551.199780pt;}
.yf1{bottom:554.719778pt;}
.y50{bottom:555.679778pt;}
.y185{bottom:559.199776pt;}
.y1df{bottom:559.520000pt;}
.y1b{bottom:560.319776pt;}
.y79{bottom:560.479776pt;}
.y11b{bottom:561.919775pt;}
.y1de{bottom:562.559775pt;}
.yd7{bottom:567.199773pt;}
.y4f{bottom:571.359771pt;}
.yf0{bottom:571.519771pt;}
.y1dc{bottom:574.080000pt;}
.y1a{bottom:574.719770pt;}
.y149{bottom:574.879770pt;}
.y184{bottom:575.039770pt;}
.y216{bottom:577.119769pt;}
.y78{bottom:577.279769pt;}
.y11a{bottom:577.759769pt;}
.yd6{bottom:583.039767pt;}
.y4e{bottom:587.359765pt;}
.y1da{bottom:588.480000pt;}
.y19{bottom:589.119764pt;}
.yef{bottom:589.279764pt;}
.y183{bottom:590.879764pt;}
.y1d9{bottom:591.519763pt;}
.y148{bottom:592.159763pt;}
.y77{bottom:593.119763pt;}
.y119{bottom:593.439763pt;}
.yd5{bottom:598.879760pt;}
.y4d{bottom:603.199759pt;}
.y18{bottom:603.519759pt;}
.yee{bottom:605.919758pt;}
.y182{bottom:606.719757pt;}
.y147{bottom:608.799756pt;}
.y76{bottom:609.439756pt;}
.yd4{bottom:614.719754pt;}
.y1d7{bottom:617.280000pt;}
.y17{bottom:618.079753pt;}
.y4c{bottom:619.039752pt;}
.yed{bottom:621.919751pt;}
.y181{bottom:622.719751pt;}
.y146{bottom:623.359751pt;}
.y118{bottom:625.279750pt;}
.y75{bottom:626.239750pt;}
.yd3{bottom:630.559748pt;}
.y1d5{bottom:631.840000pt;}
.y16{bottom:632.479747pt;}
.y4b{bottom:634.879746pt;}
.yec{bottom:637.759745pt;}
.y180{bottom:638.559745pt;}
.y145{bottom:639.199744pt;}
.y74{bottom:642.079743pt;}
.y1d3{bottom:646.080000pt;}
.yd2{bottom:646.399741pt;}
.y15{bottom:646.719741pt;}
.y21b{bottom:649.119740pt;}
.y4a{bottom:650.719740pt;}
.yeb{bottom:653.599739pt;}
.y17f{bottom:654.879738pt;}
.y144{bottom:655.039738pt;}
.y73{bottom:657.919737pt;}
.y1d1{bottom:660.480000pt;}
.y117{bottom:660.959736pt;}
.y14{bottom:661.119736pt;}
.yd1{bottom:662.239735pt;}
.y49{bottom:666.559733pt;}
.yea{bottom:669.439732pt;}
.y143{bottom:671.039732pt;}
.y17e{bottom:671.519731pt;}
.y72{bottom:673.599731pt;}
.y1cf{bottom:674.880000pt;}
.y116{bottom:675.359730pt;}
.y178{bottom:675.519730pt;}
.y13{bottom:675.679730pt;}
.y1ce{bottom:677.919729pt;}
.yd0{bottom:678.239729pt;}
.ya9{bottom:681.119728pt;}
.y48{bottom:682.399727pt;}
.ye9{bottom:684.639726pt;}
.y142{bottom:686.719725pt;}
.y17d{bottom:687.359725pt;}
.y71{bottom:688.319725pt;}
.y1cc{bottom:689.280000pt;}
.y115{bottom:689.759724pt;}
.y12{bottom:690.079724pt;}
.y215{bottom:692.319723pt;}
.ycf{bottom:693.919722pt;}
.ya8{bottom:696.799721pt;}
.y47{bottom:698.399721pt;}
.y17c{bottom:698.719721pt;}
.y141{bottom:702.559719pt;}
.y1ca{bottom:703.840000pt;}
.y70{bottom:703.999718pt;}
.y114{bottom:704.159718pt;}
.y11{bottom:704.479718pt;}
.y214{bottom:706.879717pt;}
.yce{bottom:709.759716pt;}
.ya7{bottom:712.799715pt;}
.y46{bottom:714.079714pt;}
.y1c8{bottom:718.080000pt;}
.y140{bottom:718.559713pt;}
.y113{bottom:718.719713pt;}
.y10{bottom:718.879712pt;}
.y6f{bottom:719.839712pt;}
.y1c7{bottom:721.119712pt;}
.ycd{bottom:725.759710pt;}
.ya6{bottom:728.639709pt;}
.y45{bottom:730.079708pt;}
.y112{bottom:732.959707pt;}
.yf{bottom:733.599707pt;}
.y13f{bottom:734.879706pt;}
.y6e{bottom:735.199706pt;}
.y1c6{bottom:735.519706pt;}
.ycc{bottom:741.439703pt;}
.ya5{bottom:744.319702pt;}
.ye8{bottom:745.759702pt;}
.y44{bottom:745.919702pt;}
.y1c4{bottom:746.880000pt;}
.y111{bottom:747.359701pt;}
.y6d{bottom:748.479701pt;}
.y1c3{bottom:749.919700pt;}
.y13e{bottom:751.679699pt;}
.ycb{bottom:757.439697pt;}
.ye{bottom:759.839696pt;}
.ye7{bottom:760.319696pt;}
.ya4{bottom:760.799696pt;}
.y1c1{bottom:761.440000pt;}
.y43{bottom:761.599695pt;}
.y110{bottom:761.759695pt;}
.y6c{bottom:763.839694pt;}
.y1c0{bottom:764.479694pt;}
.y13d{bottom:769.439692pt;}
.yca{bottom:773.279691pt;}
.y10c{bottom:773.280000pt;}
.y10e{bottom:773.600000pt;}
.y1be{bottom:775.840000pt;}
.ye6{bottom:776.159690pt;}
.ya3{bottom:777.279689pt;}
.y42{bottom:777.599689pt;}
.yd{bottom:778.879688pt;}
.yc{bottom:785.919686pt;}
.y13c{bottom:786.239686pt;}
.yc9{bottom:788.959684pt;}
.y1bc{bottom:790.240000pt;}
.y10b{bottom:791.839683pt;}
.ye5{bottom:791.999683pt;}
.y41{bottom:793.439683pt;}
.yb{bottom:796.319681pt;}
.y13b{bottom:802.079679pt;}
.ya{bottom:803.199679pt;}
.y1ba{bottom:804.480000pt;}
.yc8{bottom:804.959678pt;}
.ye4{bottom:807.199677pt;}
.y1b9{bottom:807.519677pt;}
.y40{bottom:809.279676pt;}
.y9{bottom:813.599675pt;}
.y13a{bottom:817.919673pt;}
.y1b7{bottom:819.040000pt;}
.yc7{bottom:820.799672pt;}
.y213{bottom:822.079671pt;}
.y3f{bottom:825.119670pt;}
.y7{bottom:832.319667pt;}
.y1b5{bottom:833.440000pt;}
.y139{bottom:834.239666pt;}
.y1b4{bottom:836.479665pt;}
.yc6{bottom:836.639665pt;}
.ye3{bottom:837.119665pt;}
.y8{bottom:839.839664pt;}
.y3e{bottom:840.959664pt;}
.y1b3{bottom:850.879660pt;}
.y6{bottom:851.199660pt;}
.y138{bottom:851.679659pt;}
.yc5{bottom:852.479659pt;}
.ye2{bottom:854.079658pt;}
.y3d{bottom:856.799657pt;}
.y1b1{bottom:862.240000pt;}
.yc4{bottom:868.319653pt;}
.ye1{bottom:869.759652pt;}
.y5{bottom:870.559652pt;}
.y137{bottom:871.679651pt;}
.y3c{bottom:872.639651pt;}
.y1af{bottom:876.800000pt;}
.y1ae{bottom:879.839648pt;}
.yc3{bottom:884.159646pt;}
.ye0{bottom:885.599646pt;}
.y3b{bottom:888.639645pt;}
.y1ad{bottom:894.079642pt;}
.y4{bottom:898.719641pt;}
.yc2{bottom:899.999640pt;}
.ydf{bottom:901.599639pt;}
.y3a{bottom:904.319638pt;}
.y1ab{bottom:905.440000pt;}
.y1aa{bottom:908.479637pt;}
.yc1{bottom:915.679634pt;}
.yde{bottom:917.919633pt;}
.y1a8{bottom:919.840000pt;}
.y39{bottom:920.159632pt;}
.y1a7{bottom:922.879631pt;}
.y3{bottom:926.879629pt;}
.yc0{bottom:932.319627pt;}
.y1a5{bottom:934.400000pt;}
.ydd{bottom:934.719626pt;}
.y38{bottom:936.159626pt;}
.y1a4{bottom:937.439625pt;}
.y1a2{bottom:962.720000pt;}
.y21a{bottom:965.759614pt;}
.y1{bottom:965.919614pt;}
.hc{height:0.000000pt;}
.h20{height:4.960000pt;}
.h21{height:6.080000pt;}
.h15{height:13.760000pt;}
.h18{height:13.920000pt;}
.h14{height:14.080000pt;}
.h17{height:14.240000pt;}
.h19{height:15.680000pt;}
.h22{height:20.960000pt;}
.h1a{height:22.080000pt;}
.h1f{height:22.720000pt;}
.h1e{height:28.640000pt;}
.h1c{height:30.248628pt;}
.h12{height:31.223028pt;}
.h24{height:32.887370pt;}
.hb{height:34.104089pt;}
.h16{height:34.553484pt;}
.h8{height:35.710464pt;}
.ha{height:36.263995pt;}
.h7{height:37.843100pt;}
.he{height:38.298771pt;}
.h13{height:39.976304pt;}
.h5{height:40.096859pt;}
.h1b{height:41.535807pt;}
.h26{height:41.625536pt;}
.h11{height:41.630703pt;}
.h25{height:44.233639pt;}
.h1{height:44.240443pt;}
.h9{height:44.506350pt;}
.hd{height:48.706447pt;}
.hf{height:49.035709pt;}
.h23{height:50.955709pt;}
.h1d{height:51.595708pt;}
.h27{height:53.295123pt;}
.h2{height:53.301739pt;}
.h4{height:53.328822pt;}
.h6{height:57.565878pt;}
.h10{height:62.361144pt;}
.h3{height:66.960333pt;}
.h0{height:1056.000000pt;}
.w2e{width:0.960000pt;}
.w27{width:2.720000pt;}
.wa{width:3.200000pt;}
.w4{width:3.360000pt;}
.w19{width:4.480000pt;}
.w8{width:5.600000pt;}
.w10{width:5.760000pt;}
.w13{width:7.040000pt;}
.w52{width:8.640000pt;}
.w6{width:9.440000pt;}
.w1{width:9.600000pt;}
.w2{width:13.120000pt;}
.w20{width:13.760000pt;}
.w1f{width:14.560000pt;}
.wf{width:15.360000pt;}
.w4b{width:15.840000pt;}
.wb{width:16.000000pt;}
.w2c{width:16.960000pt;}
.w3c{width:17.760000pt;}
.w53{width:19.680000pt;}
.w12{width:19.840000pt;}
.w43{width:22.720000pt;}
.w54{width:23.200000pt;}
.w40{width:23.680000pt;}
.wc{width:29.760000pt;}
.w50{width:30.880000pt;}
.w5{width:33.760000pt;}
.w7{width:35.040000pt;}
.w21{width:36.480000pt;}
.w3{width:36.800000pt;}
.wd{width:36.960000pt;}
.w1a{width:40.000000pt;}
.w16{width:44.320000pt;}
.w35{width:48.320000pt;}
.w24{width:48.480000pt;}
.w1e{width:54.560000pt;}
.w41{width:65.120000pt;}
.w18{width:67.040000pt;}
.w4d{width:71.040000pt;}
.w51{width:71.360000pt;}
.w49{width:75.200000pt;}
.w4f{width:75.360000pt;}
.w17{width:76.160000pt;}
.w4e{width:78.560000pt;}
.w4c{width:78.720000pt;}
.w30{width:81.440000pt;}
.w4a{width:82.720000pt;}
.w37{width:91.200000pt;}
.w45{width:92.320000pt;}
.w47{width:100.640000pt;}
.w1b{width:109.440000pt;}
.w1c{width:111.680000pt;}
.w44{width:114.720000pt;}
.w33{width:115.840000pt;}
.we{width:118.400000pt;}
.w32{width:119.520000pt;}
.w39{width:122.560000pt;}
.w11{width:124.640000pt;}
.w29{width:131.360000pt;}
.w2d{width:134.240000pt;}
.w25{width:135.360000pt;}
.w3e{width:136.320000pt;}
.w28{width:137.920000pt;}
.w42{width:139.360000pt;}
.w3d{width:146.240000pt;}
.w26{width:147.200000pt;}
.w14{width:148.800000pt;}
.w15{width:151.840000pt;}
.w31{width:159.360000pt;}
.w3a{width:160.000000pt;}
.w36{width:173.760000pt;}
.w1d{width:180.160000pt;}
.w22{width:180.320000pt;}
.w38{width:195.520000pt;}
.w2f{width:200.960000pt;}
.w9{width:210.400000pt;}
.w34{width:210.720000pt;}
.w23{width:238.400000pt;}
.w46{width:256.160000pt;}
.w48{width:256.320000pt;}
.w3f{width:258.720000pt;}
.w3b{width:264.640000pt;}
.w2b{width:265.760000pt;}
.w2a{width:286.720000pt;}
.w0{width:816.000000pt;}
.x94{left:-438.400068pt;}
.x93{left:-353.600102pt;}
.x99{left:-326.560113pt;}
.x97{left:-291.040127pt;}
.x9d{left:-195.360165pt;}
.x89{left:-180.160056pt;}
.x9c{left:-173.600174pt;}
.x9e{left:-159.840179pt;}
.x66{left:-152.000068pt;}
.x65{left:-148.800069pt;}
.x90{left:-147.040184pt;}
.xa4{left:-139.200188pt;}
.xa1{left:-136.320189pt;}
.x91{left:-131.360191pt;}
.x9a{left:-119.360195pt;}
.x88{left:-111.840084pt;}
.x80{left:-109.600085pt;}
.xa5{left:-92.160206pt;}
.x96{left:-81.440211pt;}
.x6a{left:-76.160098pt;}
.x6d{left:-67.200102pt;}
.x8a{left:-54.720107pt;}
.x8f{left:-48.320224pt;}
.x69{left:-44.480111pt;}
.x75{left:-40.000113pt;}
.x8d{left:-36.640114pt;}
.xa2{left:-23.520234pt;}
.x95{left:-16.800236pt;}
.x8b{left:-14.720123pt;}
.x74{left:-4.640127pt;}
.x71{left:-3.520127pt;}
.x0{left:0.000000pt;}
.x3{left:141.119944pt;}
.x6{left:146.720135pt;}
.x1f{left:151.839939pt;}
.x21{left:154.239938pt;}
.x4d{left:156.799890pt;}
.x22{left:157.759937pt;}
.x7{left:159.519936pt;}
.x20{left:164.319934pt;}
.x36{left:168.479933pt;}
.x28{left:169.439932pt;}
.x1{left:170.879932pt;}
.x24{left:172.479931pt;}
.x3d{left:180.800000pt;}
.x44{left:181.759927pt;}
.x35{left:186.239926pt;}
.x3e{left:190.240000pt;}
.x46{left:191.360000pt;}
.x3f{left:203.360000pt;}
.x47{left:204.320000pt;}
.x1b{left:209.759916pt;}
.x4e{left:212.160000pt;}
.x1c{left:214.879914pt;}
.x1d{left:217.599913pt;}
.x1e{left:222.719911pt;}
.x8{left:237.599905pt;}
.x40{left:240.000000pt;}
.x48{left:241.120000pt;}
.x16{left:242.079903pt;}
.x41{left:243.360000pt;}
.x37{left:245.279902pt;}
.x4f{left:248.959900pt;}
.x61{left:254.240000pt;}
.x49{left:257.280000pt;}
.x60{left:261.439895pt;}
.x29{left:264.639894pt;}
.x63{left:266.720000pt;}
.x23{left:269.439892pt;}
.x4a{left:273.120000pt;}
.x57{left:274.880000pt;}
.x50{left:276.159890pt;}
.x2a{left:277.279889pt;}
.x9{left:280.799888pt;}
.x52{left:284.639886pt;}
.x42{left:286.400000pt;}
.x38{left:287.839885pt;}
.x51{left:288.959884pt;}
.x55{left:294.400000pt;}
.x39{left:299.519880pt;}
.x2b{left:300.799880pt;}
.x53{left:303.680000pt;}
.x4b{left:306.080000pt;}
.x64{left:307.520000pt;}
.x54{left:309.919876pt;}
.x2c{left:313.439875pt;}
.x56{left:316.159874pt;}
.x62{left:317.920000pt;}
.x17{left:319.519872pt;}
.x43{left:321.440000pt;}
.x18{left:324.799870pt;}
.x3c{left:327.199869pt;}
.xa{left:328.319869pt;}
.x31{left:333.439937pt;}
.x5d{left:335.679916pt;}
.xb{left:338.239865pt;}
.x33{left:340.959810pt;}
.x85{left:343.999862pt;}
.x12{left:348.159861pt;}
.x7a{left:369.599852pt;}
.x2d{left:373.439851pt;}
.x3a{left:374.559850pt;}
.x5e{left:377.759849pt;}
.x5f{left:381.279847pt;}
.x83{left:386.399845pt;}
.x2e{left:391.039844pt;}
.x8c{left:396.479841pt;}
.xc{left:403.679839pt;}
.x13{left:409.759836pt;}
.x5{left:411.999835pt;}
.xd{left:420.630498pt;}
.x2f{left:422.559831pt;}
.x14{left:425.279830pt;}
.x58{left:433.120000pt;}
.x7b{left:434.240000pt;}
.x86{left:435.999826pt;}
.x78{left:437.119825pt;}
.x59{left:439.520000pt;}
.x7c{left:443.839822pt;}
.x7d{left:448.000000pt;}
.x70{left:455.519818pt;}
.x67{left:456.639817pt;}
.x6b{left:459.199816pt;}
.x68{left:460.800000pt;}
.x45{left:462.080000pt;}
.x19{left:465.919814pt;}
.x7f{left:467.359813pt;}
.x84{left:468.640000pt;}
.x1a{left:471.359811pt;}
.x6c{left:476.640000pt;}
.x76{left:480.639808pt;}
.x77{left:488.480000pt;}
.x4c{left:508.159797pt;}
.x87{left:515.680000pt;}
.xe{left:516.799793pt;}
.x72{left:522.239791pt;}
.x73{left:526.560000pt;}
.x79{left:531.840000pt;}
.xf{left:534.879786pt;}
.x15{left:542.879783pt;}
.x5a{left:559.199776pt;}
.x30{left:573.759770pt;}
.x10{left:577.439769pt;}
.x81{left:579.999768pt;}
.x82{left:584.320000pt;}
.x7e{left:585.919766pt;}
.x6e{left:586.879765pt;}
.x6f{left:591.040000pt;}
.x11{left:597.279761pt;}
.x5c{left:600.959818pt;}
.x8e{left:608.000000pt;}
.x9b{left:616.479753pt;}
.x3b{left:623.679751pt;}
.x9f{left:627.679749pt;}
.x5b{left:628.639716pt;}
.xa0{left:631.199748pt;}
.x32{left:632.479747pt;}
.x34{left:635.199746pt;}
.xa3{left:637.759745pt;}
.x98{left:638.719745pt;}
.x25{left:651.839739pt;}
.x2{left:653.279739pt;}
.x26{left:670.719732pt;}
.x92{left:679.039728pt;}
.x4{left:680.799728pt;}
.x27{left:683.199727pt;}
}




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