
    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_fa0c376cedd2632eaedc0db4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ccb64d117dcad6b1b0abdeef.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d7fe2bfda3f3e0a280a770a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_7fbe78e73c4c8e27759464f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_fad0485f59374d9711083e88.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.066406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_31aa0fbb29ad6609843866f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0bb6af857d0578096e8c794a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_389ad9f7892febf36dfc735c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.249531,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249531,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249531,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-20.879996px;}
.v9{vertical-align:-12.240144px;}
.vd{vertical-align:-5.760130px;}
.v4{vertical-align:-4.319996px;}
.vc{vertical-align:-2.159915px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:2.159982px;}
.v3{vertical-align:4.319996px;}
.v2{vertical-align:8.639991px;}
.va{vertical-align:12.240144px;}
.vb{vertical-align:14.400059px;}
.v5{vertical-align:16.560005px;}
.v1{vertical-align:18.720013px;}
.v7{vertical-align:20.879933px;}
.vf{vertical-align:25.199959px;}
.v8{vertical-align:34.559969px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.003753px;}
.ls1{letter-spacing:0.036702px;}
.ls0{letter-spacing:0.036774px;}
.ls2{letter-spacing:0.036841px;}
.ls4{letter-spacing:0.036846px;}
.lsf{letter-spacing:0.050471px;}
.lsb{letter-spacing:0.050606px;}
.lsc{letter-spacing:0.050741px;}
.ls1b{letter-spacing:0.208287px;}
.ls17{letter-spacing:0.208350px;}
.ls5{letter-spacing:0.208355px;}
.lse{letter-spacing:0.216615px;}
.lsd{letter-spacing:0.297664px;}
.ls15{letter-spacing:0.378814px;}
.ls16{letter-spacing:0.416705px;}
.ls14{letter-spacing:0.417526px;}
.ls19{letter-spacing:0.596466px;}
.ls3{letter-spacing:0.756720px;}
.lsa{letter-spacing:4.131572px;}
.ls7{letter-spacing:4.131841px;}
.ls9{letter-spacing:4.851720px;}
.ls12{letter-spacing:20.691805px;}
.ls10{letter-spacing:21.411688px;}
.ls18{letter-spacing:64.117955px;}
.ls11{letter-spacing:80.890140px;}
.ls13{letter-spacing:80.890414px;}
.ls1a{letter-spacing:155.728408px;}
.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;}
}
.wsd{word-spacing:-59.646600px;}
.wse{word-spacing:-15.508116px;}
.wsc{word-spacing:-14.939873px;}
.ws4{word-spacing:-14.911650px;}
.ws2{word-spacing:-13.474463px;}
.ws6{word-spacing:-13.122252px;}
.ws0{word-spacing:-12.037163px;}
.ws3{word-spacing:-9.701595px;}
.ws9{word-spacing:-9.169796px;}
.ws1{word-spacing:-7.545679px;}
.ws8{word-spacing:-3.029706px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:10.656408px;}
.wsa{word-spacing:102.735350px;}
.wsb{word-spacing:113.736233px;}
._3e{margin-left:-7.759139px;}
._3d{margin-left:-4.668758px;}
._44{margin-left:-3.667920px;}
._2{margin-left:-1.133289px;}
._0{width:1.195190px;}
._1{width:2.450139px;}
._7{width:4.202128px;}
._a{width:5.840851px;}
._b{width:6.976394px;}
._8{width:8.513548px;}
._3{width:10.196845px;}
._4{width:11.255966px;}
._6{width:12.553584px;}
._5{width:13.607652px;}
._9{width:16.669666px;}
._20{width:17.705953px;}
._1a{width:18.836049px;}
._22{width:20.367611px;}
._17{width:21.571638px;}
._18{width:22.953778px;}
._1b{width:24.691435px;}
._15{width:25.945805px;}
._1f{width:27.253947px;}
._11{width:28.333855px;}
._10{width:29.424951px;}
._19{width:30.829603px;}
._12{width:32.177782px;}
._2e{width:33.371180px;}
._16{width:34.692958px;}
._23{width:36.412690px;}
._35{width:37.775869px;}
._28{width:38.827679px;}
._e{width:39.891765px;}
._f{width:41.433024px;}
._21{width:42.546665px;}
._62{width:43.568491px;}
._24{width:44.605638px;}
._2c{width:45.631047px;}
._2d{width:46.955998px;}
._1e{width:48.729014px;}
._39{width:49.773063px;}
._29{width:51.371710px;}
._69{width:52.536378px;}
._14{width:53.620036px;}
._13{width:55.024687px;}
._48{width:56.024920px;}
._61{width:57.433296px;}
._1d{width:58.703205px;}
._1c{width:59.983116px;}
._34{width:62.010635px;}
._2b{width:63.739923px;}
._2a{width:64.815423px;}
._3c{width:65.882610px;}
._67{width:67.349760px;}
._3a{width:68.422411px;}
._26{width:70.398044px;}
._27{width:71.575920px;}
._60{width:73.422707px;}
._6a{width:74.958462px;}
._38{width:76.276657px;}
._74{width:77.926724px;}
._58{width:79.310479px;}
._65{width:80.626737px;}
._6b{width:83.145103px;}
._33{width:84.537012px;}
._6f{width:87.488892px;}
._6d{width:88.991871px;}
._54{width:90.061850px;}
._72{width:91.308926px;}
._5e{width:94.589095px;}
._36{width:96.276907px;}
._6e{width:101.923763px;}
._32{width:105.742937px;}
._4a{width:107.185095px;}
._3b{width:110.343952px;}
._71{width:112.732540px;}
._76{width:114.529233px;}
._77{width:115.714404px;}
._3f{width:117.503802px;}
._25{width:126.450792px;}
._53{width:130.296126px;}
._63{width:131.662397px;}
._4d{width:133.608384px;}
._42{width:136.739597px;}
._57{width:143.748306px;}
._66{width:146.740655px;}
._73{width:147.921776px;}
._50{width:149.712966px;}
._40{width:152.704383px;}
._70{width:155.138083px;}
._c{width:156.274092px;}
._47{width:157.566280px;}
._43{width:159.673948px;}
._51{width:164.622358px;}
._52{width:166.711315px;}
._64{width:168.398340px;}
._41{width:169.445972px;}
._4e{width:173.475596px;}
._4c{width:176.553936px;}
._5c{width:178.402981px;}
._45{width:179.414715px;}
._5a{width:187.168773px;}
._46{width:188.314335px;}
._4f{width:190.869120px;}
._d{width:201.009042px;}
._6c{width:219.832814px;}
._37{width:255.108508px;}
._56{width:273.945489px;}
._30{width:291.530751px;}
._2f{width:293.927100px;}
._4b{width:333.424494px;}
._49{width:348.336144px;}
._75{width:382.941191px;}
._5d{width:439.224426px;}
._5b{width:572.436181px;}
._55{width:658.624586px;}
._59{width:678.991354px;}
._5f{width:682.181409px;}
._68{width:763.474222px;}
._31{width:1102.744083px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,51,0);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.182715px;}
.fs4{font-size:35.931825px;}
.fs7{font-size:38.806380px;}
.fs8{font-size:41.680890px;}
.fs2{font-size:48.148650px;}
.fs5{font-size:53.897850px;}
.fs0{font-size:59.646600px;}
.fs1{font-size:59.759492px;}
.fs9{font-size:71.863650px;}
.fs6{font-size:95.578650px;}
.y16f{bottom:-11.700028px;}
.y168{bottom:-10.980011px;}
.y16b{bottom:-10.800040px;}
.y17e{bottom:-9.539978px;}
.y179{bottom:-3.780052px;}
.y165{bottom:-0.539978px;}
.y0{bottom:0.000000px;}
.y188{bottom:0.719948px;}
.y173{bottom:1.080025px;}
.y85{bottom:3.239937px;}
.yb0{bottom:3.239971px;}
.yaa{bottom:3.239972px;}
.y225{bottom:3.239989px;}
.y96{bottom:3.240004px;}
.y81{bottom:3.240006px;}
.y88{bottom:3.599945px;}
.yb3{bottom:3.599979px;}
.yad{bottom:3.599980px;}
.y9e{bottom:3.599997px;}
.y7f{bottom:3.600013px;}
.yd3{bottom:3.600015px;}
.y171{bottom:4.139992px;}
.y174{bottom:4.679970px;}
.y18f{bottom:5.224238px;}
.y18d{bottom:7.736254px;}
.y127{bottom:7.740787px;}
.y12b{bottom:7.740831px;}
.y135{bottom:7.741720px;}
.y193{bottom:8.277809px;}
.y138{bottom:20.159767px;}
.y137{bottom:23.219694px;}
.y133{bottom:25.200153px;}
.y125{bottom:30.236940px;}
.y9{bottom:34.920044px;}
.y130{bottom:43.197431px;}
.y12d{bottom:44.103001px;}
.y129{bottom:46.623194px;}
.y8{bottom:49.500000px;}
.y7{bottom:63.360008px;}
.y76{bottom:84.960022px;}
.yeb{bottom:86.940033px;}
.y161{bottom:89.639992px;}
.y257{bottom:92.879998px;}
.y111{bottom:93.240006px;}
.y3e{bottom:95.220017px;}
.y107{bottom:97.740006px;}
.y99{bottom:98.100013px;}
.y191{bottom:99.715769px;}
.y21d{bottom:100.080025px;}
.y75{bottom:102.240006px;}
.yea{bottom:103.860008px;}
.ye9{bottom:107.460022px;}
.y256{bottom:110.159981px;}
.y110{bottom:110.519989px;}
.y3d{bottom:112.500000px;}
.y160{bottom:114.659981px;}
.y98{bottom:115.019989px;}
.y1d6{bottom:115.740006px;}
.y21c{bottom:117.360008px;}
.y97{bottom:118.620002px;}
.y74{bottom:119.340019px;}
.y15d{bottom:120.419975px;}
.ye8{bottom:122.220017px;}
.y255{bottom:127.440033px;}
.y10f{bottom:127.799973px;}
.y15c{bottom:129.059967px;}
.y15f{bottom:129.419975px;}
.y3c{bottom:129.779983px;}
.y106{bottom:132.120002px;}
.y1d5{bottom:132.840019px;}
.y95{bottom:133.379998px;}
.ye7{bottom:134.100013px;}
.y21b{bottom:134.639992px;}
.y73{bottom:136.620002px;}
.y15e{bottom:137.700027px;}
.ye6{bottom:139.139992px;}
.ye5{bottom:142.740006px;}
.y254{bottom:144.539977px;}
.y10e{bottom:144.899986px;}
.y3b{bottom:147.059967px;}
.y15b{bottom:147.419975px;}
.y1d4{bottom:147.600013px;}
.y105{bottom:149.399986px;}
.y21a{bottom:151.919975px;}
.y72{bottom:153.899986px;}
.ye4{bottom:157.500000px;}
.y253{bottom:161.820030px;}
.y10d{bottom:162.179970px;}
.y3a{bottom:164.340019px;}
.y1d3{bottom:165.600013px;}
.y104{bottom:166.679970px;}
.y94{bottom:167.399986px;}
.y15a{bottom:168.659981px;}
.y219{bottom:169.200027px;}
.y93{bottom:171.000000px;}
.y71{bottom:171.179970px;}
.ye3{bottom:177.840019px;}
.y252{bottom:179.100013px;}
.y10c{bottom:179.460022px;}
.y39{bottom:181.440033px;}
.y159{bottom:183.419975px;}
.y1d2{bottom:183.600013px;}
.y103{bottom:183.960022px;}
.y92{bottom:185.759994px;}
.y218{bottom:186.299973px;}
.y70{bottom:188.460022px;}
.ye2{bottom:195.120002px;}
.y156{bottom:196.019989px;}
.y251{bottom:196.379998px;}
.y10b{bottom:196.740006px;}
.y38{bottom:198.720017px;}
.y102{bottom:201.240006px;}
.y158{bottom:201.419975px;}
.y217{bottom:203.580025px;}
.y155{bottom:204.659981px;}
.y1d1{bottom:204.840019px;}
.y6f{bottom:205.740006px;}
.y91{bottom:206.279983px;}
.ye1{bottom:208.799973px;}
.y250{bottom:211.139992px;}
.ye0{bottom:212.399986px;}
.y157{bottom:213.120002px;}
.y10a{bottom:214.019989px;}
.y37{bottom:216.000000px;}
.y101{bottom:218.519989px;}
.y154{bottom:219.240006px;}
.y216{bottom:220.860008px;}
.y1f4{bottom:221.940033px;}
.y6e{bottom:222.840019px;}
.y8f{bottom:223.559967px;}
.ydf{bottom:227.159981px;}
.y24f{bottom:231.659981px;}
.y109{bottom:233.100013px;}
.y36{bottom:233.279983px;}
.y100{bottom:235.620002px;}
.y1f3{bottom:235.980011px;}
.y1d0{bottom:237.600013px;}
.y215{bottom:238.139992px;}
.y6d{bottom:240.120002px;}
.y153{bottom:240.480011px;}
.y8e{bottom:240.840019px;}
.y24e{bottom:246.419975px;}
.yde{bottom:247.679970px;}
.y35{bottom:250.559967px;}
.yff{bottom:252.899986px;}
.y214{bottom:255.419975px;}
.y1cf{bottom:255.600013px;}
.y6c{bottom:257.399986px;}
.y90{bottom:258.120002px;}
.y152{bottom:258.480011px;}
.ydd{bottom:264.960022px;}
.y24d{bottom:266.940033px;}
.y34{bottom:267.840019px;}
.y1cd{bottom:268.200027px;}
.y186{bottom:268.740006px;}
.yfe{bottom:270.179970px;}
.y8d{bottom:271.799973px;}
.y213{bottom:272.519989px;}
.yda{bottom:273.600013px;}
.y6b{bottom:274.679970px;}
.y8c{bottom:275.399986px;}
.y151{bottom:276.480011px;}
.y1cc{bottom:276.840019px;}
.y24c{bottom:281.700027px;}
.ydc{bottom:282.240006px;}
.y18b{bottom:283.500000px;}
.y33{bottom:284.940033px;}
.y185{bottom:286.019989px;}
.yfd{bottom:287.100013px;}
.y212{bottom:289.799973px;}
.y8b{bottom:290.159981px;}
.y1ce{bottom:291.600013px;}
.y6a{bottom:291.960022px;}
.y150{bottom:293.759994px;}
.y18a{bottom:297.179970px;}
.ydb{bottom:299.340019px;}
.y189{bottom:300.779983px;}
.y24b{bottom:302.039977px;}
.y32{bottom:302.220017px;}
.yfc{bottom:302.940033px;}
.y184{bottom:303.299973px;}
.y211{bottom:307.080025px;}
.y69{bottom:309.240006px;}
.y1cb{bottom:309.600013px;}
.y8a{bottom:310.500000px;}
.y14f{bottom:311.039977px;}
.yd9{bottom:313.019989px;}
.yd8{bottom:316.620002px;}
.y24a{bottom:316.799973px;}
.yfb{bottom:316.980011px;}
.y31{bottom:319.500000px;}
.y210{bottom:324.360008px;}
.y68{bottom:326.340019px;}
.y89{bottom:327.779983px;}
.y14e{bottom:328.320030px;}
.y1ca{bottom:330.840019px;}
.y187{bottom:334.080025px;}
.yd7{bottom:334.620002px;}
.y30{bottom:336.779983px;}
.y249{bottom:337.320030px;}
.y87{bottom:341.460022px;}
.y20f{bottom:341.639992px;}
.y67{bottom:343.620002px;}
.y86{bottom:345.059967px;}
.y14d{bottom:345.600013px;}
.y192{bottom:347.569798px;}
.yd6{bottom:349.379998px;}
.y2f{bottom:354.059967px;}
.y248{bottom:354.600013px;}
.y190{bottom:355.674644px;}
.y20e{bottom:358.919975px;}
.y84{bottom:359.820030px;}
.y66{bottom:360.899986px;}
.y178{bottom:362.340019px;}
.y14c{bottom:362.879998px;}
.y1c9{bottom:363.600013px;}
.y16a{bottom:365.940033px;}
.y1c7{bottom:367.200027px;}
.yd5{bottom:369.899986px;}
.y2e{bottom:371.159981px;}
.y247{bottom:371.879998px;}
.y169{bottom:373.139992px;}
.y177{bottom:375.840019px;}
.y20d{bottom:376.019989px;}
.y83{bottom:376.740006px;}
.y65{bottom:378.179970px;}
.y82{bottom:380.340019px;}
.y14b{bottom:380.519989px;}
.y1c8{bottom:381.600013px;}
.y1f2{bottom:384.840019px;}
.yd4{bottom:387.179970px;}
.y2d{bottom:388.440033px;}
.y246{bottom:389.159981px;}
.y20c{bottom:393.299973px;}
.y80{bottom:395.100013px;}
.y64{bottom:395.460022px;}
.y14a{bottom:396.360008px;}
.y1c6{bottom:399.600013px;}
.yd2{bottom:400.860008px;}
.y1f1{bottom:402.120002px;}
.y245{bottom:403.919975px;}
.yd1{bottom:404.460022px;}
.y2c{bottom:405.720017px;}
.y20b{bottom:410.580025px;}
.y176{bottom:411.120002px;}
.y7e{bottom:412.019989px;}
.y63{bottom:412.559967px;}
.y149{bottom:413.639992px;}
.y7d{bottom:415.620002px;}
.yd0{bottom:419.220017px;}
.y1f0{bottom:419.399986px;}
.y1c5{bottom:420.840019px;}
.y17d{bottom:422.279983px;}
.y2b{bottom:423.000000px;}
.y244{bottom:424.259994px;}
.y20a{bottom:427.860008px;}
.y62{bottom:429.840019px;}
.y148{bottom:430.740006px;}
.y17c{bottom:432.360008px;}
.y7c{bottom:433.620002px;}
.y1c4{bottom:435.600013px;}
.y1ef{bottom:436.679970px;}
.ycf{bottom:439.559967px;}
.y2a{bottom:440.279983px;}
.y243{bottom:441.539977px;}
.y209{bottom:445.139992px;}
.y61{bottom:447.120002px;}
.y147{bottom:448.019989px;}
.ycc{bottom:448.200027px;}
.y167{bottom:450.000000px;}
.y17b{bottom:451.080025px;}
.y7b{bottom:451.620002px;}
.y1c3{bottom:453.600013px;}
.y1ee{bottom:453.960022px;}
.y18e{bottom:455.212961px;}
.y166{bottom:456.299973px;}
.yce{bottom:456.840019px;}
.y1c1{bottom:457.200027px;}
.y29{bottom:457.559967px;}
.y242{bottom:458.820030px;}
.y18c{bottom:460.255169px;}
.y208{bottom:462.419975px;}
.y60{bottom:464.399986px;}
.y146{bottom:465.299973px;}
.ycb{bottom:465.480011px;}
.y1c0{bottom:465.840019px;}
.y7a{bottom:468.899986px;}
.y17a{bottom:470.700027px;}
.y1ed{bottom:471.059967px;}
.y1c2{bottom:471.600013px;}
.y241{bottom:473.580025px;}
.ycd{bottom:474.120002px;}
.y28{bottom:474.659981px;}
.y207{bottom:479.519989px;}
.y5f{bottom:481.679970px;}
.y145{bottom:482.580025px;}
.y79{bottom:486.539977px;}
.yca{bottom:487.799973px;}
.y1ec{bottom:488.340019px;}
.y170{bottom:489.240006px;}
.y1bf{bottom:489.600013px;}
.y172{bottom:490.320030px;}
.yc9{bottom:491.399986px;}
.y27{bottom:491.940033px;}
.y175{bottom:493.379998px;}
.y240{bottom:494.100013px;}
.y206{bottom:496.799973px;}
.y5e{bottom:498.960022px;}
.y144{bottom:499.860008px;}
.y78{bottom:502.019989px;}
.y1eb{bottom:505.620002px;}
.yc8{bottom:506.159981px;}
.y26{bottom:509.220017px;}
.y1be{bottom:510.840019px;}
.y23f{bottom:511.379998px;}
.y205{bottom:514.080025px;}
.y5d{bottom:516.059967px;}
.y143{bottom:517.139992px;}
.y77{bottom:517.500000px;}
.y1ea{bottom:522.899986px;}
.y164{bottom:525.779983px;}
.y23e{bottom:526.139992px;}
.y25{bottom:526.500000px;}
.yc7{bottom:526.679970px;}
.y1bd{bottom:528.840019px;}
.y204{bottom:531.360008px;}
.y5c{bottom:533.340019px;}
.y142{bottom:534.240006px;}
.yc4{bottom:535.320030px;}
.y181{bottom:540.000000px;}
.y1e9{bottom:540.179970px;}
.y163{bottom:542.340019px;}
.y1bc{bottom:543.600013px;}
.y24{bottom:543.779983px;}
.yc6{bottom:543.960022px;}
.y23d{bottom:546.659981px;}
.y203{bottom:548.639992px;}
.y5b{bottom:550.620002px;}
.y141{bottom:551.519989px;}
.yc3{bottom:552.419975px;}
.y180{bottom:557.279983px;}
.y1e8{bottom:557.460022px;}
.y162{bottom:559.620002px;}
.y108{bottom:560.700027px;}
.y23{bottom:561.059967px;}
.y1bb{bottom:561.600013px;}
.y23c{bottom:564.659981px;}
.y202{bottom:565.919975px;}
.y5a{bottom:567.899986px;}
.y140{bottom:568.799973px;}
.yc2{bottom:569.700027px;}
.y17f{bottom:574.379998px;}
.y1e7{bottom:574.559967px;}
.y22{bottom:578.159981px;}
.yc5{bottom:578.340019px;}
.y1ba{bottom:579.600013px;}
.y23b{bottom:581.759994px;}
.y201{bottom:583.019989px;}
.y59{bottom:585.179970px;}
.y13f{bottom:586.080025px;}
.y16e{bottom:591.480011px;}
.y1e6{bottom:591.840019px;}
.yc1{bottom:592.019989px;}
.y1b6{bottom:592.200027px;}
.y21{bottom:595.440033px;}
.yc0{bottom:595.620002px;}
.y16d{bottom:596.879998px;}
.y1b9{bottom:597.600013px;}
.y23a{bottom:599.039977px;}
.y200{bottom:600.299973px;}
.y1b5{bottom:600.840019px;}
.y58{bottom:602.460022px;}
.y13e{bottom:603.360008px;}
.y1e5{bottom:609.120002px;}
.ybf{bottom:610.379998px;}
.y20{bottom:612.720017px;}
.y239{bottom:613.079990px;}
.y1b8{bottom:615.600013px;}
.y238{bottom:616.319995px;}
.y1ff{bottom:617.579990px;}
.y57{bottom:619.560001px;}
.y13d{bottom:620.639992px;}
.y1e4{bottom:626.399986px;}
.y183{bottom:628.199993px;}
.y1f{bottom:630.000000px;}
.ybe{bottom:630.899986px;}
.y1b7{bottom:633.600013px;}
.y237{bottom:633.959988px;}
.y1fe{bottom:634.860008px;}
.y56{bottom:636.839985px;}
.y16c{bottom:637.199993px;}
.y13c{bottom:637.740006px;}
.y1e3{bottom:643.680004px;}
.y182{bottom:645.480011px;}
.y1e{bottom:647.279983px;}
.ybc{bottom:648.180004px;}
.y236{bottom:649.800007px;}
.y1b4{bottom:651.600013px;}
.y1fd{bottom:652.139992px;}
.y55{bottom:654.120002px;}
.y13b{bottom:655.019989px;}
.y1e2{bottom:660.959988px;}
.y1d{bottom:664.560001px;}
.ybb{bottom:665.459988px;}
.y235{bottom:667.079990px;}
.y1fc{bottom:669.240006px;}
.y54{bottom:671.399986px;}
.y13a{bottom:672.300007px;}
.y1b3{bottom:672.839985px;}
.y1e1{bottom:678.060001px;}
.y1c{bottom:681.660015px;}
.yba{bottom:682.560001px;}
.y234{bottom:684.360008px;}
.y1fb{bottom:686.519989px;}
.y1b2{bottom:687.600013px;}
.y53{bottom:688.680004px;}
.y139{bottom:689.579990px;}
.y1e0{bottom:695.339985px;}
.y1b{bottom:698.939999px;}
.ybd{bottom:699.839985px;}
.y233{bottom:701.639992px;}
.y1fa{bottom:703.800007px;}
.y1b1{bottom:705.600013px;}
.y52{bottom:705.779983px;}
.y1df{bottom:712.620002px;}
.yb9{bottom:713.519989px;}
.y12a{bottom:716.033904px;}
.y1a{bottom:716.220017px;}
.yb8{bottom:717.120002px;}
.y12e{bottom:717.294467px;}
.y131{bottom:717.658526px;}
.y232{bottom:718.920010px;}
.y1f9{bottom:721.079990px;}
.y51{bottom:723.060001px;}
.y128{bottom:723.415209px;}
.y1b0{bottom:723.600013px;}
.y126{bottom:724.138794px;}
.y12c{bottom:724.675772px;}
.y12f{bottom:725.035253px;}
.y134{bottom:726.655343px;}
.y1ad{bottom:727.199993px;}
.y1de{bottom:729.899986px;}
.y124{bottom:731.697551px;}
.y19{bottom:733.500000px;}
.y132{bottom:734.215033px;}
.yb7{bottom:735.120002px;}
.y1ac{bottom:735.839985px;}
.y231{bottom:736.019989px;}
.y1f8{bottom:738.360008px;}
.y50{bottom:740.339985px;}
.y1af{bottom:741.600013px;}
.y136{bottom:745.012991px;}
.y1dd{bottom:747.180004px;}
.yb6{bottom:749.879998px;}
.y18{bottom:750.779983px;}
.y1f7{bottom:755.279983px;}
.y4f{bottom:757.620002px;}
.y1ae{bottom:759.600013px;}
.y1dc{bottom:764.279983px;}
.y17{bottom:767.879998px;}
.yb5{bottom:770.399986px;}
.y1f6{bottom:770.759994px;}
.y230{bottom:771.300007px;}
.y4e{bottom:774.899986px;}
.y1ab{bottom:777.600013px;}
.y1db{bottom:781.560001px;}
.y1f5{bottom:783.360008px;}
.y16{bottom:785.160015px;}
.yb4{bottom:787.680004px;}
.y22d{bottom:788.579990px;}
.y122{bottom:790.199993px;}
.y4d{bottom:792.180004px;}
.y123{bottom:793.439999px;}
.y1aa{bottom:798.839985px;}
.yb2{bottom:801.180004px;}
.y15{bottom:802.439999px;}
.yb1{bottom:804.779983px;}
.y22f{bottom:805.860008px;}
.yfa{bottom:807.120002px;}
.y4c{bottom:809.279983px;}
.y121{bottom:811.439999px;}
.y1a9{bottom:813.600013px;}
.yaf{bottom:819.540012px;}
.y22e{bottom:823.139992px;}
.yf9{bottom:824.399986px;}
.y14{bottom:824.939999px;}
.y4b{bottom:826.560001px;}
.y120{bottom:829.079990px;}
.y1a8{bottom:831.600013px;}
.y1a4{bottom:835.560001px;}
.y22c{bottom:837.899986px;}
.yae{bottom:840.060001px;}
.y1a5{bottom:840.959988px;}
.yf8{bottom:841.680004px;}
.y13{bottom:842.220017px;}
.y4a{bottom:843.839985px;}
.y1a1{bottom:844.199993px;}
.y11f{bottom:844.920010px;}
.y1a7{bottom:849.600013px;}
.y1a3{bottom:852.839985px;}
.yac{bottom:853.740006px;}
.y12{bottom:854.279983px;}
.y22b{bottom:855.899986px;}
.yab{bottom:857.339985px;}
.yf7{bottom:858.779983px;}
.y22a{bottom:859.139992px;}
.y49{bottom:861.120002px;}
.y1a0{bottom:861.480011px;}
.y11e{bottom:862.199993px;}
.y1a6{bottom:867.600013px;}
.y1a2{bottom:870.120002px;}
.y1d9{bottom:870.839985px;}
.y11{bottom:871.379998px;}
.ya9{bottom:872.100013px;}
.y229{bottom:873.899987px;}
.yf6{bottom:876.060001px;}
.y228{bottom:877.139992px;}
.y48{bottom:878.399987px;}
.y11d{bottom:879.300007px;}
.y19f{bottom:885.600013px;}
.y10{bottom:888.660015px;}
.y227{bottom:891.899987px;}
.ya8{bottom:892.620002px;}
.yf5{bottom:893.339985px;}
.y226{bottom:895.139992px;}
.y47{bottom:895.680004px;}
.y11c{bottom:896.579990px;}
.ya4{bottom:901.259994px;}
.y1da{bottom:903.599997px;}
.y19e{bottom:906.840002px;}
.yf4{bottom:908.099997px;}
.ya7{bottom:909.900003px;}
.y119{bottom:910.620002px;}
.yf{bottom:911.159998px;}
.y46{bottom:912.780001px;}
.y11b{bottom:914.759994px;}
.y118{bottom:918.180004px;}
.ya3{bottom:918.539996px;}
.y1d8{bottom:921.599997px;}
.y224{bottom:921.780001px;}
.ye{bottom:923.219999px;}
.y11a{bottom:924.120002px;}
.y19d{bottom:924.840002px;}
.ya6{bottom:927.180004px;}
.yf3{bottom:928.620002px;}
.y45{bottom:930.060001px;}
.ya2{bottom:935.639992px;}
.y117{bottom:939.240006px;}
.y19c{bottom:939.599997px;}
.yd{bottom:942.479994px;}
.y1d7{bottom:942.840002px;}
.ya5{bottom:944.280001px;}
.y223{bottom:945.000000px;}
.yf2{bottom:945.900003px;}
.y44{bottom:947.340002px;}
.y116{bottom:956.520006px;}
.y19b{bottom:957.599997px;}
.ya1{bottom:957.960004px;}
.yf1{bottom:959.580008px;}
.ya0{bottom:961.560001px;}
.yf0{bottom:963.180004px;}
.y43{bottom:964.620002px;}
.y222{bottom:965.520006px;}
.yc{bottom:970.020006px;}
.y113{bottom:970.560001px;}
.y21f{bottom:974.159998px;}
.y115{bottom:974.699993px;}
.y19a{bottom:975.599997px;}
.y9f{bottom:976.319996px;}
.yef{bottom:977.939999px;}
.y112{bottom:978.120002px;}
.y195{bottom:979.199993px;}
.y42{bottom:981.900003px;}
.y221{bottom:982.800007px;}
.y114{bottom:984.060001px;}
.y197{bottom:987.840002px;}
.y9d{bottom:993.240006px;}
.y199{bottom:993.599997px;}
.y194{bottom:996.479994px;}
.y9c{bottom:996.840002px;}
.yb{bottom:997.740006px;}
.yee{bottom:998.280001px;}
.y41{bottom:999.180004px;}
.y220{bottom:1000.080008px;}
.y196{bottom:1005.120002px;}
.y198{bottom:1011.599997px;}
.y9b{bottom:1014.840002px;}
.yed{bottom:1015.560001px;}
.y40{bottom:1016.280001px;}
.y21e{bottom:1017.719999px;}
.ya{bottom:1025.280001px;}
.y9a{bottom:1029.599997px;}
.yec{bottom:1032.840002px;}
.y3f{bottom:1033.560001px;}
.y6{bottom:1067.219999px;}
.y5{bottom:1079.459997px;}
.y4{bottom:1091.340002px;}
.y3{bottom:1105.379998px;}
.y2{bottom:1119.960843px;}
.y1{bottom:1120.860000px;}
.h35{height:1.620002px;}
.h32{height:2.340019px;}
.h31{height:2.519989px;}
.h34{height:2.699960px;}
.h3b{height:3.779984px;}
.h40{height:5.224238px;}
.h39{height:5.399987px;}
.h3f{height:7.736254px;}
.h25{height:7.740787px;}
.h27{height:7.740831px;}
.h2b{height:7.741720px;}
.h42{height:8.277809px;}
.h38{height:9.539979px;}
.h30{height:12.960022px;}
.h3d{height:13.500000px;}
.h3e{height:14.039978px;}
.h1a{height:16.559966px;}
.h10{height:16.559967px;}
.h43{height:16.559984px;}
.h14{height:16.560001px;}
.h16{height:16.560002px;}
.h49{height:16.560018px;}
.h13{height:16.560035px;}
.h12{height:16.560036px;}
.h44{height:16.740006px;}
.h11{height:16.919975px;}
.h15{height:16.919992px;}
.h17{height:16.919993px;}
.h18{height:16.920009px;}
.h19{height:16.920010px;}
.hf{height:16.920044px;}
.h36{height:18.360008px;}
.h2d{height:20.159767px;}
.h2c{height:23.219694px;}
.h2a{height:25.200153px;}
.ha{height:27.380478px;}
.h23{height:30.236940px;}
.hd{height:34.789313px;}
.h1f{height:35.127547px;}
.h5{height:35.738832px;}
.h3a{height:39.754692px;}
.h1c{height:41.764270px;}
.h9{height:42.084637px;}
.h2{height:42.164290px;}
.h7{height:43.164512px;}
.h29{height:43.197431px;}
.h3c{height:43.424356px;}
.h28{height:44.103001px;}
.h4{height:44.378823px;}
.he{height:44.423619px;}
.h3{height:45.778346px;}
.h26{height:46.623194px;}
.hb{height:48.260411px;}
.hc{height:48.260541px;}
.h6{height:48.318580px;}
.h1d{height:49.161846px;}
.h37{height:50.268570px;}
.h33{height:50.704577px;}
.h1{height:53.472245px;}
.h24{height:53.573451px;}
.h20{height:67.152281px;}
.h22{height:67.152285px;}
.h21{height:70.407529px;}
.h1e{height:70.407533px;}
.h2e{height:75.924723px;}
.h46{height:76.644606px;}
.h47{height:76.644673px;}
.h45{height:76.644741px;}
.h2f{height:76.644876px;}
.h8{height:85.684766px;}
.h48{height:87.312263px;}
.h1b{height:88.032213px;}
.h41{height:99.715769px;}
.h0{height:1188.000000px;}
.w47{width:0.720017px;}
.w37{width:3.060002px;}
.w32{width:3.239971px;}
.w30{width:3.240006px;}
.w39{width:3.599980px;}
.w34{width:3.600013px;}
.w3f{width:3.779983px;}
.w2e{width:4.139992px;}
.w3a{width:5.219982px;}
.w35{width:5.220017px;}
.w36{width:5.579990px;}
.w1{width:5.579991px;}
.w3d{width:6.839984px;}
.w3c{width:6.839985px;}
.w2c{width:6.840002px;}
.w41{width:6.840019px;}
.w4b{width:7.379997px;}
.w50{width:7.379998px;}
.w14{width:7.559966px;}
.w10{width:7.559967px;}
.w46{width:7.559984px;}
.w3{width:7.560001px;}
.w6{width:7.560002px;}
.w19{width:7.560035px;}
.w28{width:7.560036px;}
.w33{width:7.920009px;}
.w2b{width:8.099997px;}
.w38{width:9.359974px;}
.w31{width:12.600013px;}
.w26{width:14.033433px;}
.w27{width:14.033523px;}
.w24{width:14.038019px;}
.w22{width:14.042606px;}
.w25{width:14.215850px;}
.w21{width:14.220436px;}
.w23{width:14.224977px;}
.w44{width:14.400058px;}
.w20{width:14.753881px;}
.w45{width:14.940016px;}
.w29{width:14.940033px;}
.w54{width:18.539979px;}
.w58{width:18.540012px;}
.w2f{width:19.080007px;}
.w3e{width:20.160016px;}
.w4{width:21.599980px;}
.w11{width:21.600013px;}
.wa{width:22.500000px;}
.w16{width:23.399986px;}
.wd{width:25.019989px;}
.w2{width:25.020007px;}
.w9{width:25.919975px;}
.w51{width:30.060001px;}
.w2d{width:31.680003px;}
.w2a{width:31.680005px;}
.w56{width:32.580025px;}
.w3b{width:33.300007px;}
.wb{width:36.180005px;}
.w59{width:36.720017px;}
.w17{width:38.519989px;}
.w1b{width:39.600013px;}
.w4d{width:41.759994px;}
.w5e{width:42.479994px;}
.w48{width:42.480011px;}
.w15{width:43.379998px;}
.w55{width:45.180003px;}
.w42{width:45.900003px;}
.w57{width:46.620002px;}
.we{width:47.519989px;}
.w1d{width:51.659981px;}
.w53{width:52.740006px;}
.w4f{width:56.339984px;}
.w4a{width:56.340002px;}
.w60{width:58.319996px;}
.w5c{width:58.859974px;}
.w12{width:59.580025px;}
.w4e{width:59.940033px;}
.w43{width:61.560002px;}
.w5d{width:62.459988px;}
.w4c{width:63.719982px;}
.w5b{width:79.919992px;}
.w8{width:80.460023px;}
.w61{width:80.819996px;}
.w1a{width:85.320030px;}
.wf{width:88.740006px;}
.w40{width:90.000000px;}
.w5a{width:90.899986px;}
.w5f{width:90.900003px;}
.w52{width:93.240006px;}
.w7{width:106.560001px;}
.w5{width:121.319996px;}
.wc{width:135.360008px;}
.w18{width:137.879998px;}
.w49{width:140.219948px;}
.w1c{width:148.680038px;}
.w1f{width:151.199993px;}
.w13{width:151.200028px;}
.w1e{width:169.560036px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3f{left:1.076019px;}
.x7f{left:124.377363px;}
.x5{left:134.819996px;}
.x9{left:136.079999px;}
.x17{left:142.560001px;}
.x36{left:143.640000px;}
.x66{left:145.800007px;}
.x80{left:147.419992px;}
.x8{left:152.639992px;}
.x78{left:153.900003px;}
.x38{left:155.340002px;}
.x18{left:156.599997px;}
.x9e{left:162.000000px;}
.xc{left:165.240006px;}
.xd{left:166.500000px;}
.xa9{left:168.840002px;}
.x15{left:170.099997px;}
.x61{left:172.800007px;}
.x65{left:176.939999px;}
.x7{left:178.199993px;}
.x77{left:188.639992px;}
.xe{left:190.620002px;}
.x63{left:193.319996px;}
.x79{left:194.400003px;}
.x82{left:198.000000px;}
.x81{left:201.780001px;}
.x92{left:213.300007px;}
.x93{left:220.860008px;}
.x62{left:222.840002px;}
.x64{left:225.000000px;}
.x7a{left:226.080008px;}
.x7b{left:229.139992px;}
.x19{left:230.759994px;}
.x67{left:233.639992px;}
.x89{left:241.919992px;}
.x14{left:244.620002px;}
.x1{left:246.599997px;}
.x8e{left:248.939999px;}
.x37{left:251.460005px;}
.x83{left:253.259994px;}
.x8b{left:254.699993px;}
.x1a{left:255.780001px;}
.x8a{left:256.860008px;}
.x9a{left:258.120002px;}
.x94{left:261.900003px;}
.x8d{left:266.759994px;}
.x7c{left:275.039996px;}
.x85{left:280.080008px;}
.x13{left:283.500000px;}
.x68{left:291.060001px;}
.x69{left:296.459988px;}
.x84{left:300.779983px;}
.x1d{left:311.040012px;}
.x74{left:313.920010px;}
.x6a{left:316.439999px;}
.x73{left:318.240006px;}
.x7d{left:319.860008px;}
.x10{left:321.300007px;}
.x6b{left:323.639992px;}
.xf{left:325.980011px;}
.x6c{left:328.319996px;}
.x9b{left:329.399987px;}
.x6d{left:333.720017px;}
.x1c{left:337.319996px;}
.x6e{left:338.399987px;}
.x75{left:340.920010px;}
.x6f{left:343.079990px;}
.x76{left:344.699993px;}
.x70{left:348.660015px;}
.xa{left:351.899987px;}
.x71{left:356.040012px;}
.x9f{left:359.459988px;}
.x72{left:360.720017px;}
.x9c{left:361.980011px;}
.x95{left:363.060001px;}
.x1e{left:366.120002px;}
.x7e{left:378.360008px;}
.x31{left:381.959988px;}
.x2{left:383.579990px;}
.x87{left:390.240006px;}
.x3{left:399.420010px;}
.x88{left:403.379998px;}
.xa0{left:406.079990px;}
.x86{left:410.939999px;}
.x16{left:413.100014px;}
.x11{left:418.139992px;}
.x1b{left:434.699993px;}
.x32{left:436.500000px;}
.x8c{left:439.019989px;}
.x6{left:443.879998px;}
.xb{left:459.000000px;}
.x33{left:461.160015px;}
.x3e{left:478.260131px;}
.x12{left:486.000000px;}
.x4a{left:487.620002px;}
.x3c{left:488.699993px;}
.x21{left:493.560001px;}
.x35{left:495.720017px;}
.x59{left:498.420010px;}
.x40{left:499.857485px;}
.x96{left:503.639992px;}
.x5a{left:505.980011px;}
.x1f{left:507.600014px;}
.x28{left:515.160015px;}
.x41{left:520.196449px;}
.xa7{left:523.439999px;}
.x3d{left:526.139992px;}
.x9d{left:530.279983px;}
.x20{left:532.620002px;}
.x4b{left:535.500000px;}
.xa1{left:537.480011px;}
.x42{left:540.353086px;}
.xa8{left:541.800007px;}
.x4c{left:543.240006px;}
.x98{left:545.759994px;}
.x34{left:548.100014px;}
.x2a{left:550.980011px;}
.x22{left:555.120002px;}
.x3b{left:560.879998px;}
.x99{left:575.819996px;}
.x23{left:581.759994px;}
.xa2{left:584.100014px;}
.x4f{left:587.519989px;}
.x4d{left:591.299973px;}
.x5e{left:592.919975px;}
.x4e{left:594.179970px;}
.x5b{left:596.700027px;}
.x43{left:601.192191px;}
.x5c{left:604.259994px;}
.x5f{left:607.860008px;}
.xa5{left:612.539978px;}
.x58{left:617.039978px;}
.x2c{left:620.100014px;}
.x2f{left:621.360008px;}
.x50{left:631.259994px;}
.x51{left:633.779983px;}
.x39{left:637.019989px;}
.x3a{left:639.539978px;}
.x27{left:641.340019px;}
.xa3{left:645.480011px;}
.x90{left:651.240006px;}
.x44{left:661.853511px;}
.x2e{left:667.080025px;}
.x97{left:668.700027px;}
.x24{left:670.500000px;}
.x45{left:682.192520px;}
.xa6{left:690.659981px;}
.x52{left:692.100014px;}
.x54{left:696.779983px;}
.x53{left:698.399987px;}
.xa4{left:699.480011px;}
.x46{left:702.358239px;}
.x2d{left:719.639992px;}
.x47{left:722.692662px;}
.x30{left:730.440033px;}
.x29{left:732.960023px;}
.x55{left:741.419975px;}
.x48{left:742.849254px;}
.x91{left:748.799973px;}
.x57{left:751.860008px;}
.x56{left:753.120002px;}
.x5d{left:754.379998px;}
.x60{left:758.159981px;}
.x25{left:764.100014px;}
.x4{left:783.000000px;}
.x26{left:785.700027px;}
.x2b{left:787.500000px;}
.x49{left:803.697487px;}
.x8f{left:812.159981px;}
@media print{
.v6{vertical-align:-18.559996pt;}
.v9{vertical-align:-10.880128pt;}
.vd{vertical-align:-5.120116pt;}
.v4{vertical-align:-3.839996pt;}
.vc{vertical-align:-1.919924pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:1.919984pt;}
.v3{vertical-align:3.839996pt;}
.v2{vertical-align:7.679992pt;}
.va{vertical-align:10.880128pt;}
.vb{vertical-align:12.800052pt;}
.v5{vertical-align:14.720004pt;}
.v1{vertical-align:16.640012pt;}
.v7{vertical-align:18.559940pt;}
.vf{vertical-align:22.399964pt;}
.v8{vertical-align:30.719972pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.003336pt;}
.ls1{letter-spacing:0.032624pt;}
.ls0{letter-spacing:0.032688pt;}
.ls2{letter-spacing:0.032748pt;}
.ls4{letter-spacing:0.032752pt;}
.lsf{letter-spacing:0.044863pt;}
.lsb{letter-spacing:0.044983pt;}
.lsc{letter-spacing:0.045103pt;}
.ls1b{letter-spacing:0.185144pt;}
.ls17{letter-spacing:0.185200pt;}
.ls5{letter-spacing:0.185204pt;}
.lse{letter-spacing:0.192546pt;}
.lsd{letter-spacing:0.264590pt;}
.ls15{letter-spacing:0.336723pt;}
.ls16{letter-spacing:0.370404pt;}
.ls14{letter-spacing:0.371134pt;}
.ls19{letter-spacing:0.530192pt;}
.ls3{letter-spacing:0.672640pt;}
.lsa{letter-spacing:3.672508pt;}
.ls7{letter-spacing:3.672748pt;}
.ls9{letter-spacing:4.312640pt;}
.ls12{letter-spacing:18.392716pt;}
.ls10{letter-spacing:19.032612pt;}
.ls18{letter-spacing:56.993738pt;}
.ls11{letter-spacing:71.902346pt;}
.ls13{letter-spacing:71.902590pt;}
.ls1a{letter-spacing:138.425252pt;}
.wsd{word-spacing:-53.019200pt;}
.wse{word-spacing:-13.784992pt;}
.wsc{word-spacing:-13.279887pt;}
.ws4{word-spacing:-13.254800pt;}
.ws2{word-spacing:-11.977300pt;}
.ws6{word-spacing:-11.664224pt;}
.ws0{word-spacing:-10.699700pt;}
.ws3{word-spacing:-8.623640pt;}
.ws9{word-spacing:-8.150930pt;}
.ws1{word-spacing:-6.707270pt;}
.ws8{word-spacing:-2.693072pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:9.472363pt;}
.wsa{word-spacing:91.320311pt;}
.wsb{word-spacing:101.098874pt;}
._3e{margin-left:-6.897012pt;}
._3d{margin-left:-4.150007pt;}
._44{margin-left:-3.260374pt;}
._2{margin-left:-1.007368pt;}
._0{width:1.062391pt;}
._1{width:2.177901pt;}
._7{width:3.735225pt;}
._a{width:5.191868pt;}
._b{width:6.201239pt;}
._8{width:7.567598pt;}
._3{width:9.063862pt;}
._4{width:10.005303pt;}
._6{width:11.158742pt;}
._5{width:12.095690pt;}
._9{width:14.817481pt;}
._20{width:15.738625pt;}
._1a{width:16.743155pt;}
._22{width:18.104543pt;}
._17{width:19.174789pt;}
._18{width:20.403358pt;}
._1b{width:21.947942pt;}
._15{width:23.062938pt;}
._1f{width:24.225731pt;}
._11{width:25.185649pt;}
._10{width:26.155512pt;}
._19{width:27.404092pt;}
._12{width:28.602473pt;}
._2e{width:29.663271pt;}
._16{width:30.838185pt;}
._23{width:32.366836pt;}
._35{width:33.578551pt;}
._28{width:34.513492pt;}
._e{width:35.459346pt;}
._f{width:36.829354pt;}
._21{width:37.819258pt;}
._62{width:38.727547pt;}
._24{width:39.649456pt;}
._2c{width:40.560931pt;}
._2d{width:41.738665pt;}
._1e{width:43.314679pt;}
._39{width:44.242722pt;}
._29{width:45.663743pt;}
._69{width:46.699003pt;}
._14{width:47.662254pt;}
._13{width:48.910833pt;}
._48{width:49.799929pt;}
._61{width:51.051819pt;}
._1d{width:52.180627pt;}
._1c{width:53.318325pt;}
._34{width:55.120564pt;}
._2b{width:56.657710pt;}
._2a{width:57.613709pt;}
._3c{width:58.562320pt;}
._67{width:59.866453pt;}
._3a{width:60.819921pt;}
._26{width:62.576039pt;}
._27{width:63.623040pt;}
._60{width:65.264628pt;}
._6a{width:66.629744pt;}
._38{width:67.801473pt;}
._74{width:69.268199pt;}
._58{width:70.498203pt;}
._65{width:71.668210pt;}
._6b{width:73.906758pt;}
._33{width:75.144011pt;}
._6f{width:77.767904pt;}
._6d{width:79.103885pt;}
._54{width:80.054978pt;}
._72{width:81.163490pt;}
._5e{width:84.079196pt;}
._36{width:85.579473pt;}
._6e{width:90.598900pt;}
._32{width:93.993722pt;}
._4a{width:95.275640pt;}
._3b{width:98.083513pt;}
._71{width:100.206702pt;}
._76{width:101.803763pt;}
._77{width:102.857248pt;}
._3f{width:104.447824pt;}
._25{width:112.400704pt;}
._53{width:115.818779pt;}
._63{width:117.033242pt;}
._4d{width:118.763008pt;}
._42{width:121.546309pt;}
._57{width:127.776272pt;}
._66{width:130.436138pt;}
._73{width:131.486023pt;}
._50{width:133.078192pt;}
._40{width:135.737229pt;}
._70{width:137.900518pt;}
._c{width:138.910304pt;}
._47{width:140.058915pt;}
._43{width:141.932398pt;}
._51{width:146.330985pt;}
._52{width:148.187836pt;}
._64{width:149.687413pt;}
._41{width:150.618642pt;}
._4e{width:154.200529pt;}
._4c{width:156.936832pt;}
._5c{width:158.580427pt;}
._45{width:159.479747pt;}
._5a{width:166.372243pt;}
._46{width:167.390520pt;}
._4f{width:169.661440pt;}
._d{width:178.674704pt;}
._6c{width:195.406946pt;}
._37{width:226.763118pt;}
._56{width:243.507101pt;}
._30{width:259.138446pt;}
._2f{width:261.268533pt;}
._4b{width:296.377328pt;}
._49{width:309.632128pt;}
._75{width:340.392170pt;}
._5d{width:390.421712pt;}
._5b{width:508.832161pt;}
._55{width:585.444077pt;}
._59{width:603.547870pt;}
._5f{width:606.383475pt;}
._68{width:678.643753pt;}
._31{width:980.216963pt;}
.fs3{font-size:26.829080pt;}
.fs4{font-size:31.939400pt;}
.fs7{font-size:34.494560pt;}
.fs8{font-size:37.049680pt;}
.fs2{font-size:42.798800pt;}
.fs5{font-size:47.909200pt;}
.fs0{font-size:53.019200pt;}
.fs1{font-size:53.119548pt;}
.fs9{font-size:63.878800pt;}
.fs6{font-size:84.958800pt;}
.y16f{bottom:-10.400025pt;}
.y168{bottom:-9.760010pt;}
.y16b{bottom:-9.600036pt;}
.y17e{bottom:-8.479980pt;}
.y179{bottom:-3.360046pt;}
.y165{bottom:-0.479980pt;}
.y0{bottom:0.000000pt;}
.y188{bottom:0.639954pt;}
.y173{bottom:0.960022pt;}
.y85{bottom:2.879944pt;}
.yb0{bottom:2.879974pt;}
.yaa{bottom:2.879975pt;}
.y225{bottom:2.879990pt;}
.y96{bottom:2.880004pt;}
.y81{bottom:2.880005pt;}
.y88{bottom:3.199951pt;}
.yb3{bottom:3.199981pt;}
.yad{bottom:3.199982pt;}
.y9e{bottom:3.199997pt;}
.y7f{bottom:3.200012pt;}
.yd3{bottom:3.200013pt;}
.y171{bottom:3.679993pt;}
.y174{bottom:4.159973pt;}
.y18f{bottom:4.643767pt;}
.y18d{bottom:6.876670pt;}
.y127{bottom:6.880699pt;}
.y12b{bottom:6.880739pt;}
.y135{bottom:6.881529pt;}
.y193{bottom:7.358053pt;}
.y138{bottom:17.919793pt;}
.y137{bottom:20.639728pt;}
.y133{bottom:22.400136pt;}
.y125{bottom:26.877280pt;}
.y9{bottom:31.040039pt;}
.y130{bottom:38.397717pt;}
.y12d{bottom:39.202668pt;}
.y129{bottom:41.442840pt;}
.y8{bottom:44.000000pt;}
.y7{bottom:56.320007pt;}
.y76{bottom:75.520020pt;}
.yeb{bottom:77.280029pt;}
.y161{bottom:79.679993pt;}
.y257{bottom:82.559998pt;}
.y111{bottom:82.880005pt;}
.y3e{bottom:84.640015pt;}
.y107{bottom:86.880005pt;}
.y99{bottom:87.200012pt;}
.y191{bottom:88.636239pt;}
.y21d{bottom:88.960022pt;}
.y75{bottom:90.880005pt;}
.yea{bottom:92.320007pt;}
.ye9{bottom:95.520020pt;}
.y256{bottom:97.919983pt;}
.y110{bottom:98.239990pt;}
.y3d{bottom:100.000000pt;}
.y160{bottom:101.919983pt;}
.y98{bottom:102.239990pt;}
.y1d6{bottom:102.880005pt;}
.y21c{bottom:104.320007pt;}
.y97{bottom:105.440002pt;}
.y74{bottom:106.080017pt;}
.y15d{bottom:107.039978pt;}
.ye8{bottom:108.640015pt;}
.y255{bottom:113.280029pt;}
.y10f{bottom:113.599976pt;}
.y15c{bottom:114.719971pt;}
.y15f{bottom:115.039978pt;}
.y3c{bottom:115.359985pt;}
.y106{bottom:117.440002pt;}
.y1d5{bottom:118.080017pt;}
.y95{bottom:118.559998pt;}
.ye7{bottom:119.200012pt;}
.y21b{bottom:119.679993pt;}
.y73{bottom:121.440002pt;}
.y15e{bottom:122.400024pt;}
.ye6{bottom:123.679993pt;}
.ye5{bottom:126.880005pt;}
.y254{bottom:128.479980pt;}
.y10e{bottom:128.799988pt;}
.y3b{bottom:130.719971pt;}
.y15b{bottom:131.039978pt;}
.y1d4{bottom:131.200012pt;}
.y105{bottom:132.799988pt;}
.y21a{bottom:135.039978pt;}
.y72{bottom:136.799988pt;}
.ye4{bottom:140.000000pt;}
.y253{bottom:143.840027pt;}
.y10d{bottom:144.159973pt;}
.y3a{bottom:146.080017pt;}
.y1d3{bottom:147.200012pt;}
.y104{bottom:148.159973pt;}
.y94{bottom:148.799988pt;}
.y15a{bottom:149.919983pt;}
.y219{bottom:150.400024pt;}
.y93{bottom:152.000000pt;}
.y71{bottom:152.159973pt;}
.ye3{bottom:158.080017pt;}
.y252{bottom:159.200012pt;}
.y10c{bottom:159.520020pt;}
.y39{bottom:161.280029pt;}
.y159{bottom:163.039978pt;}
.y1d2{bottom:163.200012pt;}
.y103{bottom:163.520020pt;}
.y92{bottom:165.119995pt;}
.y218{bottom:165.599976pt;}
.y70{bottom:167.520020pt;}
.ye2{bottom:173.440002pt;}
.y156{bottom:174.239990pt;}
.y251{bottom:174.559998pt;}
.y10b{bottom:174.880005pt;}
.y38{bottom:176.640015pt;}
.y102{bottom:178.880005pt;}
.y158{bottom:179.039978pt;}
.y217{bottom:180.960022pt;}
.y155{bottom:181.919983pt;}
.y1d1{bottom:182.080017pt;}
.y6f{bottom:182.880005pt;}
.y91{bottom:183.359985pt;}
.ye1{bottom:185.599976pt;}
.y250{bottom:187.679993pt;}
.ye0{bottom:188.799988pt;}
.y157{bottom:189.440002pt;}
.y10a{bottom:190.239990pt;}
.y37{bottom:192.000000pt;}
.y101{bottom:194.239990pt;}
.y154{bottom:194.880005pt;}
.y216{bottom:196.320007pt;}
.y1f4{bottom:197.280029pt;}
.y6e{bottom:198.080017pt;}
.y8f{bottom:198.719971pt;}
.ydf{bottom:201.919983pt;}
.y24f{bottom:205.919983pt;}
.y109{bottom:207.200012pt;}
.y36{bottom:207.359985pt;}
.y100{bottom:209.440002pt;}
.y1f3{bottom:209.760010pt;}
.y1d0{bottom:211.200012pt;}
.y215{bottom:211.679993pt;}
.y6d{bottom:213.440002pt;}
.y153{bottom:213.760010pt;}
.y8e{bottom:214.080017pt;}
.y24e{bottom:219.039978pt;}
.yde{bottom:220.159973pt;}
.y35{bottom:222.719971pt;}
.yff{bottom:224.799988pt;}
.y214{bottom:227.039978pt;}
.y1cf{bottom:227.200012pt;}
.y6c{bottom:228.799988pt;}
.y90{bottom:229.440002pt;}
.y152{bottom:229.760010pt;}
.ydd{bottom:235.520020pt;}
.y24d{bottom:237.280029pt;}
.y34{bottom:238.080017pt;}
.y1cd{bottom:238.400024pt;}
.y186{bottom:238.880005pt;}
.yfe{bottom:240.159973pt;}
.y8d{bottom:241.599976pt;}
.y213{bottom:242.239990pt;}
.yda{bottom:243.200012pt;}
.y6b{bottom:244.159973pt;}
.y8c{bottom:244.799988pt;}
.y151{bottom:245.760010pt;}
.y1cc{bottom:246.080017pt;}
.y24c{bottom:250.400024pt;}
.ydc{bottom:250.880005pt;}
.y18b{bottom:252.000000pt;}
.y33{bottom:253.280029pt;}
.y185{bottom:254.239990pt;}
.yfd{bottom:255.200012pt;}
.y212{bottom:257.599976pt;}
.y8b{bottom:257.919983pt;}
.y1ce{bottom:259.200012pt;}
.y6a{bottom:259.520020pt;}
.y150{bottom:261.119995pt;}
.y18a{bottom:264.159973pt;}
.ydb{bottom:266.080017pt;}
.y189{bottom:267.359985pt;}
.y24b{bottom:268.479980pt;}
.y32{bottom:268.640015pt;}
.yfc{bottom:269.280029pt;}
.y184{bottom:269.599976pt;}
.y211{bottom:272.960022pt;}
.y69{bottom:274.880005pt;}
.y1cb{bottom:275.200012pt;}
.y8a{bottom:276.000000pt;}
.y14f{bottom:276.479980pt;}
.yd9{bottom:278.239990pt;}
.yd8{bottom:281.440002pt;}
.y24a{bottom:281.599976pt;}
.yfb{bottom:281.760010pt;}
.y31{bottom:284.000000pt;}
.y210{bottom:288.320007pt;}
.y68{bottom:290.080017pt;}
.y89{bottom:291.359985pt;}
.y14e{bottom:291.840027pt;}
.y1ca{bottom:294.080017pt;}
.y187{bottom:296.960022pt;}
.yd7{bottom:297.440002pt;}
.y30{bottom:299.359985pt;}
.y249{bottom:299.840027pt;}
.y87{bottom:303.520020pt;}
.y20f{bottom:303.679993pt;}
.y67{bottom:305.440002pt;}
.y86{bottom:306.719971pt;}
.y14d{bottom:307.200012pt;}
.y192{bottom:308.950932pt;}
.yd6{bottom:310.559998pt;}
.y2f{bottom:314.719971pt;}
.y248{bottom:315.200012pt;}
.y190{bottom:316.155239pt;}
.y20e{bottom:319.039978pt;}
.y84{bottom:319.840027pt;}
.y66{bottom:320.799988pt;}
.y178{bottom:322.080017pt;}
.y14c{bottom:322.559998pt;}
.y1c9{bottom:323.200012pt;}
.y16a{bottom:325.280029pt;}
.y1c7{bottom:326.400024pt;}
.yd5{bottom:328.799988pt;}
.y2e{bottom:329.919983pt;}
.y247{bottom:330.559998pt;}
.y169{bottom:331.679993pt;}
.y177{bottom:334.080017pt;}
.y20d{bottom:334.239990pt;}
.y83{bottom:334.880005pt;}
.y65{bottom:336.159973pt;}
.y82{bottom:338.080017pt;}
.y14b{bottom:338.239990pt;}
.y1c8{bottom:339.200012pt;}
.y1f2{bottom:342.080017pt;}
.yd4{bottom:344.159973pt;}
.y2d{bottom:345.280029pt;}
.y246{bottom:345.919983pt;}
.y20c{bottom:349.599976pt;}
.y80{bottom:351.200012pt;}
.y64{bottom:351.520020pt;}
.y14a{bottom:352.320007pt;}
.y1c6{bottom:355.200012pt;}
.yd2{bottom:356.320007pt;}
.y1f1{bottom:357.440002pt;}
.y245{bottom:359.039978pt;}
.yd1{bottom:359.520020pt;}
.y2c{bottom:360.640015pt;}
.y20b{bottom:364.960022pt;}
.y176{bottom:365.440002pt;}
.y7e{bottom:366.239990pt;}
.y63{bottom:366.719971pt;}
.y149{bottom:367.679993pt;}
.y7d{bottom:369.440002pt;}
.yd0{bottom:372.640015pt;}
.y1f0{bottom:372.799988pt;}
.y1c5{bottom:374.080017pt;}
.y17d{bottom:375.359985pt;}
.y2b{bottom:376.000000pt;}
.y244{bottom:377.119995pt;}
.y20a{bottom:380.320007pt;}
.y62{bottom:382.080017pt;}
.y148{bottom:382.880005pt;}
.y17c{bottom:384.320007pt;}
.y7c{bottom:385.440002pt;}
.y1c4{bottom:387.200012pt;}
.y1ef{bottom:388.159973pt;}
.ycf{bottom:390.719971pt;}
.y2a{bottom:391.359985pt;}
.y243{bottom:392.479980pt;}
.y209{bottom:395.679993pt;}
.y61{bottom:397.440002pt;}
.y147{bottom:398.239990pt;}
.ycc{bottom:398.400024pt;}
.y167{bottom:400.000000pt;}
.y17b{bottom:400.960022pt;}
.y7b{bottom:401.440002pt;}
.y1c3{bottom:403.200012pt;}
.y1ee{bottom:403.520020pt;}
.y18e{bottom:404.633743pt;}
.y166{bottom:405.599976pt;}
.yce{bottom:406.080017pt;}
.y1c1{bottom:406.400024pt;}
.y29{bottom:406.719971pt;}
.y242{bottom:407.840027pt;}
.y18c{bottom:409.115706pt;}
.y208{bottom:411.039978pt;}
.y60{bottom:412.799988pt;}
.y146{bottom:413.599976pt;}
.ycb{bottom:413.760010pt;}
.y1c0{bottom:414.080017pt;}
.y7a{bottom:416.799988pt;}
.y17a{bottom:418.400024pt;}
.y1ed{bottom:418.719971pt;}
.y1c2{bottom:419.200012pt;}
.y241{bottom:420.960022pt;}
.ycd{bottom:421.440002pt;}
.y28{bottom:421.919983pt;}
.y207{bottom:426.239990pt;}
.y5f{bottom:428.159973pt;}
.y145{bottom:428.960022pt;}
.y79{bottom:432.479980pt;}
.yca{bottom:433.599976pt;}
.y1ec{bottom:434.080017pt;}
.y170{bottom:434.880005pt;}
.y1bf{bottom:435.200012pt;}
.y172{bottom:435.840027pt;}
.yc9{bottom:436.799988pt;}
.y27{bottom:437.280029pt;}
.y175{bottom:438.559998pt;}
.y240{bottom:439.200012pt;}
.y206{bottom:441.599976pt;}
.y5e{bottom:443.520020pt;}
.y144{bottom:444.320007pt;}
.y78{bottom:446.239990pt;}
.y1eb{bottom:449.440002pt;}
.yc8{bottom:449.919983pt;}
.y26{bottom:452.640015pt;}
.y1be{bottom:454.080017pt;}
.y23f{bottom:454.559998pt;}
.y205{bottom:456.960022pt;}
.y5d{bottom:458.719971pt;}
.y143{bottom:459.679993pt;}
.y77{bottom:460.000000pt;}
.y1ea{bottom:464.799988pt;}
.y164{bottom:467.359985pt;}
.y23e{bottom:467.679993pt;}
.y25{bottom:468.000000pt;}
.yc7{bottom:468.159973pt;}
.y1bd{bottom:470.080017pt;}
.y204{bottom:472.320007pt;}
.y5c{bottom:474.080017pt;}
.y142{bottom:474.880005pt;}
.yc4{bottom:475.840027pt;}
.y181{bottom:480.000000pt;}
.y1e9{bottom:480.159973pt;}
.y163{bottom:482.080017pt;}
.y1bc{bottom:483.200012pt;}
.y24{bottom:483.359985pt;}
.yc6{bottom:483.520020pt;}
.y23d{bottom:485.919983pt;}
.y203{bottom:487.679993pt;}
.y5b{bottom:489.440002pt;}
.y141{bottom:490.239990pt;}
.yc3{bottom:491.039978pt;}
.y180{bottom:495.359985pt;}
.y1e8{bottom:495.520020pt;}
.y162{bottom:497.440002pt;}
.y108{bottom:498.400024pt;}
.y23{bottom:498.719971pt;}
.y1bb{bottom:499.200012pt;}
.y23c{bottom:501.919983pt;}
.y202{bottom:503.039978pt;}
.y5a{bottom:504.799988pt;}
.y140{bottom:505.599976pt;}
.yc2{bottom:506.400024pt;}
.y17f{bottom:510.559998pt;}
.y1e7{bottom:510.719971pt;}
.y22{bottom:513.919983pt;}
.yc5{bottom:514.080017pt;}
.y1ba{bottom:515.200012pt;}
.y23b{bottom:517.119995pt;}
.y201{bottom:518.239990pt;}
.y59{bottom:520.159973pt;}
.y13f{bottom:520.960022pt;}
.y16e{bottom:525.760010pt;}
.y1e6{bottom:526.080017pt;}
.yc1{bottom:526.239990pt;}
.y1b6{bottom:526.400024pt;}
.y21{bottom:529.280029pt;}
.yc0{bottom:529.440002pt;}
.y16d{bottom:530.559998pt;}
.y1b9{bottom:531.200012pt;}
.y23a{bottom:532.479980pt;}
.y200{bottom:533.599976pt;}
.y1b5{bottom:534.080017pt;}
.y58{bottom:535.520020pt;}
.y13e{bottom:536.320007pt;}
.y1e5{bottom:541.440002pt;}
.ybf{bottom:542.559998pt;}
.y20{bottom:544.640015pt;}
.y239{bottom:544.959991pt;}
.y1b8{bottom:547.200012pt;}
.y238{bottom:547.839996pt;}
.y1ff{bottom:548.959991pt;}
.y57{bottom:550.720001pt;}
.y13d{bottom:551.679993pt;}
.y1e4{bottom:556.799988pt;}
.y183{bottom:558.399994pt;}
.y1f{bottom:560.000000pt;}
.ybe{bottom:560.799988pt;}
.y1b7{bottom:563.200012pt;}
.y237{bottom:563.519989pt;}
.y1fe{bottom:564.320007pt;}
.y56{bottom:566.079987pt;}
.y16c{bottom:566.399994pt;}
.y13c{bottom:566.880005pt;}
.y1e3{bottom:572.160004pt;}
.y182{bottom:573.760010pt;}
.y1e{bottom:575.359985pt;}
.ybc{bottom:576.160004pt;}
.y236{bottom:577.600006pt;}
.y1b4{bottom:579.200012pt;}
.y1fd{bottom:579.679993pt;}
.y55{bottom:581.440002pt;}
.y13b{bottom:582.239990pt;}
.y1e2{bottom:587.519989pt;}
.y1d{bottom:590.720001pt;}
.ybb{bottom:591.519989pt;}
.y235{bottom:592.959991pt;}
.y1fc{bottom:594.880005pt;}
.y54{bottom:596.799988pt;}
.y13a{bottom:597.600006pt;}
.y1b3{bottom:598.079987pt;}
.y1e1{bottom:602.720001pt;}
.y1c{bottom:605.920013pt;}
.yba{bottom:606.720001pt;}
.y234{bottom:608.320007pt;}
.y1fb{bottom:610.239990pt;}
.y1b2{bottom:611.200012pt;}
.y53{bottom:612.160004pt;}
.y139{bottom:612.959991pt;}
.y1e0{bottom:618.079987pt;}
.y1b{bottom:621.279999pt;}
.ybd{bottom:622.079987pt;}
.y233{bottom:623.679993pt;}
.y1fa{bottom:625.600006pt;}
.y1b1{bottom:627.200012pt;}
.y52{bottom:627.359985pt;}
.y1df{bottom:633.440002pt;}
.yb9{bottom:634.239990pt;}
.y12a{bottom:636.474581pt;}
.y1a{bottom:636.640015pt;}
.yb8{bottom:637.440002pt;}
.y12e{bottom:637.595081pt;}
.y131{bottom:637.918689pt;}
.y232{bottom:639.040009pt;}
.y1f9{bottom:640.959991pt;}
.y51{bottom:642.720001pt;}
.y128{bottom:643.035741pt;}
.y1b0{bottom:643.200012pt;}
.y126{bottom:643.678928pt;}
.y12c{bottom:644.156242pt;}
.y12f{bottom:644.475781pt;}
.y134{bottom:645.915860pt;}
.y1ad{bottom:646.399994pt;}
.y1de{bottom:648.799988pt;}
.y124{bottom:650.397823pt;}
.y19{bottom:652.000000pt;}
.y132{bottom:652.635585pt;}
.yb7{bottom:653.440002pt;}
.y1ac{bottom:654.079987pt;}
.y231{bottom:654.239990pt;}
.y1f8{bottom:656.320007pt;}
.y50{bottom:658.079987pt;}
.y1af{bottom:659.200012pt;}
.y136{bottom:662.233770pt;}
.y1dd{bottom:664.160004pt;}
.yb6{bottom:666.559998pt;}
.y18{bottom:667.359985pt;}
.y1f7{bottom:671.359985pt;}
.y4f{bottom:673.440002pt;}
.y1ae{bottom:675.200012pt;}
.y1dc{bottom:679.359985pt;}
.y17{bottom:682.559998pt;}
.yb5{bottom:684.799988pt;}
.y1f6{bottom:685.119995pt;}
.y230{bottom:685.600006pt;}
.y4e{bottom:688.799988pt;}
.y1ab{bottom:691.200012pt;}
.y1db{bottom:694.720001pt;}
.y1f5{bottom:696.320007pt;}
.y16{bottom:697.920013pt;}
.yb4{bottom:700.160004pt;}
.y22d{bottom:700.959991pt;}
.y122{bottom:702.399994pt;}
.y4d{bottom:704.160004pt;}
.y123{bottom:705.279999pt;}
.y1aa{bottom:710.079987pt;}
.yb2{bottom:712.160004pt;}
.y15{bottom:713.279999pt;}
.yb1{bottom:715.359985pt;}
.y22f{bottom:716.320007pt;}
.yfa{bottom:717.440002pt;}
.y4c{bottom:719.359985pt;}
.y121{bottom:721.279999pt;}
.y1a9{bottom:723.200012pt;}
.yaf{bottom:728.480011pt;}
.y22e{bottom:731.679993pt;}
.yf9{bottom:732.799988pt;}
.y14{bottom:733.279999pt;}
.y4b{bottom:734.720001pt;}
.y120{bottom:736.959991pt;}
.y1a8{bottom:739.200012pt;}
.y1a4{bottom:742.720001pt;}
.y22c{bottom:744.799988pt;}
.yae{bottom:746.720001pt;}
.y1a5{bottom:747.519989pt;}
.yf8{bottom:748.160004pt;}
.y13{bottom:748.640015pt;}
.y4a{bottom:750.079987pt;}
.y1a1{bottom:750.399994pt;}
.y11f{bottom:751.040009pt;}
.y1a7{bottom:755.200012pt;}
.y1a3{bottom:758.079987pt;}
.yac{bottom:758.880005pt;}
.y12{bottom:759.359985pt;}
.y22b{bottom:760.799988pt;}
.yab{bottom:762.079987pt;}
.yf7{bottom:763.359985pt;}
.y22a{bottom:763.679993pt;}
.y49{bottom:765.440002pt;}
.y1a0{bottom:765.760010pt;}
.y11e{bottom:766.399994pt;}
.y1a6{bottom:771.200012pt;}
.y1a2{bottom:773.440002pt;}
.y1d9{bottom:774.079987pt;}
.y11{bottom:774.559998pt;}
.ya9{bottom:775.200012pt;}
.y229{bottom:776.799988pt;}
.yf6{bottom:778.720001pt;}
.y228{bottom:779.679993pt;}
.y48{bottom:780.799988pt;}
.y11d{bottom:781.600006pt;}
.y19f{bottom:787.200012pt;}
.y10{bottom:789.920013pt;}
.y227{bottom:792.799988pt;}
.ya8{bottom:793.440002pt;}
.yf5{bottom:794.079987pt;}
.y226{bottom:795.679993pt;}
.y47{bottom:796.160004pt;}
.y11c{bottom:796.959991pt;}
.ya4{bottom:801.119995pt;}
.y1da{bottom:803.199997pt;}
.y19e{bottom:806.080002pt;}
.yf4{bottom:807.199997pt;}
.ya7{bottom:808.800003pt;}
.y119{bottom:809.440002pt;}
.yf{bottom:809.919998pt;}
.y46{bottom:811.360001pt;}
.y11b{bottom:813.119995pt;}
.y118{bottom:816.160004pt;}
.ya3{bottom:816.479996pt;}
.y1d8{bottom:819.199997pt;}
.y224{bottom:819.360001pt;}
.ye{bottom:820.639999pt;}
.y11a{bottom:821.440002pt;}
.y19d{bottom:822.080002pt;}
.ya6{bottom:824.160004pt;}
.yf3{bottom:825.440002pt;}
.y45{bottom:826.720001pt;}
.ya2{bottom:831.679993pt;}
.y117{bottom:834.880005pt;}
.y19c{bottom:835.199997pt;}
.yd{bottom:837.759995pt;}
.y1d7{bottom:838.080002pt;}
.ya5{bottom:839.360001pt;}
.y223{bottom:840.000000pt;}
.yf2{bottom:840.800003pt;}
.y44{bottom:842.080002pt;}
.y116{bottom:850.240005pt;}
.y19b{bottom:851.199997pt;}
.ya1{bottom:851.520004pt;}
.yf1{bottom:852.960007pt;}
.ya0{bottom:854.720001pt;}
.yf0{bottom:856.160004pt;}
.y43{bottom:857.440002pt;}
.y222{bottom:858.240005pt;}
.yc{bottom:862.240005pt;}
.y113{bottom:862.720001pt;}
.y21f{bottom:865.919998pt;}
.y115{bottom:866.399994pt;}
.y19a{bottom:867.199997pt;}
.y9f{bottom:867.839996pt;}
.yef{bottom:869.279999pt;}
.y112{bottom:869.440002pt;}
.y195{bottom:870.399994pt;}
.y42{bottom:872.800003pt;}
.y221{bottom:873.600006pt;}
.y114{bottom:874.720001pt;}
.y197{bottom:878.080002pt;}
.y9d{bottom:882.880005pt;}
.y199{bottom:883.199997pt;}
.y194{bottom:885.759995pt;}
.y9c{bottom:886.080002pt;}
.yb{bottom:886.880005pt;}
.yee{bottom:887.360001pt;}
.y41{bottom:888.160004pt;}
.y220{bottom:888.960007pt;}
.y196{bottom:893.440002pt;}
.y198{bottom:899.199997pt;}
.y9b{bottom:902.080002pt;}
.yed{bottom:902.720001pt;}
.y40{bottom:903.360001pt;}
.y21e{bottom:904.639999pt;}
.ya{bottom:911.360001pt;}
.y9a{bottom:915.199997pt;}
.yec{bottom:918.080002pt;}
.y3f{bottom:918.720001pt;}
.y6{bottom:948.639999pt;}
.y5{bottom:959.519997pt;}
.y4{bottom:970.080002pt;}
.y3{bottom:982.559998pt;}
.y2{bottom:995.520750pt;}
.y1{bottom:996.320000pt;}
.h35{height:1.440002pt;}
.h32{height:2.080017pt;}
.h31{height:2.239990pt;}
.h34{height:2.399964pt;}
.h3b{height:3.359986pt;}
.h40{height:4.643767pt;}
.h39{height:4.799988pt;}
.h3f{height:6.876670pt;}
.h25{height:6.880699pt;}
.h27{height:6.880739pt;}
.h2b{height:6.881529pt;}
.h42{height:7.358053pt;}
.h38{height:8.479981pt;}
.h30{height:11.520020pt;}
.h3d{height:12.000000pt;}
.h3e{height:12.479980pt;}
.h1a{height:14.719970pt;}
.h10{height:14.719971pt;}
.h43{height:14.719986pt;}
.h14{height:14.720001pt;}
.h16{height:14.720002pt;}
.h49{height:14.720016pt;}
.h13{height:14.720031pt;}
.h12{height:14.720032pt;}
.h44{height:14.880005pt;}
.h11{height:15.039978pt;}
.h15{height:15.039993pt;}
.h17{height:15.039994pt;}
.h18{height:15.040008pt;}
.h19{height:15.040009pt;}
.hf{height:15.040039pt;}
.h36{height:16.320007pt;}
.h2d{height:17.919793pt;}
.h2c{height:20.639728pt;}
.h2a{height:22.400136pt;}
.ha{height:24.338203pt;}
.h23{height:26.877280pt;}
.hd{height:30.923834pt;}
.h1f{height:31.224486pt;}
.h5{height:31.767850pt;}
.h3a{height:35.337504pt;}
.h1c{height:37.123795pt;}
.h9{height:37.408566pt;}
.h2{height:37.479369pt;}
.h7{height:38.368455pt;}
.h29{height:38.397717pt;}
.h3c{height:38.599427pt;}
.h28{height:39.202668pt;}
.h4{height:39.447842pt;}
.he{height:39.487661pt;}
.h3{height:40.691863pt;}
.h26{height:41.442840pt;}
.hb{height:42.898143pt;}
.hc{height:42.898259pt;}
.h6{height:42.949849pt;}
.h1d{height:43.699419pt;}
.h37{height:44.683173pt;}
.h33{height:45.070735pt;}
.h1{height:47.530884pt;}
.h24{height:47.620845pt;}
.h20{height:59.690916pt;}
.h22{height:59.690920pt;}
.h21{height:62.584470pt;}
.h1e{height:62.584474pt;}
.h2e{height:67.488642pt;}
.h46{height:68.128538pt;}
.h47{height:68.128598pt;}
.h45{height:68.128658pt;}
.h2f{height:68.128778pt;}
.h8{height:76.164237pt;}
.h48{height:77.610900pt;}
.h1b{height:78.250856pt;}
.h41{height:88.636239pt;}
.h0{height:1056.000000pt;}
.w47{width:0.640015pt;}
.w37{width:2.720002pt;}
.w32{width:2.879974pt;}
.w30{width:2.880005pt;}
.w39{width:3.199982pt;}
.w34{width:3.200012pt;}
.w3f{width:3.359985pt;}
.w2e{width:3.679993pt;}
.w3a{width:4.639984pt;}
.w35{width:4.640015pt;}
.w36{width:4.959991pt;}
.w1{width:4.959992pt;}
.w3d{width:6.079986pt;}
.w3c{width:6.079987pt;}
.w2c{width:6.080002pt;}
.w41{width:6.080017pt;}
.w4b{width:6.559997pt;}
.w50{width:6.559998pt;}
.w14{width:6.719970pt;}
.w10{width:6.719971pt;}
.w46{width:6.719986pt;}
.w3{width:6.720001pt;}
.w6{width:6.720002pt;}
.w19{width:6.720031pt;}
.w28{width:6.720032pt;}
.w33{width:7.040008pt;}
.w2b{width:7.199997pt;}
.w38{width:8.319977pt;}
.w31{width:11.200012pt;}
.w26{width:12.474163pt;}
.w27{width:12.474242pt;}
.w24{width:12.478240pt;}
.w22{width:12.482316pt;}
.w25{width:12.636311pt;}
.w21{width:12.640387pt;}
.w23{width:12.644424pt;}
.w44{width:12.800051pt;}
.w20{width:13.114561pt;}
.w45{width:13.280014pt;}
.w29{width:13.280029pt;}
.w54{width:16.479981pt;}
.w58{width:16.480011pt;}
.w2f{width:16.960006pt;}
.w3e{width:17.920014pt;}
.w4{width:19.199982pt;}
.w11{width:19.200012pt;}
.wa{width:20.000000pt;}
.w16{width:20.799988pt;}
.wd{width:22.239990pt;}
.w2{width:22.240006pt;}
.w9{width:23.039978pt;}
.w51{width:26.720001pt;}
.w2d{width:28.160003pt;}
.w2a{width:28.160004pt;}
.w56{width:28.960022pt;}
.w3b{width:29.600006pt;}
.wb{width:32.160004pt;}
.w59{width:32.640015pt;}
.w17{width:34.239990pt;}
.w1b{width:35.200012pt;}
.w4d{width:37.119995pt;}
.w5e{width:37.759995pt;}
.w48{width:37.760010pt;}
.w15{width:38.559998pt;}
.w55{width:40.160003pt;}
.w42{width:40.800003pt;}
.w57{width:41.440002pt;}
.we{width:42.239990pt;}
.w1d{width:45.919983pt;}
.w53{width:46.880005pt;}
.w4f{width:50.079986pt;}
.w4a{width:50.080002pt;}
.w60{width:51.839996pt;}
.w5c{width:52.319977pt;}
.w12{width:52.960022pt;}
.w4e{width:53.280029pt;}
.w43{width:54.720002pt;}
.w5d{width:55.519989pt;}
.w4c{width:56.639984pt;}
.w5b{width:71.039993pt;}
.w8{width:71.520020pt;}
.w61{width:71.839996pt;}
.w1a{width:75.840027pt;}
.wf{width:78.880005pt;}
.w40{width:80.000000pt;}
.w5a{width:80.799988pt;}
.w5f{width:80.800003pt;}
.w52{width:82.880005pt;}
.w7{width:94.720001pt;}
.w5{width:107.839996pt;}
.wc{width:120.320007pt;}
.w18{width:122.559998pt;}
.w49{width:124.639954pt;}
.w1c{width:132.160034pt;}
.w1f{width:134.399994pt;}
.w13{width:134.400025pt;}
.w1e{width:150.720032pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:0.956461pt;}
.x7f{left:110.557656pt;}
.x5{left:119.839996pt;}
.x9{left:120.959999pt;}
.x17{left:126.720001pt;}
.x36{left:127.680000pt;}
.x66{left:129.600006pt;}
.x80{left:131.039993pt;}
.x8{left:135.679993pt;}
.x78{left:136.800003pt;}
.x38{left:138.080002pt;}
.x18{left:139.199997pt;}
.x9e{left:144.000000pt;}
.xc{left:146.880005pt;}
.xd{left:148.000000pt;}
.xa9{left:150.080002pt;}
.x15{left:151.199997pt;}
.x61{left:153.600006pt;}
.x65{left:157.279999pt;}
.x7{left:158.399994pt;}
.x77{left:167.679993pt;}
.xe{left:169.440002pt;}
.x63{left:171.839996pt;}
.x79{left:172.800003pt;}
.x82{left:176.000000pt;}
.x81{left:179.360001pt;}
.x92{left:189.600006pt;}
.x93{left:196.320007pt;}
.x62{left:198.080002pt;}
.x64{left:200.000000pt;}
.x7a{left:200.960007pt;}
.x7b{left:203.679993pt;}
.x19{left:205.119995pt;}
.x67{left:207.679993pt;}
.x89{left:215.039993pt;}
.x14{left:217.440002pt;}
.x1{left:219.199997pt;}
.x8e{left:221.279999pt;}
.x37{left:223.520004pt;}
.x83{left:225.119995pt;}
.x8b{left:226.399994pt;}
.x1a{left:227.360001pt;}
.x8a{left:228.320007pt;}
.x9a{left:229.440002pt;}
.x94{left:232.800003pt;}
.x8d{left:237.119995pt;}
.x7c{left:244.479996pt;}
.x85{left:248.960007pt;}
.x13{left:252.000000pt;}
.x68{left:258.720001pt;}
.x69{left:263.519989pt;}
.x84{left:267.359985pt;}
.x1d{left:276.480011pt;}
.x74{left:279.040009pt;}
.x6a{left:281.279999pt;}
.x73{left:282.880005pt;}
.x7d{left:284.320007pt;}
.x10{left:285.600006pt;}
.x6b{left:287.679993pt;}
.xf{left:289.760010pt;}
.x6c{left:291.839996pt;}
.x9b{left:292.799988pt;}
.x6d{left:296.640015pt;}
.x1c{left:299.839996pt;}
.x6e{left:300.799988pt;}
.x75{left:303.040009pt;}
.x6f{left:304.959991pt;}
.x76{left:306.399994pt;}
.x70{left:309.920013pt;}
.xa{left:312.799988pt;}
.x71{left:316.480011pt;}
.x9f{left:319.519989pt;}
.x72{left:320.640015pt;}
.x9c{left:321.760010pt;}
.x95{left:322.720001pt;}
.x1e{left:325.440002pt;}
.x7e{left:336.320007pt;}
.x31{left:339.519989pt;}
.x2{left:340.959991pt;}
.x87{left:346.880005pt;}
.x3{left:355.040009pt;}
.x88{left:358.559998pt;}
.xa0{left:360.959991pt;}
.x86{left:365.279999pt;}
.x16{left:367.200012pt;}
.x11{left:371.679993pt;}
.x1b{left:386.399994pt;}
.x32{left:388.000000pt;}
.x8c{left:390.239990pt;}
.x6{left:394.559998pt;}
.xb{left:408.000000pt;}
.x33{left:409.920013pt;}
.x3e{left:425.120117pt;}
.x12{left:432.000000pt;}
.x4a{left:433.440002pt;}
.x3c{left:434.399994pt;}
.x21{left:438.720001pt;}
.x35{left:440.640015pt;}
.x59{left:443.040009pt;}
.x40{left:444.317765pt;}
.x96{left:447.679993pt;}
.x5a{left:449.760010pt;}
.x1f{left:451.200012pt;}
.x28{left:457.920013pt;}
.x41{left:462.396843pt;}
.xa7{left:465.279999pt;}
.x3d{left:467.679993pt;}
.x9d{left:471.359985pt;}
.x20{left:473.440002pt;}
.x4b{left:476.000000pt;}
.xa1{left:477.760010pt;}
.x42{left:480.313854pt;}
.xa8{left:481.600006pt;}
.x4c{left:482.880005pt;}
.x98{left:485.119995pt;}
.x34{left:487.200012pt;}
.x2a{left:489.760010pt;}
.x22{left:493.440002pt;}
.x3b{left:498.559998pt;}
.x99{left:511.839996pt;}
.x23{left:517.119995pt;}
.xa2{left:519.200012pt;}
.x4f{left:522.239990pt;}
.x4d{left:525.599976pt;}
.x5e{left:527.039978pt;}
.x4e{left:528.159973pt;}
.x5b{left:530.400024pt;}
.x43{left:534.393059pt;}
.x5c{left:537.119995pt;}
.x5f{left:540.320007pt;}
.xa5{left:544.479980pt;}
.x58{left:548.479980pt;}
.x2c{left:551.200012pt;}
.x2f{left:552.320007pt;}
.x50{left:561.119995pt;}
.x51{left:563.359985pt;}
.x39{left:566.239990pt;}
.x3a{left:568.479980pt;}
.x27{left:570.080017pt;}
.xa3{left:573.760010pt;}
.x90{left:578.880005pt;}
.x44{left:588.314232pt;}
.x2e{left:592.960022pt;}
.x97{left:594.400024pt;}
.x24{left:596.000000pt;}
.x45{left:606.393351pt;}
.xa6{left:613.919983pt;}
.x52{left:615.200012pt;}
.x54{left:619.359985pt;}
.x53{left:620.799988pt;}
.xa4{left:621.760010pt;}
.x46{left:624.318435pt;}
.x2d{left:639.679993pt;}
.x47{left:642.393477pt;}
.x30{left:649.280029pt;}
.x29{left:651.520020pt;}
.x55{left:659.039978pt;}
.x48{left:660.310448pt;}
.x91{left:665.599976pt;}
.x57{left:668.320007pt;}
.x56{left:669.440002pt;}
.x5d{left:670.559998pt;}
.x60{left:673.919983pt;}
.x25{left:679.200012pt;}
.x4{left:696.000000pt;}
.x26{left:698.400024pt;}
.x2b{left:700.000000pt;}
.x49{left:714.397766pt;}
.x8f{left:721.919983pt;}
}




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