
    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_b586c93941b34d3a500104ed.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_6ebd4348d99733bee912503c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_6b5af77c9e8e4e9b9edd229d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.749512;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_c18f036b0ffbd614f6cec160.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.944824;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_426e23dd5c960c19d2d7f33a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e766d90cd4f88644fe5e292e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_4dec87993262d588c80aea01.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.062988;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_2cccc5ca861dc97df6f70a10.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fcc4912efd0f9cd9deda3384.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_84a5546f756aa9bacdf7a58f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.869629;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);}
.vd{vertical-align:-44.639924px;}
.v4{vertical-align:-18.000000px;}
.ve{vertical-align:-5.759996px;}
.v9{vertical-align:-2.880063px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:18.000000px;}
.v3{vertical-align:20.880063px;}
.v7{vertical-align:28.079955px;}
.v5{vertical-align:30.960022px;}
.v1{vertical-align:35.279986px;}
.v2{vertical-align:40.319996px;}
.vc{vertical-align:44.639919px;}
.v6{vertical-align:48.960022px;}
.va{vertical-align:61.919770px;}
.vb{vertical-align:79.919905px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012488px;}
.ls3{letter-spacing:0.034502px;}
.lsc{letter-spacing:0.045775px;}
.ls8{letter-spacing:0.049958px;}
.ls6{letter-spacing:0.051548px;}
.lsa{letter-spacing:0.051682px;}
.ls5{letter-spacing:0.259355px;}
.lsb{letter-spacing:0.719172px;}
.ls9{letter-spacing:0.719307px;}
.lsf{letter-spacing:18.881363px;}
.lse{letter-spacing:45.521354px;}
.lsd{letter-spacing:72.881363px;}
.ls0{letter-spacing:342.785606px;}
.ls7{letter-spacing:948.275366px;}
.ls2{letter-spacing:979.235388px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-41.761620px;}
.wsa{word-spacing:-17.551343px;}
.ws5{word-spacing:-14.940563px;}
.ws8{word-spacing:-13.556226px;}
.ws9{word-spacing:-13.546338px;}
.ws7{word-spacing:-13.506269px;}
.ws0{word-spacing:-13.500563px;}
.ws3{word-spacing:-12.060450px;}
.ws1{word-spacing:-9.720371px;}
.ws2{word-spacing:-9.000349px;}
.ws6{word-spacing:0.000000px;}
._7d{margin-left:-1859.477325px;}
._77{margin-left:-1840.037428px;}
._80{margin-left:-8.240663px;}
._3{margin-left:-6.881197px;}
._8{margin-left:-5.786625px;}
._4{margin-left:-3.886770px;}
._5{margin-left:-2.536264px;}
._2{margin-left:-1.368843px;}
._0{width:1.384103px;}
._6{width:2.961408px;}
._7{width:4.114958px;}
._d{width:5.218925px;}
._a{width:6.414637px;}
._9{width:8.168753px;}
._f{width:9.253111px;}
._12{width:11.155190px;}
._10{width:12.321996px;}
._11{width:13.501047px;}
._92{width:14.603002px;}
._82{width:15.962271px;}
._e{width:17.023137px;}
._16{width:18.117066px;}
._15{width:20.092489px;}
._14{width:21.205561px;}
._7f{width:22.450997px;}
._81{width:23.878987px;}
._13{width:24.991592px;}
._c{width:26.226523px;}
._b{width:27.611560px;}
._17{width:30.133947px;}
._93{width:31.826862px;}
._94{width:33.013516px;}
._38{width:46.573191px;}
._2b{width:48.013223px;}
._45{width:53.842075px;}
._53{width:62.465908px;}
._2e{width:63.782124px;}
._64{width:66.013222px;}
._25{width:68.605715px;}
._34{width:70.930741px;}
._28{width:75.970039px;}
._4f{width:78.126884px;}
._5e{width:80.259565px;}
._44{width:81.519067px;}
._62{width:82.583654px;}
._21{width:86.605419px;}
._89{width:87.666835px;}
._5f{width:89.998686px;}
._1a{width:91.479539px;}
._2c{width:92.848382px;}
._36{width:94.827951px;}
._3b{width:101.364581px;}
._59{width:103.227199px;}
._24{width:105.613303px;}
._33{width:107.788491px;}
._8c{width:108.833626px;}
._3a{width:110.653285px;}
._5a{width:111.923955px;}
._66{width:113.012258px;}
._58{width:114.052209px;}
._39{width:116.582406px;}
._87{width:117.639050px;}
._5b{width:118.656233px;}
._37{width:119.776023px;}
._1b{width:121.242447px;}
._4d{width:122.522878px;}
._26{width:123.559058px;}
._1e{width:125.773218px;}
._30{width:127.769323px;}
._85{width:129.030536px;}
._4b{width:130.093178px;}
._40{width:134.775414px;}
._27{width:135.782124px;}
._31{width:137.304657px;}
._65{width:140.031329px;}
._8f{width:142.880756px;}
._42{width:144.069354px;}
._48{width:145.082384px;}
._1f{width:148.505939px;}
._19{width:151.280867px;}
._57{width:152.635275px;}
._43{width:155.184747px;}
._2f{width:157.252372px;}
._6e{width:161.160255px;}
._8b{width:162.614205px;}
._7a{width:164.999941px;}
._32{width:166.132742px;}
._50{width:168.039068px;}
._79{width:170.153833px;}
._2d{width:172.134914px;}
._8a{width:173.986179px;}
._55{width:176.319456px;}
._47{width:178.857140px;}
._6a{width:181.584959px;}
._3c{width:183.827927px;}
._5c{width:188.147959px;}
._67{width:190.590784px;}
._6c{width:191.633599px;}
._5d{width:193.473186px;}
._20{width:194.627968px;}
._8e{width:195.968174px;}
._4c{width:197.217061px;}
._61{width:198.386842px;}
._90{width:200.570108px;}
._49{width:201.844584px;}
._1d{width:203.498275px;}
._74{width:205.137250px;}
._70{width:206.522436px;}
._35{width:207.837178px;}
._68{width:209.253445px;}
._6f{width:210.907137px;}
._18{width:212.031360px;}
._86{width:213.779284px;}
._60{width:214.804607px;}
._2a{width:219.436526px;}
._23{width:221.232505px;}
._75{width:223.229620px;}
._78{width:224.947722px;}
._4a{width:226.488941px;}
._73{width:227.787289px;}
._41{width:232.533689px;}
._7b{width:233.539198px;}
._3f{width:237.753765px;}
._1c{width:240.870299px;}
._51{width:244.145438px;}
._3d{width:246.034251px;}
._56{width:248.038079px;}
._3e{width:254.891042px;}
._29{width:257.430267px;}
._52{width:259.400019px;}
._71{width:261.203610px;}
._22{width:270.715298px;}
._63{width:271.730251px;}
._46{width:273.890341px;}
._4e{width:284.035381px;}
._6b{width:289.452060px;}
._54{width:293.278837px;}
._69{width:303.043456px;}
._72{width:308.101750px;}
._76{width:309.754959px;}
._91{width:318.358320px;}
._7e{width:322.373659px;}
._7c{width:323.796647px;}
._6d{width:327.260675px;}
._8d{width:360.410234px;}
._1{width:371.093443px;}
._88{width:392.042346px;}
._84{width:397.588977px;}
._83{width:411.324165px;}
.fc5{color:rgb(108,117,125);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,102,0);}
.fc1{color:rgb(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.001395px;}
.fs7{font-size:38.881485px;}
.fs9{font-size:41.761620px;}
.fs2{font-size:48.241800px;}
.fs3{font-size:54.002250px;}
.fs0{font-size:59.762250px;}
.fsa{font-size:63.362250px;}
.fs1{font-size:66.242700px;}
.fs5{font-size:95.763600px;}
.fs6{font-size:102.244050px;}
.fs4{font-size:108.004050px;}
.y0{bottom:0.000000px;}
.yb4{bottom:2.160015px;}
.y1a8{bottom:2.879928px;}
.y7b{bottom:2.879997px;}
.y12{bottom:2.879998px;}
.y91{bottom:2.880006px;}
.y1b3{bottom:2.880015px;}
.y9f{bottom:2.880031px;}
.ycd{bottom:2.880065px;}
.yd5{bottom:3.059966px;}
.y7e{bottom:3.059967px;}
.y97{bottom:3.060001px;}
.ya6{bottom:3.060002px;}
.yfd{bottom:3.060035px;}
.yba{bottom:3.060036px;}
.ya3{bottom:3.239971px;}
.ye0{bottom:3.239988px;}
.y8c{bottom:3.240004px;}
.yf{bottom:3.240006px;}
.y4{bottom:63.180039px;}
.y1a7{bottom:104.760132px;}
.y224{bottom:106.200028px;}
.y16f{bottom:114.300041px;}
.y1a6{bottom:115.380066px;}
.y73{bottom:115.560036px;}
.y135{bottom:117.180039px;}
.y8a{bottom:117.540047px;}
.ydd{bottom:118.440033px;}
.y133{bottom:120.420043px;}
.y17c{bottom:122.940033px;}
.y109{bottom:127.620072px;}
.y89{bottom:128.340088px;}
.y1e9{bottom:128.880066px;}
.y177{bottom:130.140060px;}
.y15e{bottom:130.320099px;}
.y223{bottom:130.680039px;}
.y8b{bottom:132.840088px;}
.y2d{bottom:135.000068px;}
.y132{bottom:136.080093px;}
.y1a4{bottom:136.440033px;}
.y16e{bottom:138.960091px;}
.y1df{bottom:139.140060px;}
.y134{bottom:139.320099px;}
.y72{bottom:140.040047px;}
.ydc{bottom:143.640060px;}
.y20b{bottom:146.340088px;}
.y1a5{bottom:147.240074px;}
.y17b{bottom:147.600083px;}
.y108{bottom:152.280052px;}
.y1e8{bottom:153.540047px;}
.ydb{bottom:154.260064px;}
.y56{bottom:154.800041px;}
.y15d{bottom:154.980079px;}
.y222{bottom:155.340088px;}
.y2c{bottom:159.660049px;}
.y86{bottom:160.560036px;}
.y131{bottom:161.280052px;}
.y16d{bottom:163.440033px;}
.y1de{bottom:163.620072px;}
.y88{bottom:167.940033px;}
.y1a3{bottom:168.300041px;}
.y20a{bottom:171.000068px;}
.y87{bottom:171.180039px;}
.y71{bottom:171.360077px;}
.y130{bottom:172.260064px;}
.y107{bottom:176.940033px;}
.y1e7{bottom:178.200096px;}
.y85{bottom:178.920043px;}
.y55{bottom:179.460091px;}
.y221{bottom:180.000068px;}
.y2b{bottom:184.140060px;}
.y16c{bottom:188.100083px;}
.y1dd{bottom:188.280052px;}
.yda{bottom:190.260064px;}
.y187{bottom:194.760064px;}
.y209{bottom:195.480079px;}
.y17a{bottom:196.740074px;}
.y1a0{bottom:200.160049px;}
.y106{bottom:201.420043px;}
.y84{bottom:203.400055px;}
.y54{bottom:203.940033px;}
.y15c{bottom:204.120072px;}
.y220{bottom:204.480079px;}
.y70{bottom:205.200096px;}
.y12f{bottom:205.380066px;}
.y12d{bottom:208.620072px;}
.y2a{bottom:208.800041px;}
.y1a2{bottom:210.780052px;}
.y1e6{bottom:211.680039px;}
.y16b{bottom:212.760064px;}
.y1dc{bottom:212.940033px;}
.y83{bottom:214.020058px;}
.y19e{bottom:218.520058px;}
.yd9{bottom:219.060036px;}
.y208{bottom:220.140060px;}
.y186{bottom:221.400055px;}
.y12c{bottom:224.280052px;}
.y105{bottom:226.080093px;}
.y1a1{bottom:226.260064px;}
.y12e{bottom:227.520058px;}
.y179{bottom:228.060036px;}
.y53{bottom:228.600083px;}
.y15b{bottom:228.780052px;}
.y21f{bottom:229.140060px;}
.y6f{bottom:229.860077px;}
.y29{bottom:233.460091px;}
.y19f{bottom:234.000068px;}
.y1e5{bottom:236.340088px;}
.y16a{bottom:237.240074px;}
.y1db{bottom:237.420043px;}
.y207{bottom:244.080093px;}
.yd8{bottom:244.260064px;}
.y185{bottom:246.060036px;}
.y81{bottom:246.240074px;}
.y19c{bottom:247.320099px;}
.y12b{bottom:249.480079px;}
.y104{bottom:250.740074px;}
.y52{bottom:253.260064px;}
.y21e{bottom:253.800041px;}
.y6e{bottom:254.340088px;}
.yd7{bottom:255.060036px;}
.y80{bottom:257.040047px;}
.y28{bottom:257.940033px;}
.y19b{bottom:258.120072px;}
.y12a{bottom:260.460091px;}
.y169{bottom:261.900055px;}
.y1da{bottom:262.080093px;}
.y82{bottom:264.780052px;}
.y19d{bottom:265.860077px;}
.y206{bottom:269.280052px;}
.y1e4{bottom:270.000068px;}
.y184{bottom:270.540047px;}
.y103{bottom:275.220085px;}
.y51{bottom:277.740074px;}
.y15a{bottom:277.920043px;}
.y21d{bottom:278.280052px;}
.y6d{bottom:279.000068px;}
.y19a{bottom:279.180039px;}
.y27{bottom:282.600083px;}
.y168{bottom:286.560036px;}
.y1d9{bottom:286.740074px;}
.yd4{bottom:287.100083px;}
.y7d{bottom:289.080093px;}
.y197{bottom:289.800041px;}
.y129{bottom:293.580093px;}
.y205{bottom:293.940033px;}
.yd6{bottom:294.660049px;}
.y183{bottom:295.200096px;}
.y7f{bottom:296.640060px;}
.y199{bottom:297.720085px;}
.yd3{bottom:297.900055px;}
.y7c{bottom:299.880066px;}
.y50{bottom:302.400055px;}
.y159{bottom:302.580093px;}
.y21c{bottom:302.940033px;}
.y1e3{bottom:303.480079px;}
.y6c{bottom:303.660049px;}
.y128{bottom:304.560036px;}
.y196{bottom:305.460091px;}
.y26{bottom:307.260064px;}
.y167{bottom:311.040047px;}
.y1d8{bottom:311.220085px;}
.y198{bottom:313.200096px;}
.y204{bottom:318.600083px;}
.y182{bottom:319.860077px;}
.y102{bottom:324.540047px;}
.y195{bottom:326.520058px;}
.y4f{bottom:327.060036px;}
.y21b{bottom:327.600083px;}
.y6b{bottom:328.140060px;}
.yd1{bottom:330.120072px;}
.y25{bottom:331.740074px;}
.y78{bottom:334.980079px;}
.y166{bottom:335.700096px;}
.y1d7{bottom:335.880066px;}
.y192{bottom:337.140060px;}
.y127{bottom:337.680039px;}
.y7a{bottom:339.840088px;}
.yd0{bottom:340.740074px;}
.y77{bottom:342.720085px;}
.y203{bottom:343.080093px;}
.y181{bottom:344.340088px;}
.y194{bottom:344.880066px;}
.yd2{bottom:348.480079px;}
.y126{bottom:348.660049px;}
.y101{bottom:349.020058px;}
.y79{bottom:350.460091px;}
.y189{bottom:351.180039px;}
.y4e{bottom:351.540047px;}
.y158{bottom:351.720085px;}
.y21a{bottom:352.080093px;}
.y1e2{bottom:352.260064px;}
.y6a{bottom:352.800041px;}
.y123{bottom:355.320099px;}
.y165{bottom:360.360077px;}
.y193{bottom:360.540047px;}
.y24{bottom:365.400055px;}
.y202{bottom:367.740074px;}
.y180{bottom:369.000068px;}
.y121{bottom:370.800041px;}
.y100{bottom:373.680039px;}
.y191{bottom:373.860077px;}
.y4d{bottom:376.200096px;}
.y76{bottom:376.740074px;}
.y69{bottom:377.460091px;}
.y125{bottom:381.780052px;}
.y157{bottom:383.040047px;}
.y18f{bottom:384.480079px;}
.y164{bottom:384.840088px;}
.y1d6{bottom:385.020058px;}
.y122{bottom:386.280052px;}
.y18e{bottom:392.220085px;}
.y201{bottom:392.400055px;}
.y124{bottom:392.760064px;}
.y17f{bottom:400.320099px;}
.y4c{bottom:400.860077px;}
.y75{bottom:401.400055px;}
.ycc{bottom:401.940033px;}
.y23{bottom:405.000068px;}
.y190{bottom:407.880066px;}
.y163{bottom:409.500068px;}
.y1d5{bottom:409.680039px;}
.y68{bottom:411.120072px;}
.yce{bottom:412.560036px;}
.y156{bottom:416.880066px;}
.ycf{bottom:417.060036px;}
.ycb{bottom:420.300041px;}
.y11f{bottom:423.000068px;}
.y4b{bottom:425.340088px;}
.y219{bottom:425.880066px;}
.y1e1{bottom:426.060036px;}
.y18d{bottom:426.960091px;}
.y11e{bottom:430.740074px;}
.y162{bottom:434.160049px;}
.y1d4{bottom:434.340088px;}
.y120{bottom:438.480079px;}
.y22{bottom:438.660049px;}
.yff{bottom:438.840088px;}
.y155{bottom:441.360077px;}
.y200{bottom:441.540047px;}
.yc9{bottom:444.780052px;}
.y4a{bottom:450.000068px;}
.y67{bottom:450.540047px;}
.yc8{bottom:455.400055px;}
.y161{bottom:458.640060px;}
.y1d3{bottom:458.820099px;}
.y11d{bottom:459.180039px;}
.yca{bottom:459.900055px;}
.y21{bottom:463.140060px;}
.yfe{bottom:463.860077px;}
.y154{bottom:466.020058px;}
.y1ff{bottom:466.200096px;}
.y74{bottom:468.360077px;}
.y49{bottom:474.660049px;}
.y66{bottom:475.200096px;}
.y160{bottom:483.300041px;}
.y1d2{bottom:483.480079px;}
.y11c{bottom:483.840088px;}
.yfc{bottom:487.440033px;}
.yc7{bottom:487.620072px;}
.y20{bottom:487.800041px;}
.y153{bottom:490.680039px;}
.yc5{bottom:495.180039px;}
.yfb{bottom:498.240074px;}
.yc4{bottom:498.420043px;}
.y48{bottom:499.140060px;}
.y18c{bottom:499.680039px;}
.y65{bottom:499.860077px;}
.yc6{bottom:506.160049px;}
.y11b{bottom:507.960091px;}
.y1d1{bottom:508.140060px;}
.y1f{bottom:512.460091px;}
.y18a{bottom:514.620072px;}
.y152{bottom:515.160049px;}
.y1fe{bottom:515.340088px;}
.y47{bottom:523.800041px;}
.y64{bottom:524.340088px;}
.yc2{bottom:530.460091px;}
.y11a{bottom:532.440033px;}
.y1d0{bottom:532.620072px;}
.y1e{bottom:536.940033px;}
.y178{bottom:539.280052px;}
.y151{bottom:539.820099px;}
.y1fd{bottom:540.000068px;}
.yfa{bottom:541.080093px;}
.yc3{bottom:541.260064px;}
.y18b{bottom:541.620072px;}
.y46{bottom:548.460091px;}
.y63{bottom:549.000068px;}
.y119{bottom:557.100083px;}
.y1cf{bottom:557.280052px;}
.y1e0{bottom:558.000068px;}
.y1d{bottom:561.600083px;}
.y150{bottom:564.480079px;}
.y45{bottom:572.940033px;}
.yf9{bottom:573.300041px;}
.yc1{bottom:573.480079px;}
.y62{bottom:573.660049px;}
.y118{bottom:581.760064px;}
.y1ce{bottom:581.940033px;}
.yf8{bottom:583.920043px;}
.yc0{bottom:584.100083px;}
.y1c{bottom:586.260064px;}
.y14f{bottom:588.960091px;}
.y1fc{bottom:589.140060px;}
.y44{bottom:597.600083px;}
.y61{bottom:598.140060px;}
.y117{bottom:606.240074px;}
.y1cd{bottom:606.420043px;}
.y1b{bottom:610.740074px;}
.y14e{bottom:613.620072px;}
.y1fb{bottom:613.800041px;}
.yf5{bottom:616.140060px;}
.ybe{bottom:616.320099px;}
.yf7{bottom:618.300041px;}
.y43{bottom:622.260064px;}
.y60{bottom:622.800041px;}
.ybd{bottom:626.940033px;}
.y116{bottom:630.900055px;}
.yf6{bottom:631.440033px;}
.ybf{bottom:634.860077px;}
.y1a{bottom:635.400055px;}
.y1cc{bottom:637.740074px;}
.y14d{bottom:638.280052px;}
.y42{bottom:646.740074px;}
.y218{bottom:647.280052px;}
.y5f{bottom:647.460091px;}
.y115{bottom:655.560036px;}
.yb9{bottom:659.160049px;}
.y19{bottom:660.060036px;}
.y14c{bottom:662.760064px;}
.y1fa{bottom:662.940033px;}
.yf4{bottom:666.540047px;}
.yf3{bottom:669.780052px;}
.ybc{bottom:669.960091px;}
.y41{bottom:671.400055px;}
.y1cb{bottom:671.580093px;}
.y5e{bottom:671.940033px;}
.yb7{bottom:677.700096px;}
.y114{bottom:680.040047px;}
.y18{bottom:684.540047px;}
.ybb{bottom:685.440033px;}
.y14b{bottom:687.420078px;}
.y1f9{bottom:687.600083px;}
.y1c9{bottom:690.120072px;}
.yb8{bottom:693.180073px;}
.y40{bottom:696.060070px;}
.y5d{bottom:696.600083px;}
.y1ca{bottom:700.740074px;}
.y113{bottom:704.700061px;}
.yf2{bottom:705.600083px;}
.y1c7{bottom:708.660049px;}
.y17{bottom:709.200061px;}
.y188{bottom:711.360077px;}
.y14a{bottom:712.080059px;}
.yb6{bottom:717.660049px;}
.y3f{bottom:720.540081px;}
.y217{bottom:721.080059px;}
.y5c{bottom:721.260064px;}
.y1c8{bottom:724.140060px;}
.yb5{bottom:728.280052px;}
.y112{bottom:729.360077px;}
.yf1{bottom:730.800076px;}
.y16{bottom:733.860077px;}
.y149{bottom:736.560070px;}
.y1f8{bottom:736.740074px;}
.y1c6{bottom:737.460056px;}
.yf0{bottom:741.600083px;}
.y3e{bottom:745.200061px;}
.y5b{bottom:745.740074px;}
.y1c5{bottom:748.080059px;}
.y111{bottom:753.840054px;}
.y15{bottom:758.340054px;}
.yb1{bottom:760.500068px;}
.y148{bottom:761.220051px;}
.y1f7{bottom:761.400055px;}
.y1c4{bottom:769.320065px;}
.y3d{bottom:769.860077px;}
.y5a{bottom:770.400055px;}
.yb2{bottom:771.300076px;}
.yee{bottom:773.820065px;}
.y110{bottom:778.500068px;}
.yb0{bottom:779.040081px;}
.y1c3{bottom:779.940067px;}
.yef{bottom:781.200061px;}
.yb3{bottom:781.380066px;}
.yed{bottom:784.440067px;}
.y147{bottom:785.880066px;}
.ye{bottom:787.320065px;}
.y14{bottom:790.200061px;}
.y3c{bottom:794.340054px;}
.y216{bottom:794.880066px;}
.y59{bottom:795.060070px;}
.y1c1{bottom:801.000068px;}
.y10f{bottom:803.160049px;}
.yad{bottom:803.520058px;}
.y13{bottom:804.060070px;}
.y146{bottom:810.360077px;}
.y1f6{bottom:810.540081px;}
.yaf{bottom:810.900055px;}
.y1c2{bottom:811.800076px;}
.yae{bottom:814.140060px;}
.y11{bottom:815.040081px;}
.yeb{bottom:816.660049px;}
.y10{bottom:817.920078px;}
.y3b{bottom:819.000068px;}
.y58{bottom:819.540081px;}
.yac{bottom:821.880066px;}
.yec{bottom:824.040081px;}
.yea{bottom:827.280052px;}
.y10e{bottom:827.640060px;}
.y1c0{bottom:832.860077px;}
.yd{bottom:833.220051px;}
.y145{bottom:835.020058px;}
.y1f5{bottom:835.200061px;}
.y17d{bottom:837.000068px;}
.y1bf{bottom:843.480079px;}
.y3a{bottom:843.660049px;}
.y215{bottom:844.200061px;}
.ya9{bottom:846.360077px;}
.y10d{bottom:852.300076px;}
.y57{bottom:853.200061px;}
.yab{bottom:853.740074px;}
.yaa{bottom:856.980079px;}
.yc{bottom:858.780052px;}
.ye9{bottom:859.500068px;}
.y144{bottom:859.680073px;}
.ya8{bottom:864.720051px;}
.y39{bottom:868.140060px;}
.y214{bottom:868.680073px;}
.ye8{bottom:870.300076px;}
.y1be{bottom:875.340054px;}
.y10c{bottom:876.960056px;}
.yb{bottom:881.280052px;}
.y1bd{bottom:883.080059px;}
.y15f{bottom:883.620072px;}
.y143{bottom:884.160049px;}
.y1f4{bottom:884.340054px;}
.ya5{bottom:889.200061px;}
.y38{bottom:892.800076px;}
.y213{bottom:893.340054px;}
.y1bc{bottom:896.400055px;}
.ya4{bottom:900.000068px;}
.y10b{bottom:901.440067px;}
.ye6{bottom:902.520058px;}
.y1bb{bottom:907.200061px;}
.ya7{bottom:907.740074px;}
.ya{bottom:908.280052px;}
.y142{bottom:908.820065px;}
.y1f3{bottom:909.000068px;}
.ye7{bottom:913.140060px;}
.y37{bottom:917.460056px;}
.y212{bottom:918.000068px;}
.ye4{bottom:920.880066px;}
.y176{bottom:926.100083px;}
.y1b9{bottom:928.260064px;}
.y9{bottom:930.780052px;}
.y9e{bottom:932.220051px;}
.y10a{bottom:932.760064px;}
.y1f2{bottom:933.480079px;}
.ye5{bottom:936.360077px;}
.y1ba{bottom:938.880066px;}
.ya2{bottom:939.600083px;}
.y141{bottom:940.140060px;}
.y36{bottom:941.940067px;}
.y211{bottom:942.480079px;}
.ya1{bottom:942.840054px;}
.y1b8{bottom:946.620072px;}
.y9c{bottom:950.580059px;}
.y175{bottom:950.760064px;}
.y1f1{bottom:958.140060px;}
.ya0{bottom:958.320065px;}
.y1b6{bottom:960.120072px;}
.ye3{bottom:964.620072px;}
.y9d{bottom:966.060070px;}
.y35{bottom:966.600083px;}
.y8{bottom:966.780053px;}
.y210{bottom:967.140060px;}
.y1b7{bottom:970.740074px;}
.y140{bottom:974.520058px;}
.y174{bottom:975.240074px;}
.y1b5{bottom:978.480063px;}
.y1f0{bottom:982.800058px;}
.y9a{bottom:990.540064px;}
.y34{bottom:991.260064px;}
.y1b2{bottom:991.800058px;}
.ye2{bottom:993.420061px;}
.y13f{bottom:998.280069px;}
.y173{bottom:999.900072px;}
.y9b{bottom:1001.340070px;}
.y1b4{bottom:1002.600065px;}
.y1ef{bottom:1007.280069px;}
.y99{bottom:1009.080059px;}
.y1b0{bottom:1010.340070px;}
.y13d{bottom:1012.680073px;}
.y33{bottom:1015.740074px;}
.y20f{bottom:1016.280069px;}
.y7{bottom:1019.160067px;}
.y13c{bottom:1020.420061px;}
.ye1{bottom:1022.220068px;}
.y172{bottom:1024.560070px;}
.y1b1{bottom:1025.820065px;}
.y1ee{bottom:1031.940067px;}
.y96{bottom:1033.380066px;}
.y1af{bottom:1039.140060px;}
.y32{bottom:1040.400072px;}
.y20e{bottom:1040.940067px;}
.y13e{bottom:1042.380066px;}
.y98{bottom:1044.180073px;}
.ydf{bottom:1047.960074px;}
.y171{bottom:1049.040064px;}
.y1ae{bottom:1049.760064px;}
.yde{bottom:1051.200061px;}
.y95{bottom:1051.920061px;}
.y17e{bottom:1055.880066px;}
.y1ed{bottom:1056.600065px;}
.y6{bottom:1056.960074px;}
.y13b{bottom:1064.520058px;}
.y31{bottom:1065.060070px;}
.y20d{bottom:1065.600065px;}
.y1ad{bottom:1071.000068px;}
.y93{bottom:1076.400072px;}
.y170{bottom:1080.360060px;}
.y1ec{bottom:1081.080059px;}
.y1ac{bottom:1081.620072px;}
.y94{bottom:1083.780069px;}
.y139{bottom:1086.480063px;}
.y92{bottom:1087.020058px;}
.y30{bottom:1089.540064px;}
.y20c{bottom:1090.080059px;}
.y1ab{bottom:1102.680073px;}
.y13a{bottom:1108.620072px;}
.y1aa{bottom:1113.480063px;}
.y2f{bottom:1114.200061px;}
.y1eb{bottom:1114.740074px;}
.y5{bottom:1118.340070px;}
.y8e{bottom:1122.120063px;}
.y90{bottom:1126.980063px;}
.y137{bottom:1127.700061px;}
.y8d{bottom:1129.860068px;}
.y136{bottom:1135.440067px;}
.y8f{bottom:1137.780069px;}
.y3{bottom:1138.860068px;}
.y1ea{bottom:1139.400064px;}
.y1a9{bottom:1140.300067px;}
.y138{bottom:1143.180064px;}
.y2{bottom:1162.440067px;}
.y1{bottom:1172.520066px;}
.y2e{bottom:1188.900064px;}
.h28{height:10.259994px;}
.hf{height:12.959988px;}
.h2c{height:14.939964px;}
.h1b{height:14.939965px;}
.h24{height:14.939998px;}
.h21{height:14.939999px;}
.h3d{height:14.940016px;}
.h1d{height:14.940033px;}
.h1c{height:14.940034px;}
.h3a{height:15.119935px;}
.h3b{height:15.119985px;}
.h22{height:15.120002px;}
.h19{height:15.120003px;}
.h17{height:15.299972px;}
.h2e{height:15.299990px;}
.hd{height:15.300007px;}
.h1f{height:15.300040px;}
.h2d{height:15.300042px;}
.ha{height:32.274688px;}
.h4{height:34.037793px;}
.he{height:35.358715px;}
.h10{height:37.438640px;}
.h16{height:38.102173px;}
.h37{height:41.495078px;}
.h12{height:42.166236px;}
.hc{height:43.248020px;}
.h36{height:43.304287px;}
.h9{height:48.313533px;}
.hb{height:48.412173px;}
.h29{height:50.274688px;}
.h11{height:53.575923px;}
.h5{height:55.294296px;}
.h39{height:55.736437px;}
.h13{height:55.736707px;}
.h38{height:55.736711px;}
.h14{height:61.192109px;}
.h7{height:67.567579px;}
.h34{height:69.062160px;}
.h15{height:69.062196px;}
.h20{height:69.782178px;}
.h8{height:72.139967px;}
.h6{height:76.204029px;}
.h2f{height:79.372056px;}
.h26{height:79.372061px;}
.h23{height:79.372128px;}
.h1e{height:79.372191px;}
.h18{height:79.372196px;}
.h3e{height:80.092074px;}
.h3c{height:80.092209px;}
.h2b{height:80.092349px;}
.h27{height:81.234706px;}
.h1a{height:81.234711px;}
.h3{height:83.624282px;}
.h2{height:85.091392px;}
.h31{height:93.052092px;}
.h33{height:93.052097px;}
.h32{height:93.052371px;}
.h35{height:100.022182px;}
.h30{height:100.022218px;}
.h25{height:110.332218px;}
.h2a{height:112.194594px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:0.180005px;}
.w13{width:0.360008px;}
.w10{width:0.719948px;}
.w2a{width:1.620002px;}
.w20{width:1.800041px;}
.w3f{width:3.239971px;}
.w15{width:3.239972px;}
.w2f{width:3.240006px;}
.w37{width:3.420044px;}
.w33{width:3.960021px;}
.w23{width:4.140060px;}
.we{width:4.500000px;}
.w3{width:5.399987px;}
.w4{width:5.759994px;}
.w1e{width:5.759996px;}
.w21{width:5.939999px;}
.wc{width:6.839951px;}
.w2c{width:6.839984px;}
.w1c{width:6.839985px;}
.w18{width:6.840001px;}
.w12{width:6.840002px;}
.w9{width:6.840019px;}
.w6{width:6.840020px;}
.w50{width:14.939998px;}
.w3e{width:17.460023px;}
.w35{width:22.500000px;}
.w34{width:23.220017px;}
.wf{width:25.740005px;}
.w43{width:27.360008px;}
.w53{width:28.439999px;}
.w4f{width:28.620003px;}
.w8{width:28.799972px;}
.w30{width:28.799973px;}
.w40{width:28.800007px;}
.w39{width:28.800040px;}
.wb{width:28.800042px;}
.w3b{width:31.500000px;}
.w4c{width:32.219999px;}
.w32{width:34.560001px;}
.w47{width:35.279984px;}
.w3a{width:35.280000px;}
.w2d{width:35.280018px;}
.w7{width:37.259994px;}
.w14{width:38.160015px;}
.w1a{width:39.059966px;}
.w25{width:39.060001px;}
.w16{width:39.240039px;}
.w28{width:39.420010px;}
.w5{width:39.779983px;}
.w55{width:40.500000px;}
.w5a{width:41.939999px;}
.w26{width:42.299973px;}
.w5f{width:42.659981px;}
.w45{width:42.660015px;}
.w2e{width:44.099980px;}
.w38{width:44.100013px;}
.w3c{width:44.279983px;}
.w19{width:44.280001px;}
.w36{width:45.000000px;}
.w42{width:48.779983px;}
.w27{width:48.780009px;}
.w11{width:50.939999px;}
.w61{width:52.020007px;}
.w2b{width:54.000018px;}
.w5c{width:55.080008px;}
.wd{width:57.240006px;}
.w31{width:59.940016px;}
.w17{width:60.480002px;}
.w4a{width:60.659981px;}
.w1d{width:63.719982px;}
.w4d{width:65.339985px;}
.w29{width:65.340002px;}
.w22{width:73.439999px;}
.w57{width:76.500000px;}
.w24{width:77.939999px;}
.w5e{width:78.659998px;}
.wa{width:79.379998px;}
.w4e{width:81.720016px;}
.w1b{width:83.159998px;}
.w48{width:83.520022px;}
.w56{width:85.860008px;}
.w41{width:95.039995px;}
.w52{width:99.539995px;}
.w1f{width:100.439999px;}
.w3d{width:101.880032px;}
.w54{width:102.960022px;}
.w5b{width:135.000000px;}
.w46{width:136.079991px;}
.w5d{width:149.939999px;}
.w4b{width:154.980011px;}
.w60{width:166.859974px;}
.w49{width:185.580025px;}
.w58{width:187.379997px;}
.w59{width:195.839984px;}
.w44{width:198.899985px;}
.w51{width:207.360043px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:114.840002px;}
.x7c{left:123.840002px;}
.x5{left:125.459997px;}
.x32{left:126.540003px;}
.x2d{left:130.140000px;}
.x8e{left:131.400003px;}
.x33{left:132.480002px;}
.x92{left:133.920001px;}
.x9c{left:135.900003px;}
.x2a{left:137.159998px;}
.xe{left:138.239997px;}
.x4f{left:139.860000px;}
.x75{left:140.939999px;}
.x48{left:142.019998px;}
.x29{left:144.180005px;}
.x1d{left:146.159998px;}
.x15{left:147.240006px;}
.x4e{left:148.860008px;}
.x23{left:150.300007px;}
.x56{left:151.740006px;}
.xc{left:157.319996px;}
.x7a{left:165.780001px;}
.x94{left:172.620002px;}
.x1{left:174.419992px;}
.x4b{left:187.020006px;}
.x2b{left:188.099997px;}
.x34{left:192.780001px;}
.x70{left:208.800007px;}
.xab{left:209.879998px;}
.xa0{left:211.500000px;}
.x40{left:216.000000px;}
.x3b{left:218.520006px;}
.x78{left:219.780001px;}
.x2c{left:221.400003px;}
.x7{left:222.659998px;}
.x4c{left:224.460005px;}
.x77{left:226.080008px;}
.x3c{left:227.340002px;}
.x1e{left:229.319996px;}
.x80{left:230.400003px;}
.xac{left:231.659998px;}
.x3a{left:232.919992px;}
.xa{left:234.360008px;}
.x3e{left:237.060001px;}
.x45{left:239.219999px;}
.xb{left:242.639992px;}
.x6{left:243.900003px;}
.x35{left:246.960005px;}
.x46{left:249.300007px;}
.x58{left:251.639992px;}
.x5d{left:257.580008px;}
.x98{left:262.080008px;}
.x99{left:266.580008px;}
.x9f{left:277.740006px;}
.x4{left:279.360008px;}
.x9a{left:281.520006px;}
.xad{left:283.500000px;}
.xa6{left:284.939999px;}
.x59{left:286.199993px;}
.x47{left:288.360008px;}
.x36{left:290.879998px;}
.x79{left:293.759994px;}
.x51{left:295.920010px;}
.x57{left:298.620002px;}
.x3f{left:300.779983px;}
.x71{left:302.040012px;}
.x76{left:306.899987px;}
.x1f{left:308.339985px;}
.x3d{left:310.500000px;}
.x68{left:316.259994px;}
.x41{left:321.660015px;}
.x85{left:326.519989px;}
.x88{left:328.139992px;}
.x95{left:329.579990px;}
.x50{left:336.060001px;}
.x5a{left:338.220017px;}
.x8f{left:339.480011px;}
.x69{left:341.459988px;}
.x5e{left:345.420010px;}
.xa7{left:348.839985px;}
.x20{left:350.459988px;}
.x6a{left:352.800007px;}
.x2{left:357.480011px;}
.x52{left:359.459988px;}
.x5b{left:365.579990px;}
.x5c{left:388.800007px;}
.x53{left:394.740006px;}
.x16{left:397.079990px;}
.x90{left:400.139992px;}
.x6b{left:401.579990px;}
.x8{left:410.399987px;}
.x89{left:411.660015px;}
.x74{left:416.339985px;}
.x73{left:419.759994px;}
.x8a{left:434.160015px;}
.x4d{left:438.480011px;}
.x86{left:439.560001px;}
.x81{left:440.819996px;}
.x17{left:441.899987px;}
.x87{left:447.839985px;}
.x62{left:450.540012px;}
.x60{left:456.839985px;}
.xf{left:460.259994px;}
.x7d{left:464.220017px;}
.xa1{left:465.839985px;}
.x8b{left:470.879998px;}
.x82{left:472.139992px;}
.xae{left:480.240006px;}
.x6c{left:487.259994px;}
.x61{left:488.339985px;}
.x63{left:494.819996px;}
.xa4{left:496.259994px;}
.xa8{left:499.319996px;}
.x91{left:502.019989px;}
.xa9{left:503.819996px;}
.x9d{left:512.279983px;}
.x83{left:514.800007px;}
.x42{left:520.199993px;}
.x96{left:522.899987px;}
.x2e{left:527.939999px;}
.x11{left:530.639992px;}
.x18{left:534.060001px;}
.x64{left:541.259994px;}
.xa3{left:542.699993px;}
.x10{left:546.480011px;}
.x49{left:549.360008px;}
.x37{left:550.980011px;}
.x6d{left:552.959988px;}
.x21{left:556.019989px;}
.x65{left:558.720017px;}
.x2f{left:566.100014px;}
.x66{left:567.720017px;}
.x19{left:571.319996px;}
.x30{left:573.839985px;}
.x1a{left:577.980011px;}
.x5f{left:579.059967px;}
.x54{left:581.940033px;}
.x22{left:584.820030px;}
.x9{left:588.240006px;}
.x38{left:590.039978px;}
.x4a{left:591.659981px;}
.x67{left:599.759994px;}
.x97{left:604.620002px;}
.x1b{left:606.779983px;}
.x55{left:610.740006px;}
.x31{left:613.080025px;}
.x9e{left:615.240006px;}
.x44{left:618.299973px;}
.x43{left:620.639992px;}
.x24{left:622.620002px;}
.x6e{left:623.700027px;}
.x7b{left:625.500000px;}
.xa5{left:631.259994px;}
.x6f{left:635.039978px;}
.x39{left:636.480011px;}
.x12{left:638.460023px;}
.x1c{left:639.899987px;}
.x93{left:641.159981px;}
.x13{left:650.519989px;}
.x84{left:655.379998px;}
.x8c{left:656.460023px;}
.xa2{left:661.679970px;}
.x7e{left:663.120002px;}
.x9b{left:667.440033px;}
.xaa{left:670.679970px;}
.x25{left:678.960023px;}
.x26{left:683.460023px;}
.x27{left:708.840019px;}
.x8d{left:726.659981px;}
.x7f{left:729.899987px;}
.x28{left:732.419975px;}
.x72{left:734.399987px;}
.xd{left:752.399987px;}
.x14{left:772.379998px;}
@media print{
.vd{vertical-align:-39.679932pt;}
.v4{vertical-align:-16.000000pt;}
.ve{vertical-align:-5.119996pt;}
.v9{vertical-align:-2.560056pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:16.000000pt;}
.v3{vertical-align:18.560056pt;}
.v7{vertical-align:24.959960pt;}
.v5{vertical-align:27.520020pt;}
.v1{vertical-align:31.359988pt;}
.v2{vertical-align:35.839996pt;}
.vc{vertical-align:39.679928pt;}
.v6{vertical-align:43.520020pt;}
.va{vertical-align:55.039796pt;}
.vb{vertical-align:71.039916pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.011100pt;}
.ls3{letter-spacing:0.030668pt;}
.lsc{letter-spacing:0.040689pt;}
.ls8{letter-spacing:0.044407pt;}
.ls6{letter-spacing:0.045820pt;}
.lsa{letter-spacing:0.045940pt;}
.ls5{letter-spacing:0.230538pt;}
.lsb{letter-spacing:0.639264pt;}
.ls9{letter-spacing:0.639384pt;}
.lsf{letter-spacing:16.783434pt;}
.lse{letter-spacing:40.463426pt;}
.lsd{letter-spacing:64.783434pt;}
.ls0{letter-spacing:304.698316pt;}
.ls7{letter-spacing:842.911436pt;}
.ls2{letter-spacing:870.431456pt;}
.ws4{word-spacing:-37.121440pt;}
.wsa{word-spacing:-15.601194pt;}
.ws5{word-spacing:-13.280500pt;}
.ws8{word-spacing:-12.049979pt;}
.ws9{word-spacing:-12.041189pt;}
.ws7{word-spacing:-12.005572pt;}
.ws0{word-spacing:-12.000500pt;}
.ws3{word-spacing:-10.720400pt;}
.ws1{word-spacing:-8.640330pt;}
.ws2{word-spacing:-8.000310pt;}
.ws6{word-spacing:0.000000pt;}
._7d{margin-left:-1652.868733pt;}
._77{margin-left:-1635.588825pt;}
._80{margin-left:-7.325034pt;}
._3{margin-left:-6.116620pt;}
._8{margin-left:-5.143667pt;}
._4{margin-left:-3.454906pt;}
._5{margin-left:-2.254457pt;}
._2{margin-left:-1.216750pt;}
._0{width:1.230314pt;}
._6{width:2.632363pt;}
._7{width:3.657740pt;}
._d{width:4.639045pt;}
._a{width:5.701900pt;}
._9{width:7.261113pt;}
._f{width:8.224987pt;}
._12{width:9.915724pt;}
._10{width:10.952885pt;}
._11{width:12.000930pt;}
._92{width:12.980447pt;}
._82{width:14.188685pt;}
._e{width:15.131677pt;}
._16{width:16.104059pt;}
._15{width:17.859990pt;}
._14{width:18.849387pt;}
._7f{width:19.956441pt;}
._81{width:21.225767pt;}
._13{width:22.214749pt;}
._c{width:23.312465pt;}
._b{width:24.543609pt;}
._17{width:26.785731pt;}
._93{width:28.290544pt;}
._94{width:29.345348pt;}
._38{width:41.398392pt;}
._2b{width:42.678420pt;}
._45{width:47.859622pt;}
._53{width:55.525251pt;}
._2e{width:56.695222pt;}
._64{width:58.678420pt;}
._25{width:60.982858pt;}
._34{width:63.049548pt;}
._28{width:67.528924pt;}
._4f{width:69.446119pt;}
._5e{width:71.341835pt;}
._44{width:72.461393pt;}
._62{width:73.407692pt;}
._21{width:76.982595pt;}
._89{width:77.926076pt;}
._5f{width:79.998832pt;}
._1a{width:81.315146pt;}
._2c{width:82.531896pt;}
._36{width:84.291512pt;}
._3b{width:90.101850pt;}
._59{width:91.757511pt;}
._24{width:93.878492pt;}
._33{width:95.811992pt;}
._8c{width:96.741000pt;}
._3a{width:98.358476pt;}
._5a{width:99.487960pt;}
._66{width:100.455341pt;}
._58{width:101.379741pt;}
._39{width:103.628805pt;}
._87{width:104.568044pt;}
._5b{width:105.472207pt;}
._37{width:106.467576pt;}
._1b{width:107.771064pt;}
._4d{width:108.909225pt;}
._26{width:109.830273pt;}
._1e{width:111.798416pt;}
._30{width:113.572732pt;}
._85{width:114.693810pt;}
._4b{width:115.638380pt;}
._40{width:119.800368pt;}
._27{width:120.695222pt;}
._31{width:122.048584pt;}
._65{width:124.472292pt;}
._8f{width:127.005117pt;}
._42{width:128.061648pt;}
._48{width:128.962119pt;}
._1f{width:132.005279pt;}
._19{width:134.471882pt;}
._57{width:135.675800pt;}
._43{width:137.941997pt;}
._2f{width:139.779886pt;}
._6e{width:143.253560pt;}
._8b{width:144.545960pt;}
._7a{width:146.666614pt;}
._32{width:147.673548pt;}
._50{width:149.368060pt;}
._79{width:151.247852pt;}
._2d{width:153.008813pt;}
._8a{width:154.654381pt;}
._55{width:156.728405pt;}
._47{width:158.984124pt;}
._6a{width:161.408853pt;}
._3c{width:163.402602pt;}
._5c{width:167.242630pt;}
._67{width:169.414030pt;}
._6c{width:170.340976pt;}
._5d{width:171.976165pt;}
._20{width:173.002638pt;}
._8e{width:174.193933pt;}
._4c{width:175.304054pt;}
._61{width:176.343860pt;}
._90{width:178.284540pt;}
._49{width:179.417408pt;}
._1d{width:180.887356pt;}
._74{width:182.344222pt;}
._70{width:183.575499pt;}
._35{width:184.744158pt;}
._68{width:186.003062pt;}
._6f{width:187.473011pt;}
._18{width:188.472320pt;}
._86{width:190.026030pt;}
._60{width:190.937428pt;}
._2a{width:195.054690pt;}
._23{width:196.651116pt;}
._75{width:198.426329pt;}
._78{width:199.953531pt;}
._4a{width:201.323503pt;}
._73{width:202.477590pt;}
._41{width:206.696612pt;}
._7b{width:207.590398pt;}
._3f{width:211.336680pt;}
._1c{width:214.106932pt;}
._51{width:217.018167pt;}
._3d{width:218.697112pt;}
._56{width:220.478292pt;}
._3e{width:226.569815pt;}
._29{width:228.826904pt;}
._52{width:230.577794pt;}
._71{width:232.180986pt;}
._22{width:240.635820pt;}
._63{width:241.538001pt;}
._46{width:243.458081pt;}
._4e{width:252.475894pt;}
._6b{width:257.290720pt;}
._54{width:260.692299pt;}
._69{width:269.371961pt;}
._72{width:273.868222pt;}
._76{width:275.337741pt;}
._91{width:282.985174pt;}
._7e{width:286.554364pt;}
._7c{width:287.819242pt;}
._6d{width:290.898378pt;}
._8d{width:320.364652pt;}
._1{width:329.860838pt;}
._88{width:348.482085pt;}
._84{width:353.412424pt;}
._83{width:365.621480pt;}
.fs8{font-size:32.001240pt;}
.fs7{font-size:34.561320pt;}
.fs9{font-size:37.121440pt;}
.fs2{font-size:42.881600pt;}
.fs3{font-size:48.002000pt;}
.fs0{font-size:53.122000pt;}
.fsa{font-size:56.322000pt;}
.fs1{font-size:58.882400pt;}
.fs5{font-size:85.123200pt;}
.fs6{font-size:90.883600pt;}
.fs4{font-size:96.003600pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:1.920013pt;}
.y1a8{bottom:2.559936pt;}
.y7b{bottom:2.559997pt;}
.y12{bottom:2.559998pt;}
.y91{bottom:2.560005pt;}
.y1b3{bottom:2.560013pt;}
.y9f{bottom:2.560028pt;}
.ycd{bottom:2.560058pt;}
.yd5{bottom:2.719970pt;}
.y7e{bottom:2.719971pt;}
.y97{bottom:2.720001pt;}
.ya6{bottom:2.720002pt;}
.yfd{bottom:2.720031pt;}
.yba{bottom:2.720032pt;}
.ya3{bottom:2.879974pt;}
.ye0{bottom:2.879989pt;}
.y8c{bottom:2.880004pt;}
.yf{bottom:2.880005pt;}
.y4{bottom:56.160035pt;}
.y1a7{bottom:93.120118pt;}
.y224{bottom:94.400025pt;}
.y16f{bottom:101.600037pt;}
.y1a6{bottom:102.560059pt;}
.y73{bottom:102.720032pt;}
.y135{bottom:104.160035pt;}
.y8a{bottom:104.480042pt;}
.ydd{bottom:105.280030pt;}
.y133{bottom:107.040039pt;}
.y17c{bottom:109.280030pt;}
.y109{bottom:113.440064pt;}
.y89{bottom:114.080079pt;}
.y1e9{bottom:114.560059pt;}
.y177{bottom:115.680054pt;}
.y15e{bottom:115.840088pt;}
.y223{bottom:116.160035pt;}
.y8b{bottom:118.080079pt;}
.y2d{bottom:120.000061pt;}
.y132{bottom:120.960083pt;}
.y1a4{bottom:121.280030pt;}
.y16e{bottom:123.520081pt;}
.y1df{bottom:123.680054pt;}
.y134{bottom:123.840088pt;}
.y72{bottom:124.480042pt;}
.ydc{bottom:127.680054pt;}
.y20b{bottom:130.080079pt;}
.y1a5{bottom:130.880066pt;}
.y17b{bottom:131.200074pt;}
.y108{bottom:135.360047pt;}
.y1e8{bottom:136.480042pt;}
.ydb{bottom:137.120057pt;}
.y56{bottom:137.600037pt;}
.y15d{bottom:137.760071pt;}
.y222{bottom:138.080079pt;}
.y2c{bottom:141.920044pt;}
.y86{bottom:142.720032pt;}
.y131{bottom:143.360047pt;}
.y16d{bottom:145.280030pt;}
.y1de{bottom:145.440064pt;}
.y88{bottom:149.280030pt;}
.y1a3{bottom:149.600037pt;}
.y20a{bottom:152.000061pt;}
.y87{bottom:152.160035pt;}
.y71{bottom:152.320069pt;}
.y130{bottom:153.120057pt;}
.y107{bottom:157.280030pt;}
.y1e7{bottom:158.400086pt;}
.y85{bottom:159.040039pt;}
.y55{bottom:159.520081pt;}
.y221{bottom:160.000061pt;}
.y2b{bottom:163.680054pt;}
.y16c{bottom:167.200074pt;}
.y1dd{bottom:167.360047pt;}
.yda{bottom:169.120057pt;}
.y187{bottom:173.120057pt;}
.y209{bottom:173.760071pt;}
.y17a{bottom:174.880066pt;}
.y1a0{bottom:177.920044pt;}
.y106{bottom:179.040039pt;}
.y84{bottom:180.800049pt;}
.y54{bottom:181.280030pt;}
.y15c{bottom:181.440064pt;}
.y220{bottom:181.760071pt;}
.y70{bottom:182.400086pt;}
.y12f{bottom:182.560059pt;}
.y12d{bottom:185.440064pt;}
.y2a{bottom:185.600037pt;}
.y1a2{bottom:187.360047pt;}
.y1e6{bottom:188.160035pt;}
.y16b{bottom:189.120057pt;}
.y1dc{bottom:189.280030pt;}
.y83{bottom:190.240052pt;}
.y19e{bottom:194.240052pt;}
.yd9{bottom:194.720032pt;}
.y208{bottom:195.680054pt;}
.y186{bottom:196.800049pt;}
.y12c{bottom:199.360047pt;}
.y105{bottom:200.960083pt;}
.y1a1{bottom:201.120057pt;}
.y12e{bottom:202.240052pt;}
.y179{bottom:202.720032pt;}
.y53{bottom:203.200074pt;}
.y15b{bottom:203.360047pt;}
.y21f{bottom:203.680054pt;}
.y6f{bottom:204.320069pt;}
.y29{bottom:207.520081pt;}
.y19f{bottom:208.000061pt;}
.y1e5{bottom:210.080079pt;}
.y16a{bottom:210.880066pt;}
.y1db{bottom:211.040039pt;}
.y207{bottom:216.960083pt;}
.yd8{bottom:217.120057pt;}
.y185{bottom:218.720032pt;}
.y81{bottom:218.880066pt;}
.y19c{bottom:219.840088pt;}
.y12b{bottom:221.760071pt;}
.y104{bottom:222.880066pt;}
.y52{bottom:225.120057pt;}
.y21e{bottom:225.600037pt;}
.y6e{bottom:226.080079pt;}
.yd7{bottom:226.720032pt;}
.y80{bottom:228.480042pt;}
.y28{bottom:229.280030pt;}
.y19b{bottom:229.440064pt;}
.y12a{bottom:231.520081pt;}
.y169{bottom:232.800049pt;}
.y1da{bottom:232.960083pt;}
.y82{bottom:235.360047pt;}
.y19d{bottom:236.320069pt;}
.y206{bottom:239.360047pt;}
.y1e4{bottom:240.000061pt;}
.y184{bottom:240.480042pt;}
.y103{bottom:244.640076pt;}
.y51{bottom:246.880066pt;}
.y15a{bottom:247.040039pt;}
.y21d{bottom:247.360047pt;}
.y6d{bottom:248.000061pt;}
.y19a{bottom:248.160035pt;}
.y27{bottom:251.200074pt;}
.y168{bottom:254.720032pt;}
.y1d9{bottom:254.880066pt;}
.yd4{bottom:255.200074pt;}
.y7d{bottom:256.960083pt;}
.y197{bottom:257.600037pt;}
.y129{bottom:260.960083pt;}
.y205{bottom:261.280030pt;}
.yd6{bottom:261.920044pt;}
.y183{bottom:262.400086pt;}
.y7f{bottom:263.680054pt;}
.y199{bottom:264.640076pt;}
.yd3{bottom:264.800049pt;}
.y7c{bottom:266.560059pt;}
.y50{bottom:268.800049pt;}
.y159{bottom:268.960083pt;}
.y21c{bottom:269.280030pt;}
.y1e3{bottom:269.760071pt;}
.y6c{bottom:269.920044pt;}
.y128{bottom:270.720032pt;}
.y196{bottom:271.520081pt;}
.y26{bottom:273.120057pt;}
.y167{bottom:276.480042pt;}
.y1d8{bottom:276.640076pt;}
.y198{bottom:278.400086pt;}
.y204{bottom:283.200074pt;}
.y182{bottom:284.320069pt;}
.y102{bottom:288.480042pt;}
.y195{bottom:290.240052pt;}
.y4f{bottom:290.720032pt;}
.y21b{bottom:291.200074pt;}
.y6b{bottom:291.680054pt;}
.yd1{bottom:293.440064pt;}
.y25{bottom:294.880066pt;}
.y78{bottom:297.760071pt;}
.y166{bottom:298.400086pt;}
.y1d7{bottom:298.560059pt;}
.y192{bottom:299.680054pt;}
.y127{bottom:300.160035pt;}
.y7a{bottom:302.080079pt;}
.yd0{bottom:302.880066pt;}
.y77{bottom:304.640076pt;}
.y203{bottom:304.960083pt;}
.y181{bottom:306.080079pt;}
.y194{bottom:306.560059pt;}
.yd2{bottom:309.760071pt;}
.y126{bottom:309.920044pt;}
.y101{bottom:310.240052pt;}
.y79{bottom:311.520081pt;}
.y189{bottom:312.160035pt;}
.y4e{bottom:312.480042pt;}
.y158{bottom:312.640076pt;}
.y21a{bottom:312.960083pt;}
.y1e2{bottom:313.120057pt;}
.y6a{bottom:313.600037pt;}
.y123{bottom:315.840088pt;}
.y165{bottom:320.320069pt;}
.y193{bottom:320.480042pt;}
.y24{bottom:324.800049pt;}
.y202{bottom:326.880066pt;}
.y180{bottom:328.000061pt;}
.y121{bottom:329.600037pt;}
.y100{bottom:332.160035pt;}
.y191{bottom:332.320069pt;}
.y4d{bottom:334.400086pt;}
.y76{bottom:334.880066pt;}
.y69{bottom:335.520081pt;}
.y125{bottom:339.360047pt;}
.y157{bottom:340.480042pt;}
.y18f{bottom:341.760071pt;}
.y164{bottom:342.080079pt;}
.y1d6{bottom:342.240052pt;}
.y122{bottom:343.360047pt;}
.y18e{bottom:348.640076pt;}
.y201{bottom:348.800049pt;}
.y124{bottom:349.120057pt;}
.y17f{bottom:355.840088pt;}
.y4c{bottom:356.320069pt;}
.y75{bottom:356.800049pt;}
.ycc{bottom:357.280030pt;}
.y23{bottom:360.000061pt;}
.y190{bottom:362.560059pt;}
.y163{bottom:364.000061pt;}
.y1d5{bottom:364.160035pt;}
.y68{bottom:365.440064pt;}
.yce{bottom:366.720032pt;}
.y156{bottom:370.560059pt;}
.ycf{bottom:370.720032pt;}
.ycb{bottom:373.600037pt;}
.y11f{bottom:376.000061pt;}
.y4b{bottom:378.080079pt;}
.y219{bottom:378.560059pt;}
.y1e1{bottom:378.720032pt;}
.y18d{bottom:379.520081pt;}
.y11e{bottom:382.880066pt;}
.y162{bottom:385.920044pt;}
.y1d4{bottom:386.080079pt;}
.y120{bottom:389.760071pt;}
.y22{bottom:389.920044pt;}
.yff{bottom:390.080079pt;}
.y155{bottom:392.320069pt;}
.y200{bottom:392.480042pt;}
.yc9{bottom:395.360047pt;}
.y4a{bottom:400.000061pt;}
.y67{bottom:400.480042pt;}
.yc8{bottom:404.800049pt;}
.y161{bottom:407.680054pt;}
.y1d3{bottom:407.840088pt;}
.y11d{bottom:408.160035pt;}
.yca{bottom:408.800049pt;}
.y21{bottom:411.680054pt;}
.yfe{bottom:412.320069pt;}
.y154{bottom:414.240052pt;}
.y1ff{bottom:414.400086pt;}
.y74{bottom:416.320069pt;}
.y49{bottom:421.920044pt;}
.y66{bottom:422.400086pt;}
.y160{bottom:429.600037pt;}
.y1d2{bottom:429.760071pt;}
.y11c{bottom:430.080079pt;}
.yfc{bottom:433.280030pt;}
.yc7{bottom:433.440064pt;}
.y20{bottom:433.600037pt;}
.y153{bottom:436.160035pt;}
.yc5{bottom:440.160035pt;}
.yfb{bottom:442.880066pt;}
.yc4{bottom:443.040039pt;}
.y48{bottom:443.680054pt;}
.y18c{bottom:444.160035pt;}
.y65{bottom:444.320069pt;}
.yc6{bottom:449.920044pt;}
.y11b{bottom:451.520081pt;}
.y1d1{bottom:451.680054pt;}
.y1f{bottom:455.520081pt;}
.y18a{bottom:457.440064pt;}
.y152{bottom:457.920044pt;}
.y1fe{bottom:458.080079pt;}
.y47{bottom:465.600037pt;}
.y64{bottom:466.080079pt;}
.yc2{bottom:471.520081pt;}
.y11a{bottom:473.280030pt;}
.y1d0{bottom:473.440064pt;}
.y1e{bottom:477.280030pt;}
.y178{bottom:479.360047pt;}
.y151{bottom:479.840088pt;}
.y1fd{bottom:480.000061pt;}
.yfa{bottom:480.960083pt;}
.yc3{bottom:481.120057pt;}
.y18b{bottom:481.440064pt;}
.y46{bottom:487.520081pt;}
.y63{bottom:488.000061pt;}
.y119{bottom:495.200074pt;}
.y1cf{bottom:495.360047pt;}
.y1e0{bottom:496.000061pt;}
.y1d{bottom:499.200074pt;}
.y150{bottom:501.760071pt;}
.y45{bottom:509.280030pt;}
.yf9{bottom:509.600037pt;}
.yc1{bottom:509.760071pt;}
.y62{bottom:509.920044pt;}
.y118{bottom:517.120057pt;}
.y1ce{bottom:517.280030pt;}
.yf8{bottom:519.040039pt;}
.yc0{bottom:519.200074pt;}
.y1c{bottom:521.120057pt;}
.y14f{bottom:523.520081pt;}
.y1fc{bottom:523.680054pt;}
.y44{bottom:531.200074pt;}
.y61{bottom:531.680054pt;}
.y117{bottom:538.880066pt;}
.y1cd{bottom:539.040039pt;}
.y1b{bottom:542.880066pt;}
.y14e{bottom:545.440064pt;}
.y1fb{bottom:545.600037pt;}
.yf5{bottom:547.680054pt;}
.ybe{bottom:547.840088pt;}
.yf7{bottom:549.600037pt;}
.y43{bottom:553.120057pt;}
.y60{bottom:553.600037pt;}
.ybd{bottom:557.280030pt;}
.y116{bottom:560.800049pt;}
.yf6{bottom:561.280030pt;}
.ybf{bottom:564.320069pt;}
.y1a{bottom:564.800049pt;}
.y1cc{bottom:566.880066pt;}
.y14d{bottom:567.360047pt;}
.y42{bottom:574.880066pt;}
.y218{bottom:575.360047pt;}
.y5f{bottom:575.520081pt;}
.y115{bottom:582.720032pt;}
.yb9{bottom:585.920044pt;}
.y19{bottom:586.720032pt;}
.y14c{bottom:589.120057pt;}
.y1fa{bottom:589.280030pt;}
.yf4{bottom:592.480042pt;}
.yf3{bottom:595.360047pt;}
.ybc{bottom:595.520081pt;}
.y41{bottom:596.800049pt;}
.y1cb{bottom:596.960083pt;}
.y5e{bottom:597.280030pt;}
.yb7{bottom:602.400086pt;}
.y114{bottom:604.480042pt;}
.y18{bottom:608.480042pt;}
.ybb{bottom:609.280030pt;}
.y14b{bottom:611.040070pt;}
.y1f9{bottom:611.200074pt;}
.y1c9{bottom:613.440064pt;}
.yb8{bottom:616.160065pt;}
.y40{bottom:618.720063pt;}
.y5d{bottom:619.200074pt;}
.y1ca{bottom:622.880066pt;}
.y113{bottom:626.400055pt;}
.yf2{bottom:627.200074pt;}
.y1c7{bottom:629.920044pt;}
.y17{bottom:630.400055pt;}
.y188{bottom:632.320069pt;}
.y14a{bottom:632.960053pt;}
.yb6{bottom:637.920044pt;}
.y3f{bottom:640.480072pt;}
.y217{bottom:640.960053pt;}
.y5c{bottom:641.120057pt;}
.y1c8{bottom:643.680054pt;}
.yb5{bottom:647.360047pt;}
.y112{bottom:648.320069pt;}
.yf1{bottom:649.600068pt;}
.y16{bottom:652.320069pt;}
.y149{bottom:654.720063pt;}
.y1f8{bottom:654.880066pt;}
.y1c6{bottom:655.520050pt;}
.yf0{bottom:659.200074pt;}
.y3e{bottom:662.400055pt;}
.y5b{bottom:662.880066pt;}
.y1c5{bottom:664.960053pt;}
.y111{bottom:670.080048pt;}
.y15{bottom:674.080048pt;}
.yb1{bottom:676.000061pt;}
.y148{bottom:676.640046pt;}
.y1f7{bottom:676.800049pt;}
.y1c4{bottom:683.840058pt;}
.y3d{bottom:684.320069pt;}
.y5a{bottom:684.800049pt;}
.yb2{bottom:685.600068pt;}
.yee{bottom:687.840058pt;}
.y110{bottom:692.000061pt;}
.yb0{bottom:692.480072pt;}
.y1c3{bottom:693.280060pt;}
.yef{bottom:694.400055pt;}
.yb3{bottom:694.560059pt;}
.yed{bottom:697.280060pt;}
.y147{bottom:698.560059pt;}
.ye{bottom:699.840058pt;}
.y14{bottom:702.400055pt;}
.y3c{bottom:706.080048pt;}
.y216{bottom:706.560059pt;}
.y59{bottom:706.720063pt;}
.y1c1{bottom:712.000061pt;}
.y10f{bottom:713.920044pt;}
.yad{bottom:714.240052pt;}
.y13{bottom:714.720063pt;}
.y146{bottom:720.320069pt;}
.y1f6{bottom:720.480072pt;}
.yaf{bottom:720.800049pt;}
.y1c2{bottom:721.600068pt;}
.yae{bottom:723.680054pt;}
.y11{bottom:724.480072pt;}
.yeb{bottom:725.920044pt;}
.y10{bottom:727.040070pt;}
.y3b{bottom:728.000061pt;}
.y58{bottom:728.480072pt;}
.yac{bottom:730.560059pt;}
.yec{bottom:732.480072pt;}
.yea{bottom:735.360047pt;}
.y10e{bottom:735.680054pt;}
.y1c0{bottom:740.320069pt;}
.yd{bottom:740.640046pt;}
.y145{bottom:742.240052pt;}
.y1f5{bottom:742.400055pt;}
.y17d{bottom:744.000061pt;}
.y1bf{bottom:749.760071pt;}
.y3a{bottom:749.920044pt;}
.y215{bottom:750.400055pt;}
.ya9{bottom:752.320069pt;}
.y10d{bottom:757.600068pt;}
.y57{bottom:758.400055pt;}
.yab{bottom:758.880066pt;}
.yaa{bottom:761.760071pt;}
.yc{bottom:763.360047pt;}
.ye9{bottom:764.000061pt;}
.y144{bottom:764.160065pt;}
.ya8{bottom:768.640046pt;}
.y39{bottom:771.680054pt;}
.y214{bottom:772.160065pt;}
.ye8{bottom:773.600068pt;}
.y1be{bottom:778.080048pt;}
.y10c{bottom:779.520050pt;}
.yb{bottom:783.360047pt;}
.y1bd{bottom:784.960053pt;}
.y15f{bottom:785.440064pt;}
.y143{bottom:785.920044pt;}
.y1f4{bottom:786.080048pt;}
.ya5{bottom:790.400055pt;}
.y38{bottom:793.600068pt;}
.y213{bottom:794.080048pt;}
.y1bc{bottom:796.800049pt;}
.ya4{bottom:800.000061pt;}
.y10b{bottom:801.280060pt;}
.ye6{bottom:802.240052pt;}
.y1bb{bottom:806.400055pt;}
.ya7{bottom:806.880066pt;}
.ya{bottom:807.360047pt;}
.y142{bottom:807.840058pt;}
.y1f3{bottom:808.000061pt;}
.ye7{bottom:811.680054pt;}
.y37{bottom:815.520050pt;}
.y212{bottom:816.000061pt;}
.ye4{bottom:818.560059pt;}
.y176{bottom:823.200074pt;}
.y1b9{bottom:825.120057pt;}
.y9{bottom:827.360047pt;}
.y9e{bottom:828.640046pt;}
.y10a{bottom:829.120057pt;}
.y1f2{bottom:829.760071pt;}
.ye5{bottom:832.320069pt;}
.y1ba{bottom:834.560059pt;}
.ya2{bottom:835.200074pt;}
.y141{bottom:835.680054pt;}
.y36{bottom:837.280060pt;}
.y211{bottom:837.760071pt;}
.ya1{bottom:838.080048pt;}
.y1b8{bottom:841.440064pt;}
.y9c{bottom:844.960053pt;}
.y175{bottom:845.120057pt;}
.y1f1{bottom:851.680054pt;}
.ya0{bottom:851.840058pt;}
.y1b6{bottom:853.440064pt;}
.ye3{bottom:857.440064pt;}
.y9d{bottom:858.720063pt;}
.y35{bottom:859.200074pt;}
.y8{bottom:859.360047pt;}
.y210{bottom:859.680054pt;}
.y1b7{bottom:862.880066pt;}
.y140{bottom:866.240052pt;}
.y174{bottom:866.880066pt;}
.y1b5{bottom:869.760056pt;}
.y1f0{bottom:873.600052pt;}
.y9a{bottom:880.480057pt;}
.y34{bottom:881.120057pt;}
.y1b2{bottom:881.600052pt;}
.ye2{bottom:883.040055pt;}
.y13f{bottom:887.360062pt;}
.y173{bottom:888.800064pt;}
.y9b{bottom:890.080063pt;}
.y1b4{bottom:891.200058pt;}
.y1ef{bottom:895.360062pt;}
.y99{bottom:896.960053pt;}
.y1b0{bottom:898.080063pt;}
.y13d{bottom:900.160065pt;}
.y33{bottom:902.880066pt;}
.y20f{bottom:903.360062pt;}
.y7{bottom:905.920060pt;}
.y13c{bottom:907.040055pt;}
.ye1{bottom:908.640061pt;}
.y172{bottom:910.720063pt;}
.y1b1{bottom:911.840058pt;}
.y1ee{bottom:917.280060pt;}
.y96{bottom:918.560059pt;}
.y1af{bottom:923.680054pt;}
.y32{bottom:924.800064pt;}
.y20e{bottom:925.280060pt;}
.y13e{bottom:926.560059pt;}
.y98{bottom:928.160065pt;}
.ydf{bottom:931.520066pt;}
.y171{bottom:932.480057pt;}
.y1ae{bottom:933.120057pt;}
.yde{bottom:934.400055pt;}
.y95{bottom:935.040055pt;}
.y17e{bottom:938.560059pt;}
.y1ed{bottom:939.200058pt;}
.y6{bottom:939.520066pt;}
.y13b{bottom:946.240052pt;}
.y31{bottom:946.720063pt;}
.y20d{bottom:947.200058pt;}
.y1ad{bottom:952.000061pt;}
.y93{bottom:956.800064pt;}
.y170{bottom:960.320054pt;}
.y1ec{bottom:960.960053pt;}
.y1ac{bottom:961.440064pt;}
.y94{bottom:963.360062pt;}
.y139{bottom:965.760056pt;}
.y92{bottom:966.240052pt;}
.y30{bottom:968.480057pt;}
.y20c{bottom:968.960053pt;}
.y1ab{bottom:980.160065pt;}
.y13a{bottom:985.440064pt;}
.y1aa{bottom:989.760056pt;}
.y2f{bottom:990.400055pt;}
.y1eb{bottom:990.880066pt;}
.y5{bottom:994.080063pt;}
.y8e{bottom:997.440056pt;}
.y90{bottom:1001.760056pt;}
.y137{bottom:1002.400055pt;}
.y8d{bottom:1004.320061pt;}
.y136{bottom:1009.280060pt;}
.y8f{bottom:1011.360062pt;}
.y3{bottom:1012.320061pt;}
.y1ea{bottom:1012.800057pt;}
.y1a9{bottom:1013.600060pt;}
.y138{bottom:1016.160057pt;}
.y2{bottom:1033.280060pt;}
.y1{bottom:1042.240059pt;}
.y2e{bottom:1056.800057pt;}
.h28{height:9.119995pt;}
.hf{height:11.519989pt;}
.h2c{height:13.279968pt;}
.h1b{height:13.279969pt;}
.h24{height:13.279998pt;}
.h21{height:13.279999pt;}
.h3d{height:13.280014pt;}
.h1d{height:13.280029pt;}
.h1c{height:13.280030pt;}
.h3a{height:13.439942pt;}
.h3b{height:13.439987pt;}
.h22{height:13.440002pt;}
.h19{height:13.440003pt;}
.h17{height:13.599975pt;}
.h2e{height:13.599991pt;}
.hd{height:13.600006pt;}
.h1f{height:13.600036pt;}
.h2d{height:13.600037pt;}
.ha{height:28.688612pt;}
.h4{height:30.255816pt;}
.he{height:31.429969pt;}
.h10{height:33.278791pt;}
.h16{height:33.868599pt;}
.h37{height:36.884514pt;}
.h12{height:37.481099pt;}
.hc{height:38.442684pt;}
.h36{height:38.492699pt;}
.h9{height:42.945362pt;}
.hb{height:43.033043pt;}
.h29{height:44.688612pt;}
.h11{height:47.623043pt;}
.h5{height:49.150485pt;}
.h39{height:49.543499pt;}
.h13{height:49.543739pt;}
.h38{height:49.543743pt;}
.h14{height:54.392985pt;}
.h7{height:60.060070pt;}
.h34{height:61.388587pt;}
.h15{height:61.388619pt;}
.h20{height:62.028603pt;}
.h8{height:64.124415pt;}
.h6{height:67.736915pt;}
.h2f{height:70.552939pt;}
.h26{height:70.552943pt;}
.h23{height:70.553003pt;}
.h1e{height:70.553059pt;}
.h18{height:70.553063pt;}
.h3e{height:71.192955pt;}
.h3c{height:71.193075pt;}
.h2b{height:71.193199pt;}
.h27{height:72.208628pt;}
.h1a{height:72.208632pt;}
.h3{height:74.332695pt;}
.h2{height:75.636793pt;}
.h31{height:82.712971pt;}
.h33{height:82.712975pt;}
.h32{height:82.713219pt;}
.h35{height:88.908607pt;}
.h30{height:88.908639pt;}
.h25{height:98.073083pt;}
.h2a{height:99.728528pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:0.160004pt;}
.w13{width:0.320007pt;}
.w10{width:0.639954pt;}
.w2a{width:1.440002pt;}
.w20{width:1.600036pt;}
.w3f{width:2.879974pt;}
.w15{width:2.879975pt;}
.w2f{width:2.880005pt;}
.w37{width:3.040039pt;}
.w33{width:3.520019pt;}
.w23{width:3.680053pt;}
.we{width:4.000000pt;}
.w3{width:4.799988pt;}
.w4{width:5.119995pt;}
.w1e{width:5.119996pt;}
.w21{width:5.279999pt;}
.wc{width:6.079956pt;}
.w2c{width:6.079986pt;}
.w1c{width:6.079987pt;}
.w18{width:6.080001pt;}
.w12{width:6.080002pt;}
.w9{width:6.080017pt;}
.w6{width:6.080018pt;}
.w50{width:13.279998pt;}
.w3e{width:15.520020pt;}
.w35{width:20.000000pt;}
.w34{width:20.640015pt;}
.wf{width:22.880004pt;}
.w43{width:24.320007pt;}
.w53{width:25.279999pt;}
.w4f{width:25.440003pt;}
.w8{width:25.599975pt;}
.w30{width:25.599976pt;}
.w40{width:25.600006pt;}
.w39{width:25.600036pt;}
.wb{width:25.600037pt;}
.w3b{width:28.000000pt;}
.w4c{width:28.639999pt;}
.w32{width:30.720001pt;}
.w47{width:31.359986pt;}
.w3a{width:31.360000pt;}
.w2d{width:31.360016pt;}
.w7{width:33.119995pt;}
.w14{width:33.920013pt;}
.w1a{width:34.719970pt;}
.w25{width:34.720001pt;}
.w16{width:34.880035pt;}
.w28{width:35.040009pt;}
.w5{width:35.359985pt;}
.w55{width:36.000000pt;}
.w5a{width:37.279999pt;}
.w26{width:37.599976pt;}
.w5f{width:37.919983pt;}
.w45{width:37.920013pt;}
.w2e{width:39.199982pt;}
.w38{width:39.200012pt;}
.w3c{width:39.359985pt;}
.w19{width:39.360001pt;}
.w36{width:40.000000pt;}
.w42{width:43.359985pt;}
.w27{width:43.360008pt;}
.w11{width:45.279999pt;}
.w61{width:46.240006pt;}
.w2b{width:48.000016pt;}
.w5c{width:48.960007pt;}
.wd{width:50.880005pt;}
.w31{width:53.280014pt;}
.w17{width:53.760002pt;}
.w4a{width:53.919983pt;}
.w1d{width:56.639984pt;}
.w4d{width:58.079987pt;}
.w29{width:58.080002pt;}
.w22{width:65.279999pt;}
.w57{width:68.000000pt;}
.w24{width:69.279999pt;}
.w5e{width:69.919998pt;}
.wa{width:70.559998pt;}
.w4e{width:72.640014pt;}
.w1b{width:73.919998pt;}
.w48{width:74.240020pt;}
.w56{width:76.320007pt;}
.w41{width:84.479996pt;}
.w52{width:88.479996pt;}
.w1f{width:89.279999pt;}
.w3d{width:90.560028pt;}
.w54{width:91.520020pt;}
.w5b{width:120.000000pt;}
.w46{width:120.959992pt;}
.w5d{width:133.279999pt;}
.w4b{width:137.760010pt;}
.w60{width:148.319977pt;}
.w49{width:164.960022pt;}
.w58{width:166.559997pt;}
.w59{width:174.079986pt;}
.w44{width:176.799987pt;}
.w51{width:184.320038pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:102.080002pt;}
.x7c{left:110.080002pt;}
.x5{left:111.519997pt;}
.x32{left:112.480003pt;}
.x2d{left:115.680000pt;}
.x8e{left:116.800003pt;}
.x33{left:117.760002pt;}
.x92{left:119.040001pt;}
.x9c{left:120.800003pt;}
.x2a{left:121.919998pt;}
.xe{left:122.879997pt;}
.x4f{left:124.320000pt;}
.x75{left:125.279999pt;}
.x48{left:126.239998pt;}
.x29{left:128.160004pt;}
.x1d{left:129.919998pt;}
.x15{left:130.880005pt;}
.x4e{left:132.320007pt;}
.x23{left:133.600006pt;}
.x56{left:134.880005pt;}
.xc{left:139.839996pt;}
.x7a{left:147.360001pt;}
.x94{left:153.440002pt;}
.x1{left:155.039993pt;}
.x4b{left:166.240005pt;}
.x2b{left:167.199997pt;}
.x34{left:171.360001pt;}
.x70{left:185.600006pt;}
.xab{left:186.559998pt;}
.xa0{left:188.000000pt;}
.x40{left:192.000000pt;}
.x3b{left:194.240005pt;}
.x78{left:195.360001pt;}
.x2c{left:196.800003pt;}
.x7{left:197.919998pt;}
.x4c{left:199.520004pt;}
.x77{left:200.960007pt;}
.x3c{left:202.080002pt;}
.x1e{left:203.839996pt;}
.x80{left:204.800003pt;}
.xac{left:205.919998pt;}
.x3a{left:207.039993pt;}
.xa{left:208.320007pt;}
.x3e{left:210.720001pt;}
.x45{left:212.639999pt;}
.xb{left:215.679993pt;}
.x6{left:216.800003pt;}
.x35{left:219.520004pt;}
.x46{left:221.600006pt;}
.x58{left:223.679993pt;}
.x5d{left:228.960007pt;}
.x98{left:232.960007pt;}
.x99{left:236.960007pt;}
.x9f{left:246.880005pt;}
.x4{left:248.320007pt;}
.x9a{left:250.240005pt;}
.xad{left:252.000000pt;}
.xa6{left:253.279999pt;}
.x59{left:254.399994pt;}
.x47{left:256.320007pt;}
.x36{left:258.559998pt;}
.x79{left:261.119995pt;}
.x51{left:263.040009pt;}
.x57{left:265.440002pt;}
.x3f{left:267.359985pt;}
.x71{left:268.480011pt;}
.x76{left:272.799988pt;}
.x1f{left:274.079987pt;}
.x3d{left:276.000000pt;}
.x68{left:281.119995pt;}
.x41{left:285.920013pt;}
.x85{left:290.239990pt;}
.x88{left:291.679993pt;}
.x95{left:292.959991pt;}
.x50{left:298.720001pt;}
.x5a{left:300.640015pt;}
.x8f{left:301.760010pt;}
.x69{left:303.519989pt;}
.x5e{left:307.040009pt;}
.xa7{left:310.079987pt;}
.x20{left:311.519989pt;}
.x6a{left:313.600006pt;}
.x2{left:317.760010pt;}
.x52{left:319.519989pt;}
.x5b{left:324.959991pt;}
.x5c{left:345.600006pt;}
.x53{left:350.880005pt;}
.x16{left:352.959991pt;}
.x90{left:355.679993pt;}
.x6b{left:356.959991pt;}
.x8{left:364.799988pt;}
.x89{left:365.920013pt;}
.x74{left:370.079987pt;}
.x73{left:373.119995pt;}
.x8a{left:385.920013pt;}
.x4d{left:389.760010pt;}
.x86{left:390.720001pt;}
.x81{left:391.839996pt;}
.x17{left:392.799988pt;}
.x87{left:398.079987pt;}
.x62{left:400.480011pt;}
.x60{left:406.079987pt;}
.xf{left:409.119995pt;}
.x7d{left:412.640015pt;}
.xa1{left:414.079987pt;}
.x8b{left:418.559998pt;}
.x82{left:419.679993pt;}
.xae{left:426.880005pt;}
.x6c{left:433.119995pt;}
.x61{left:434.079987pt;}
.x63{left:439.839996pt;}
.xa4{left:441.119995pt;}
.xa8{left:443.839996pt;}
.x91{left:446.239990pt;}
.xa9{left:447.839996pt;}
.x9d{left:455.359985pt;}
.x83{left:457.600006pt;}
.x42{left:462.399994pt;}
.x96{left:464.799988pt;}
.x2e{left:469.279999pt;}
.x11{left:471.679993pt;}
.x18{left:474.720001pt;}
.x64{left:481.119995pt;}
.xa3{left:482.399994pt;}
.x10{left:485.760010pt;}
.x49{left:488.320007pt;}
.x37{left:489.760010pt;}
.x6d{left:491.519989pt;}
.x21{left:494.239990pt;}
.x65{left:496.640015pt;}
.x2f{left:503.200012pt;}
.x66{left:504.640015pt;}
.x19{left:507.839996pt;}
.x30{left:510.079987pt;}
.x1a{left:513.760010pt;}
.x5f{left:514.719971pt;}
.x54{left:517.280029pt;}
.x22{left:519.840027pt;}
.x9{left:522.880005pt;}
.x38{left:524.479980pt;}
.x4a{left:525.919983pt;}
.x67{left:533.119995pt;}
.x97{left:537.440002pt;}
.x1b{left:539.359985pt;}
.x55{left:542.880005pt;}
.x31{left:544.960022pt;}
.x9e{left:546.880005pt;}
.x44{left:549.599976pt;}
.x43{left:551.679993pt;}
.x24{left:553.440002pt;}
.x6e{left:554.400024pt;}
.x7b{left:556.000000pt;}
.xa5{left:561.119995pt;}
.x6f{left:564.479980pt;}
.x39{left:565.760010pt;}
.x12{left:567.520020pt;}
.x1c{left:568.799988pt;}
.x93{left:569.919983pt;}
.x13{left:578.239990pt;}
.x84{left:582.559998pt;}
.x8c{left:583.520020pt;}
.xa2{left:588.159973pt;}
.x7e{left:589.440002pt;}
.x9b{left:593.280029pt;}
.xaa{left:596.159973pt;}
.x25{left:603.520020pt;}
.x26{left:607.520020pt;}
.x27{left:630.080017pt;}
.x8d{left:645.919983pt;}
.x7f{left:648.799988pt;}
.x28{left:651.039978pt;}
.x72{left:652.799988pt;}
.xd{left:668.799988pt;}
.x14{left:686.559998pt;}
}




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