
    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_96ce1fe2eab422c7e41aef42.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_aae538ce30d7941f2550bb8c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.222000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bd11ce6957509d15b4fa3a58.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ec5d0edcfafe3259d62de401.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d4c93188aded236570a91d61.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1ac663650de5b542e1a48926.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c4f046729368ba7575e2b8a1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d17e1b15c043e602062a25b4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_95070405fb4c26751a3fccd5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-107.279847px;}
.va{vertical-align:-84.240144px;}
.vb{vertical-align:-81.360077px;}
.v1{vertical-align:-78.480009px;}
.v4{vertical-align:-58.319825px;}
.v9{vertical-align:-44.639919px;}
.v3{vertical-align:-23.759996px;}
.v5{vertical-align:-15.979975px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.759996px;}
.v7{vertical-align:35.279982px;}
.v8{vertical-align:44.639919px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.124946px;}
.lsa{letter-spacing:0.899572px;}
.lsb{letter-spacing:5.219532px;}
.lsc{letter-spacing:5.219671px;}
.ls4{letter-spacing:5.385804px;}
.ls6{letter-spacing:5.385805px;}
.ls5{letter-spacing:5.385853px;}
.ls3{letter-spacing:5.385854px;}
.ls8{letter-spacing:451.032694px;}
.ls9{letter-spacing:535.992680px;}
.ls2{letter-spacing:849.041377px;}
.ls1{letter-spacing:1132.253530px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(219,65,67),0 0.015em rgb(219,65,67),0.015em 0 rgb(219,65,67),0 -0.015em  rgb(219,65,67);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(219,65,67);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-180.007191px;}
.wsa{word-spacing:-19.120340px;}
.ws1{word-spacing:-15.875132px;}
.ws0{word-spacing:-15.500719px;}
.ws4{word-spacing:-14.507151px;}
.ws5{word-spacing:-12.370786px;}
.wsb{word-spacing:-11.336823px;}
.wsc{word-spacing:-10.564954px;}
.ws6{word-spacing:-9.934234px;}
.ws7{word-spacing:-9.000349px;}
.ws8{word-spacing:-8.644655px;}
.ws3{word-spacing:-8.515045px;}
.ws9{word-spacing:0.000000px;}
._f{margin-left:-12.446384px;}
._11{margin-left:-7.477479px;}
._36{margin-left:-5.891314px;}
._e{margin-left:-4.306194px;}
._7{margin-left:-2.314721px;}
._0{margin-left:-1.109561px;}
._1{width:1.123241px;}
._8{width:2.681381px;}
._5{width:3.925397px;}
._6{width:5.577832px;}
._b{width:7.121693px;}
._2{width:9.098289px;}
._3{width:10.731315px;}
._a{width:12.119847px;}
._10{width:13.351823px;}
._c{width:14.376056px;}
._d{width:15.533860px;}
._15{width:16.661494px;}
._34{width:17.761666px;}
._2a{width:18.828025px;}
._26{width:20.276745px;}
._14{width:21.757818px;}
._13{width:22.809782px;}
._27{width:27.019069px;}
._35{width:28.270478px;}
._3e{width:36.229592px;}
._3f{width:37.525248px;}
._29{width:47.952349px;}
._32{width:49.689054px;}
._2d{width:55.526312px;}
._43{width:58.034885px;}
._40{width:59.337414px;}
._1f{width:60.350492px;}
._41{width:62.597943px;}
._3b{width:64.354561px;}
._3a{width:68.259125px;}
._37{width:69.275225px;}
._38{width:70.867204px;}
._39{width:73.928816px;}
._2f{width:75.822430px;}
._44{width:79.301099px;}
._20{width:80.419081px;}
._21{width:83.699523px;}
._42{width:87.745857px;}
._33{width:93.637334px;}
._25{width:95.490510px;}
._2c{width:102.610309px;}
._19{width:106.035476px;}
._28{width:107.289763px;}
._30{width:111.183670px;}
._22{width:117.275816px;}
._24{width:120.976394px;}
._1e{width:122.341205px;}
._2b{width:124.656811px;}
._3c{width:134.835831px;}
._9{width:136.080384px;}
._3d{width:143.307816px;}
._18{width:149.184529px;}
._1d{width:175.060626px;}
._23{width:183.656533px;}
._1c{width:185.814083px;}
._1a{width:186.971538px;}
._1b{width:190.217417px;}
._16{width:195.138081px;}
._12{width:202.519076px;}
._17{width:245.399200px;}
._31{width:311.428167px;}
._2e{width:317.404416px;}
._4{width:1196.879058px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(219,65,67);}
.fc2{color:rgb(1,3,2);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:23.760900px;}
.fse{font-size:25.112222px;}
.fs14{font-size:30.241170px;}
.fs10{font-size:36.001395px;}
.fs8{font-size:38.881485px;}
.fs5{font-size:41.759538px;}
.fsc{font-size:41.761620px;}
.fsf{font-size:44.136672px;}
.fsb{font-size:45.361800px;}
.fs0{font-size:48.241800px;}
.fs11{font-size:50.985391px;}
.fsa{font-size:54.002250px;}
.fs9{font-size:56.882250px;}
.fs2{font-size:59.762250px;}
.fs13{font-size:60.117237px;}
.fs15{font-size:63.362250px;}
.fs7{font-size:66.242700px;}
.fs1{font-size:74.882700px;}
.fs3{font-size:77.763154px;}
.fs12{font-size:81.363150px;}
.fs6{font-size:95.763600px;}
.fs4{font-size:180.007191px;}
.y10f{bottom:-2.700027px;}
.y119{bottom:-0.899987px;}
.y120{bottom:-0.899985px;}
.y116{bottom:-0.720017px;}
.y112{bottom:-0.720016px;}
.y124{bottom:-0.719948px;}
.y0{bottom:0.000000px;}
.y166{bottom:1.620002px;}
.y18b{bottom:1.620003px;}
.y7a{bottom:1.980011px;}
.yd4{bottom:2.519989px;}
.yd2{bottom:2.520057px;}
.y11a{bottom:2.879997px;}
.y46{bottom:2.879998px;}
.y117{bottom:3.059967px;}
.y125{bottom:3.060035px;}
.y113{bottom:3.060036px;}
.yd8{bottom:3.239937px;}
.ye7{bottom:3.240004px;}
.ydc{bottom:3.240006px;}
.y169{bottom:3.419975px;}
.y18e{bottom:3.420009px;}
.y193{bottom:3.420010px;}
.y174{bottom:3.420044px;}
.y178{bottom:3.420045px;}
.y135{bottom:3.780018px;}
.yb{bottom:4.679995px;}
.y8{bottom:4.680000px;}
.y138{bottom:5.399987px;}
.y13c{bottom:5.579990px;}
.y141{bottom:5.579991px;}
.y13e{bottom:5.580025px;}
.y11d{bottom:6.479943px;}
.y144{bottom:6.480010px;}
.yf3{bottom:6.480011px;}
.y19{bottom:14.760132px;}
.y18{bottom:28.620072px;}
.y17{bottom:43.020127px;}
.y16{bottom:43.033969px;}
.y15{bottom:55.096090px;}
.y14{bottom:67.151989px;}
.y13{bottom:79.210999px;}
.yf{bottom:83.340088px;}
.y12{bottom:91.273120px;}
.y11{bottom:103.335366px;}
.y230{bottom:104.940033px;}
.y269{bottom:106.920043px;}
.yac{bottom:109.440033px;}
.yf0{bottom:110.880066px;}
.y1f0{bottom:112.140060px;}
.y10{bottom:115.572842px;}
.y131{bottom:118.980079px;}
.y22f{bottom:119.160049px;}
.y268{bottom:121.140060px;}
.yee{bottom:122.580093px;}
.y1c4{bottom:124.740074px;}
.yef{bottom:125.460091px;}
.ye{bottom:127.800041px;}
.yab{bottom:130.500068px;}
.y1ef{bottom:133.200096px;}
.y267{bottom:135.360077px;}
.yed{bottom:140.040047px;}
.y130{bottom:140.220085px;}
.y22e{bottom:140.940033px;}
.y189{bottom:143.460091px;}
.y1c3{bottom:145.980079px;}
.yaa{bottom:151.560036px;}
.y1ee{bottom:154.440033px;}
.yec{bottom:154.620072px;}
.y22d{bottom:155.160049px;}
.y266{bottom:156.960091px;}
.yea{bottom:159.120072px;}
.y12f{bottom:161.280052px;}
.y188{bottom:163.440033px;}
.y1c2{bottom:167.040047px;}
.yeb{bottom:169.020058px;}
.y22c{bottom:169.380066px;}
.y265{bottom:171.180039px;}
.ya9{bottom:172.800041px;}
.y1ed{bottom:175.500068px;}
.y186{bottom:179.640060px;}
.ye9{bottom:183.600083px;}
.y264{bottom:185.400055px;}
.y187{bottom:186.840088px;}
.y12e{bottom:187.200096px;}
.y1c1{bottom:188.280052px;}
.ya8{bottom:193.860077px;}
.y1ec{bottom:196.560036px;}
.ye8{bottom:198.180039px;}
.y184{bottom:198.900055px;}
.y12d{bottom:203.400055px;}
.y22b{bottom:205.380066px;}
.y185{bottom:206.100083px;}
.y263{bottom:207.180039px;}
.y1c0{bottom:209.340088px;}
.ye4{bottom:209.880066px;}
.ye6{bottom:212.760064px;}
.y181{bottom:213.480079px;}
.y79{bottom:214.920043px;}
.ya7{bottom:215.100083px;}
.y1eb{bottom:217.800041px;}
.y182{bottom:218.160049px;}
.y12c{bottom:218.520058px;}
.y22a{bottom:219.600083px;}
.y262{bottom:221.400055px;}
.y12a{bottom:222.300041px;}
.y17e{bottom:223.020058px;}
.y183{bottom:225.360077px;}
.ye5{bottom:227.340088px;}
.y129{bottom:228.780052px;}
.y1bf{bottom:230.400055px;}
.y12b{bottom:233.460091px;}
.y229{bottom:233.820099px;}
.y261{bottom:235.620072px;}
.ya6{bottom:236.160049px;}
.y127{bottom:236.340088px;}
.y17f{bottom:237.420043px;}
.y78{bottom:238.680039px;}
.y1ea{bottom:238.860077px;}
.ye3{bottom:241.920043px;}
.y180{bottom:244.620072px;}
.y128{bottom:248.400055px;}
.y1be{bottom:251.640060px;}
.ye2{bottom:256.320099px;}
.y17c{bottom:257.400055px;}
.y1e9{bottom:260.100083px;}
.y77{bottom:260.820099px;}
.y126{bottom:264.240074px;}
.y17d{bottom:264.600083px;}
.ydf{bottom:268.200096px;}
.ye1{bottom:270.900055px;}
.y1bd{bottom:271.620072px;}
.y228{bottom:273.600083px;}
.ya5{bottom:275.220085px;}
.y17a{bottom:276.660049px;}
.y123{bottom:279.180039px;}
.y11e{bottom:280.620072px;}
.y1e8{bottom:281.160049px;}
.y172{bottom:282.420043px;}
.y76{bottom:283.140060px;}
.y17b{bottom:283.860077px;}
.ye0{bottom:285.480079px;}
.y260{bottom:285.840088px;}
.y1bc{bottom:287.820099px;}
.y121{bottom:289.620072px;}
.y176{bottom:291.240074px;}
.y11c{bottom:291.960091px;}
.y171{bottom:293.760064px;}
.y122{bottom:294.300041px;}
.y177{bottom:295.920043px;}
.y1bb{bottom:298.980079px;}
.yde{bottom:300.060036px;}
.y1e7{bottom:302.400055px;}
.y179{bottom:303.120072px;}
.y1b9{bottom:305.460091px;}
.y75{bottom:305.820099px;}
.y25f{bottom:307.440033px;}
.y11f{bottom:309.240074px;}
.y1ba{bottom:310.140060px;}
.y227{bottom:313.920043px;}
.ydd{bottom:314.640060px;}
.y173{bottom:315.180039px;}
.ya4{bottom:317.340088px;}
.y1f6{bottom:320.400055px;}
.y25e{bottom:321.660049px;}
.y175{bottom:322.380066px;}
.y1e6{bottom:323.460091px;}
.y11b{bottom:324.900055px;}
.yd9{bottom:326.340088px;}
.y226{bottom:328.140060px;}
.y74{bottom:328.500068px;}
.ydb{bottom:329.220085px;}
.y1b8{bottom:333.180039px;}
.y16f{bottom:335.340088px;}
.ya3{bottom:338.400055px;}
.y1b7{bottom:339.660049px;}
.y118{bottom:340.020058px;}
.y170{bottom:342.540047px;}
.y25d{bottom:343.440033px;}
.yda{bottom:343.620072px;}
.y114{bottom:343.800041px;}
.y1b5{bottom:344.340088px;}
.y1e5{bottom:344.520058px;}
.y27b{bottom:344.700096px;}
.y110{bottom:350.280052px;}
.y73{bottom:350.460091px;}
.y1b4{bottom:350.820099px;}
.y16d{bottom:354.600083px;}
.y115{bottom:354.960091px;}
.y1b6{bottom:355.500068px;}
.y25c{bottom:357.660049px;}
.yd7{bottom:358.200096px;}
.ya2{bottom:359.640060px;}
.y16e{bottom:361.800041px;}
.y1f5{bottom:362.340088px;}
.y1e4{bottom:365.760064px;}
.y167{bottom:369.180039px;}
.y72{bottom:369.720085px;}
.y111{bottom:369.900055px;}
.yd5{bottom:370.080093px;}
.y27a{bottom:371.340088px;}
.yd6{bottom:372.780052px;}
.y16b{bottom:373.860077px;}
.y1b3{bottom:378.540047px;}
.y25b{bottom:379.440033px;}
.y225{bottom:379.620072px;}
.y44{bottom:380.160049px;}
.ya1{bottom:380.700096px;}
.y16c{bottom:381.060036px;}
.y1f4{bottom:383.400055px;}
.y10e{bottom:385.740074px;}
.y1e3{bottom:386.820099px;}
.yd3{bottom:387.360077px;}
.y71{bottom:389.160049px;}
.y1b2{bottom:389.520058px;}
.y168{bottom:393.120072px;}
.y25a{bottom:393.660049px;}
.y279{bottom:394.380066px;}
.y1af{bottom:396.000068px;}
.y43{bottom:396.180039px;}
.y16a{bottom:400.320099px;}
.y1b0{bottom:400.680039px;}
.ya0{bottom:401.760064px;}
.yd1{bottom:401.940033px;}
.y1f3{bottom:404.640060px;}
.y10d{bottom:405.720085px;}
.y70{bottom:406.620072px;}
.y1b1{bottom:407.160049px;}
.y259{bottom:407.880066px;}
.y1e2{bottom:408.060036px;}
.y42{bottom:412.200096px;}
.y165{bottom:413.100083px;}
.y224{bottom:414.720085px;}
.y278{bottom:415.260064px;}
.y258{bottom:422.100083px;}
.y9f{bottom:423.000068px;}
.yd0{bottom:423.720085px;}
.y10c{bottom:425.700096px;}
.y41{bottom:427.860077px;}
.y1e1{bottom:429.120072px;}
.y277{bottom:429.480079px;}
.y1ae{bottom:430.200096px;}
.y223{bottom:433.080093px;}
.y164{bottom:437.400055px;}
.y6f{bottom:439.560036px;}
.y257{bottom:443.700096px;}
.y9e{bottom:444.060036px;}
.y1f2{bottom:446.940033px;}
.y1e0{bottom:450.180039px;}
.y1ad{bottom:452.880066px;}
.y40{bottom:456.660049px;}
.y163{bottom:457.380066px;}
.y256{bottom:457.920043px;}
.y6e{bottom:460.080093px;}
.y10b{bottom:461.160049px;}
.y9d{bottom:465.300041px;}
.y276{bottom:465.480079px;}
.y1f1{bottom:468.000068px;}
.y1df{bottom:471.420043px;}
.y255{bottom:472.140060px;}
.y6d{bottom:472.680039px;}
.y3f{bottom:473.040047px;}
.y222{bottom:478.620072px;}
.y275{bottom:479.700096px;}
.y10a{bottom:482.220085px;}
.y6c{bottom:485.100083px;}
.y9c{bottom:486.360077px;}
.ycf{bottom:489.060036px;}
.y3e{bottom:491.400055px;}
.y221{bottom:491.940033px;}
.y1de{bottom:492.480079px;}
.y162{bottom:492.840088px;}
.y1ac{bottom:493.380066px;}
.y254{bottom:493.920043px;}
.y6b{bottom:501.300041px;}
.y109{bottom:503.460091px;}
.y9b{bottom:507.420043px;}
.y253{bottom:508.140060px;}
.y3d{bottom:509.040047px;}
.y6a{bottom:509.940033px;}
.yce{bottom:510.300041px;}
.y1dd{bottom:513.720085px;}
.y161{bottom:513.900055px;}
.y1ab{bottom:514.440033px;}
.y274{bottom:515.700096px;}
.y69{bottom:522.360077px;}
.y3c{bottom:523.260064px;}
.y108{bottom:524.520058px;}
.y220{bottom:527.580093px;}
.y9a{bottom:528.660049px;}
.y252{bottom:529.920043px;}
.ycd{bottom:531.360077px;}
.y68{bottom:534.780052px;}
.y160{bottom:535.140060px;}
.y1aa{bottom:535.680039px;}
.y3b{bottom:537.480079px;}
.y21f{bottom:540.900055px;}
.y251{bottom:544.140060px;}
.y107{bottom:545.760064px;}
.y67{bottom:547.200096px;}
.y99{bottom:549.720085px;}
.y3a{bottom:551.700096px;}
.ycc{bottom:552.600083px;}
.y21e{bottom:554.220085px;}
.y1dc{bottom:555.840088px;}
.y15f{bottom:556.200096px;}
.y1a9{bottom:556.740074px;}
.y250{bottom:558.360077px;}
.y66{bottom:563.400055px;}
.y39{bottom:565.920043px;}
.y106{bottom:566.820099px;}
.y21d{bottom:567.540047px;}
.y98{bottom:570.960091px;}
.y65{bottom:572.220085px;}
.ycb{bottom:573.660049px;}
.y1db{bottom:577.080093px;}
.y15e{bottom:577.260064px;}
.y1a8{bottom:577.980079px;}
.y24f{bottom:579.960091px;}
.y38{bottom:580.140060px;}
.y21c{bottom:580.860077px;}
.y64{bottom:584.640060px;}
.y105{bottom:587.880066px;}
.y97{bottom:592.020058px;}
.y21b{bottom:594.180039px;}
.y37{bottom:594.360077px;}
.yca{bottom:594.720085px;}
.y63{bottom:597.060036px;}
.y1da{bottom:598.140060px;}
.y15d{bottom:598.500068px;}
.y1a7{bottom:599.040047px;}
.y21a{bottom:607.500068px;}
.y273{bottom:608.400055px;}
.y36{bottom:608.580093px;}
.y104{bottom:609.120072px;}
.y62{bottom:609.480079px;}
.y96{bottom:613.080093px;}
.yc9{bottom:615.960091px;}
.y1d9{bottom:619.380066px;}
.y15c{bottom:619.560036px;}
.y1a6{bottom:620.280052px;}
.y219{bottom:620.820099px;}
.y35{bottom:622.800041px;}
.y61{bottom:625.680039px;}
.y103{bottom:630.180039px;}
.y60{bottom:634.320099px;}
.y34{bottom:637.020058px;}
.y218{bottom:639.180039px;}
.y1d8{bottom:640.440033px;}
.y15b{bottom:640.800041px;}
.y1a5{bottom:641.340088px;}
.y272{bottom:644.400055px;}
.y5f{bottom:646.740074px;}
.y33{bottom:651.240074px;}
.y24e{bottom:651.960091px;}
.y95{bottom:655.380066px;}
.y217{bottom:656.460091px;}
.yc8{bottom:658.260064px;}
.y271{bottom:658.620072px;}
.y5e{bottom:659.160049px;}
.y1d7{bottom:661.500068px;}
.y15a{bottom:661.860077px;}
.y1a4{bottom:662.400055px;}
.y32{bottom:665.460091px;}
.y24d{bottom:666.180039px;}
.y216{bottom:669.780052px;}
.y5d{bottom:671.760064px;}
.y102{bottom:672.480079px;}
.y94{bottom:676.620072px;}
.yc7{bottom:679.320099px;}
.y31{bottom:679.680039px;}
.y24c{bottom:680.400055px;}
.y159{bottom:681.840088px;}
.y1d6{bottom:682.740074px;}
.y215{bottom:683.100083px;}
.y1a3{bottom:683.640060px;}
.y5c{bottom:687.960056px;}
.y101{bottom:692.460056px;}
.y30{bottom:694.620072px;}
.y214{bottom:696.420078px;}
.y5b{bottom:696.600083px;}
.y93{bottom:697.680073px;}
.y157{bottom:698.040081px;}
.yc6{bottom:700.380066px;}
.y24b{bottom:702.000068px;}
.y1a2{bottom:703.620072px;}
.y1d5{bottom:703.800076px;}
.y158{bottom:707.400055px;}
.y5a{bottom:709.020058px;}
.y213{bottom:709.740074px;}
.y2f{bottom:712.260064px;}
.y100{bottom:715.140060px;}
.y24a{bottom:716.220051px;}
.y92{bottom:718.920078px;}
.y155{bottom:719.460056px;}
.y1a0{bottom:719.820065px;}
.y59{bottom:721.440067px;}
.yc5{bottom:721.620072px;}
.y212{bottom:723.060070px;}
.y1d4{bottom:725.040081px;}
.yff{bottom:726.300076px;}
.y1a1{bottom:727.020058px;}
.y2e{bottom:727.200061px;}
.y156{bottom:728.820065px;}
.y153{bottom:729.720051px;}
.y249{bottom:730.440067px;}
.y58{bottom:733.860077px;}
.y152{bottom:736.200061px;}
.y19d{bottom:737.460056px;}
.y19e{bottom:739.080059px;}
.y91{bottom:739.980079px;}
.y154{bottom:740.700061px;}
.y211{bottom:741.420078px;}
.yc4{bottom:742.680073px;}
.y19a{bottom:743.940067px;}
.y2d{bottom:744.660049px;}
.y1d3{bottom:746.100083px;}
.y19f{bottom:746.280052px;}
.y14f{bottom:746.820065px;}
.y57{bottom:750.060070px;}
.y248{bottom:752.220051px;}
.y19b{bottom:758.340054px;}
.y56{bottom:758.700061px;}
.y2c{bottom:758.880066px;}
.yfc{bottom:760.500068px;}
.y90{bottom:761.040081px;}
.y150{bottom:762.120072px;}
.yc3{bottom:763.920078px;}
.y19c{bottom:765.540081px;}
.y247{bottom:766.440067px;}
.yfe{bottom:767.160049px;}
.y55{bottom:771.300076px;}
.y151{bottom:771.480079px;}
.yfb{bottom:771.840054px;}
.y2b{bottom:773.100083px;}
.y210{bottom:773.640060px;}
.yfd{bottom:778.320065px;}
.y246{bottom:780.660049px;}
.y8f{bottom:782.280052px;}
.y54{bottom:783.720051px;}
.y14d{bottom:784.260064px;}
.yc2{bottom:784.980079px;}
.y199{bottom:785.520058px;}
.y20f{bottom:786.960056px;}
.y2a{bottom:787.320065px;}
.y1d2{bottom:788.400055px;}
.yfa{bottom:789.660049px;}
.y14e{bottom:793.620072px;}
.y270{bottom:794.880066px;}
.y53{bottom:796.140060px;}
.y197{bottom:797.580059px;}
.y20e{bottom:800.280052px;}
.y29{bottom:801.540081px;}
.y245{bottom:802.440067px;}
.y194{bottom:802.620072px;}
.y8e{bottom:803.340054px;}
.y198{bottom:804.780052px;}
.y14b{bottom:805.680073px;}
.yc1{bottom:806.040081px;}
.y1d1{bottom:809.460056px;}
.y52{bottom:812.340054px;}
.y145{bottom:813.420078px;}
.y20d{bottom:813.600083px;}
.y14c{bottom:815.040081px;}
.y28{bottom:815.760064px;}
.y148{bottom:815.940067px;}
.y244{bottom:816.660049px;}
.y195{bottom:816.840054px;}
.y51{bottom:820.980079px;}
.y147{bottom:822.420078px;}
.y196{bottom:824.040081px;}
.y8d{bottom:824.580059px;}
.y143{bottom:824.760064px;}
.yf9{bottom:826.560070px;}
.y20c{bottom:826.920078px;}
.y149{bottom:827.100083px;}
.yc0{bottom:827.280052px;}
.yf6{bottom:828.720051px;}
.y27{bottom:829.980079px;}
.y1d0{bottom:830.700061px;}
.y243{bottom:830.880066px;}
.y50{bottom:833.400055px;}
.y14a{bottom:836.460056px;}
.y192{bottom:837.000068px;}
.yf8{bottom:837.720051px;}
.y20b{bottom:840.240074px;}
.y26{bottom:844.200061px;}
.y8c{bottom:845.640060px;}
.y4f{bottom:845.820065px;}
.yf5{bottom:846.540081px;}
.ybf{bottom:848.340054px;}
.y1cf{bottom:851.760064px;}
.y242{bottom:852.480079px;}
.y20a{bottom:853.740074px;}
.y190{bottom:854.640060px;}
.yf7{bottom:856.260064px;}
.y146{bottom:857.700061px;}
.y4e{bottom:858.240074px;}
.y25{bottom:858.420078px;}
.y18c{bottom:861.120072px;}
.y191{bottom:863.460056px;}
.y8b{bottom:866.700061px;}
.ybe{bottom:869.580059px;}
.y140{bottom:870.480079px;}
.y4c{bottom:870.840054px;}
.y209{bottom:872.100083px;}
.y24{bottom:872.640060px;}
.y1ce{bottom:872.820065px;}
.y4d{bottom:874.620072px;}
.y18d{bottom:875.520058px;}
.yf4{bottom:879.300076px;}
.y142{bottom:879.840054px;}
.y241{bottom:880.920078px;}
.y18f{bottom:882.720051px;}
.y23{bottom:886.860077px;}
.y8a{bottom:887.940067px;}
.y208{bottom:889.200061px;}
.ybd{bottom:890.640060px;}
.y13d{bottom:891.900055px;}
.y1cd{bottom:894.060070px;}
.y240{bottom:895.140060px;}
.y18a{bottom:895.500068px;}
.y4b{bottom:896.220051px;}
.y22{bottom:901.080059px;}
.y13f{bottom:901.260064px;}
.y13a{bottom:902.160049px;}
.y207{bottom:902.520058px;}
.y26f{bottom:902.700061px;}
.y136{bottom:908.640060px;}
.y89{bottom:909.000068px;}
.y4a{bottom:909.540081px;}
.ybc{bottom:911.700061px;}
.y13b{bottom:913.320065px;}
.y1cc{bottom:915.120072px;}
.y21{bottom:915.300076px;}
.y206{bottom:915.840054px;}
.y23f{bottom:916.920078px;}
.yf2{bottom:919.800076px;}
.y49{bottom:922.680073px;}
.y205{bottom:929.160049px;}
.y20{bottom:929.520058px;}
.y88{bottom:930.240074px;}
.y23e{bottom:931.140060px;}
.ybb{bottom:932.940067px;}
.y137{bottom:934.740074px;}
.y48{bottom:935.100083px;}
.y1cb{bottom:936.360077px;}
.yf1{bottom:939.780053px;}
.y204{bottom:942.480079px;}
.y139{bottom:943.920078px;}
.y23d{bottom:945.360077px;}
.y47{bottom:947.700061px;}
.y1f{bottom:948.240074px;}
.y87{bottom:951.300076px;}
.y26e{bottom:952.920078px;}
.yba{bottom:954.000068px;}
.y203{bottom:955.800076px;}
.y134{bottom:956.700061px;}
.y1ca{bottom:957.420078px;}
.y45{bottom:958.680073px;}
.y23c{bottom:967.140060px;}
.y202{bottom:969.300076px;}
.y86{bottom:972.360077px;}
.yb9{bottom:975.240074px;}
.y1c9{bottom:978.480063px;}
.y23b{bottom:981.360060px;}
.y201{bottom:982.620072px;}
.y133{bottom:983.160067px;}
.y1e{bottom:985.860060px;}
.y26d{bottom:988.740074px;}
.y85{bottom:993.600065px;}
.y23a{bottom:995.580059px;}
.y200{bottom:995.940067px;}
.yb8{bottom:996.300058px;}
.y1c8{bottom:999.720068px;}
.y26c{bottom:1002.960074px;}
.y132{bottom:1003.140060px;}
.y1ff{bottom:1009.260064px;}
.y1d{bottom:1011.060070px;}
.y84{bottom:1014.660067px;}
.y239{bottom:1017.180073px;}
.yb7{bottom:1017.540064px;}
.y1c7{bottom:1020.780069px;}
.y1fe{bottom:1022.580059px;}
.y1c{bottom:1030.500068px;}
.y238{bottom:1031.400072px;}
.y83{bottom:1035.900072px;}
.yb6{bottom:1038.600065px;}
.y26b{bottom:1038.960074px;}
.y1c6{bottom:1042.020058px;}
.y237{bottom:1045.620072px;}
.y1fd{bottom:1049.220068px;}
.y26a{bottom:1053.180073px;}
.y82{bottom:1056.960074px;}
.yb5{bottom:1059.660067px;}
.y1fc{bottom:1062.540064px;}
.y236{bottom:1067.400072px;}
.y1b{bottom:1069.740074px;}
.y1fb{bottom:1075.860060px;}
.y81{bottom:1078.020058px;}
.yb4{bottom:1080.900072px;}
.y1c5{bottom:1081.080059px;}
.y235{bottom:1081.620072px;}
.y1fa{bottom:1089.180073px;}
.y1a{bottom:1098.900072px;}
.y80{bottom:1099.260064px;}
.yb3{bottom:1101.960074px;}
.y234{bottom:1103.400072px;}
.y1f9{bottom:1107.540064px;}
.y233{bottom:1117.620072px;}
.y7f{bottom:1120.320065px;}
.yb2{bottom:1123.200061px;}
.yd{bottom:1131.840063px;}
.y1f8{bottom:1141.020066px;}
.yb1{bottom:1144.260064px;}
.yc{bottom:1149.660067px;}
.y232{bottom:1153.440067px;}
.y7e{bottom:1159.560070px;}
.y1f7{bottom:1162.080068px;}
.yb0{bottom:1165.320065px;}
.y231{bottom:1167.660067px;}
.ya{bottom:1173.780069px;}
.y9{bottom:1178.460065px;}
.y4{bottom:1187.280069px;}
.yaf{bottom:1187.640069px;}
.y7{bottom:1196.640065px;}
.y6{bottom:1201.320065px;}
.y7d{bottom:1201.500065px;}
.y3{bottom:1201.680064px;}
.yae{bottom:1202.040064px;}
.y2{bottom:1215.720068px;}
.y7c{bottom:1216.080068px;}
.yad{bottom:1216.620067px;}
.y5{bottom:1223.820065px;}
.y7b{bottom:1230.300067px;}
.y1{bottom:1230.480067px;}
.h33{height:8.639992px;}
.h3a{height:10.080025px;}
.h35{height:10.259994px;}
.h38{height:10.439964px;}
.h3c{height:10.439965px;}
.h39{height:10.440033px;}
.h3d{height:10.620002px;}
.h34{height:10.620003px;}
.h1e{height:12.240006px;}
.h46{height:12.959953px;}
.h49{height:12.959988px;}
.h12{height:13.319996px;}
.h2d{height:13.679970px;}
.h24{height:13.680038px;}
.h26{height:13.860008px;}
.h2b{height:13.860009px;}
.h29{height:14.399986px;}
.h2c{height:14.400055px;}
.h28{height:14.579956px;}
.h2a{height:14.580025px;}
.h47{height:14.759994px;}
.h48{height:14.759996px;}
.h4a{height:14.760029px;}
.h3e{height:15.120003px;}
.h44{height:16.739971px;}
.h3f{height:16.740006px;}
.h42{height:16.919975px;}
.h40{height:16.920009px;}
.h41{height:16.920010px;}
.h4c{height:17.639992px;}
.h31{height:17.640027px;}
.h4d{height:17.819961px;}
.h3b{height:17.819962px;}
.h2e{height:17.819996px;}
.h43{height:17.819997px;}
.h45{height:17.820029px;}
.h37{height:17.820030px;}
.h8{height:22.499995px;}
.h6{height:22.500000px;}
.h16{height:23.119356px;}
.h1c{height:25.137693px;}
.h17{height:25.287813px;}
.h1a{height:25.287818px;}
.h1b{height:25.287956px;}
.h19{height:25.287960px;}
.h36{height:28.729112px;}
.hb{height:29.158271px;}
.h4{height:33.684460px;}
.h15{height:39.047115px;}
.h1d{height:40.634056px;}
.h18{height:41.267788px;}
.h13{height:42.413283px;}
.h14{height:44.137031px;}
.h2{height:45.106083px;}
.h25{height:45.829710px;}
.h1f{height:45.926194px;}
.h3{height:46.891030px;}
.h4f{height:47.671340px;}
.h27{height:48.436121px;}
.h20{height:48.538092px;}
.h11{height:50.492104px;}
.h23{height:51.302138px;}
.hf{height:54.038138px;}
.h4e{height:56.774138px;}
.h22{height:57.111375px;}
.h10{height:58.148669px;}
.he{height:61.936925px;}
.h50{height:62.665265px;}
.hd{height:63.063050px;}
.h5{height:71.288330px;}
.h7{height:72.860867px;}
.h9{height:76.907760px;}
.h21{height:77.294993px;}
.h30{height:81.109692px;}
.h32{height:90.469629px;}
.h4b{height:90.469634px;}
.hc{height:91.166947px;}
.h2f{height:117.109692px;}
.ha{height:121.909167px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w45{width:1.079956px;}
.w6b{width:1.079990px;}
.w44{width:1.080025px;}
.w42{width:1.259994px;}
.w4b{width:1.620003px;}
.w3a{width:1.800007px;}
.w66{width:1.980011px;}
.w9{width:2.159998px;}
.w6{width:2.160007px;}
.w4d{width:2.879997px;}
.w41{width:3.599979px;}
.w26{width:4.319995px;}
.w20{width:4.500000px;}
.w47{width:5.399986px;}
.we{width:5.579990px;}
.w4{width:5.579991px;}
.wa{width:5.580007px;}
.w24{width:5.939964px;}
.w1a{width:5.939965px;}
.w17{width:5.939998px;}
.w1e{width:5.939999px;}
.w60{width:5.940002px;}
.w14{width:5.940033px;}
.w19{width:5.940034px;}
.w25{width:6.120002px;}
.w50{width:6.120003px;}
.w37{width:6.299972px;}
.w3f{width:6.299973px;}
.w10{width:6.300007px;}
.w12{width:6.300008px;}
.w58{width:6.300040px;}
.w3d{width:6.300042px;}
.w4e{width:6.659980px;}
.w13{width:6.659981px;}
.w3c{width:6.660016px;}
.w63{width:6.660049px;}
.wb{width:6.840002px;}
.w39{width:7.199993px;}
.w2{width:8.100014px;}
.w15{width:8.460021px;}
.w7{width:10.259994px;}
.w21{width:11.879998px;}
.w1f{width:12.060001px;}
.w23{width:12.060036px;}
.w40{width:14.939999px;}
.w5{width:15.119994px;}
.w18{width:18.000000px;}
.w8{width:18.720000px;}
.w1c{width:20.879998px;}
.w2d{width:21.780017px;}
.w65{width:24.479976px;}
.w2f{width:24.840019px;}
.w1b{width:25.199993px;}
.wd{width:27.360008px;}
.w68{width:27.899987px;}
.w29{width:27.900020px;}
.w62{width:28.979978px;}
.w6c{width:28.980010px;}
.w3b{width:28.980011px;}
.w48{width:30.779983px;}
.w54{width:30.779984px;}
.w52{width:30.780018px;}
.w3e{width:33.479943px;}
.w64{width:33.480010px;}
.w4f{width:33.480011px;}
.w2a{width:33.839985px;}
.w4c{width:34.019989px;}
.w38{width:34.019990px;}
.w57{width:34.020007px;}
.w27{width:34.560002px;}
.wc{width:34.919993px;}
.w2e{width:36.000000px;}
.w51{width:37.439999px;}
.w11{width:39.060001px;}
.w1d{width:40.680003px;}
.w34{width:40.680021px;}
.w33{width:43.560001px;}
.w5a{width:45.539978px;}
.w43{width:45.540012px;}
.w67{width:45.899987px;}
.wf{width:48.960005px;}
.w69{width:50.759994px;}
.w6a{width:51.479976px;}
.w46{width:51.480010px;}
.w35{width:51.480011px;}
.w31{width:63.900021px;}
.w5b{width:64.619985px;}
.w22{width:68.399987px;}
.w49{width:70.919975px;}
.w53{width:71.459988px;}
.w3{width:81.360008px;}
.w30{width:85.680003px;}
.w32{width:85.860008px;}
.w2c{width:89.639992px;}
.w5f{width:89.640009px;}
.w5d{width:92.520006px;}
.w2b{width:92.879997px;}
.w5c{width:96.119985px;}
.w28{width:105.660015px;}
.w59{width:108.539994px;}
.w56{width:111.599992px;}
.w61{width:111.599997px;}
.w36{width:111.600013px;}
.w55{width:133.560001px;}
.w16{width:152.100013px;}
.w4a{width:163.439998px;}
.w5e{width:172.080002px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:54.000000px;}
.x9c{left:57.780001px;}
.xb3{left:64.619999px;}
.x8a{left:68.040000px;}
.x26{left:75.239997px;}
.xa{left:79.560001px;}
.x10{left:82.439999px;}
.x12{left:84.780001px;}
.x1{left:89.640000px;}
.x16{left:95.219999px;}
.x17{left:100.620002px;}
.x7{left:102.959997px;}
.x18{left:115.739997px;}
.x19{left:117.900003px;}
.x1a{left:128.159998px;}
.x1b{left:146.879998px;}
.x1c{left:149.039996px;}
.x1d{left:154.620002px;}
.x15{left:162.180005px;}
.x11{left:163.800007px;}
.x9d{left:169.379998px;}
.xb{left:175.319996px;}
.x8b{left:179.639992px;}
.x14{left:183.240006px;}
.x21{left:191.340002px;}
.xa8{left:192.419992px;}
.x57{left:194.759994px;}
.x1e{left:196.379998px;}
.x27{left:199.439999px;}
.x5f{left:205.379998px;}
.x22{left:213.300007px;}
.x13{left:215.819996px;}
.x1f{left:223.740006px;}
.x4d{left:232.020006px;}
.x8{left:244.263088px;}
.x28{left:248.219999px;}
.x8c{left:254.159998px;}
.x52{left:259.560001px;}
.x92{left:264.780001px;}
.xd{left:266.400003px;}
.x45{left:268.919992px;}
.x24{left:283.139992px;}
.x41{left:288.000000px;}
.xc9{left:292.500000px;}
.x25{left:296.459988px;}
.xc8{left:302.220017px;}
.xc{left:303.480011px;}
.x38{left:305.459988px;}
.xbc{left:309.959988px;}
.xc4{left:311.220017px;}
.x60{left:316.980011px;}
.xcc{left:321.300007px;}
.x5a{left:324.720017px;}
.xc2{left:327.060001px;}
.x95{left:329.399987px;}
.x96{left:333.000000px;}
.xf{left:348.480011px;}
.x2f{left:350.639992px;}
.x78{left:352.980011px;}
.x9a{left:354.420010px;}
.xcf{left:355.860008px;}
.x5b{left:358.199993px;}
.x98{left:360.899987px;}
.x7f{left:363.600014px;}
.xb1{left:367.920010px;}
.x80{left:369.720017px;}
.xcd{left:372.420010px;}
.x81{left:374.040012px;}
.x5c{left:376.199993px;}
.xa5{left:379.800007px;}
.x61{left:382.860008px;}
.x79{left:387.000000px;}
.xa6{left:388.800007px;}
.xa2{left:390.600014px;}
.xb8{left:392.579990px;}
.x5d{left:394.199993px;}
.xc7{left:396.540012px;}
.xce{left:398.160015px;}
.x6a{left:405.540012px;}
.x6b{left:410.040012px;}
.x82{left:411.480011px;}
.x83{left:415.079990px;}
.x62{left:416.879998px;}
.xa3{left:418.680005px;}
.xa7{left:420.300007px;}
.x8d{left:421.560001px;}
.xb2{left:422.819996px;}
.x6c{left:424.980011px;}
.x93{left:427.500000px;}
.x6d{left:428.579990px;}
.x97{left:430.379998px;}
.xb0{left:433.800007px;}
.x88{left:435.060001px;}
.xbd{left:437.220017px;}
.x89{left:438.660015px;}
.xc5{left:441.540012px;}
.x9b{left:443.339985px;}
.x5e{left:445.680005px;}
.xa4{left:451.980011px;}
.x20{left:453.600014px;}
.x23{left:456.120002px;}
.x7a{left:459.360008px;}
.xac{left:460.980011px;}
.x84{left:462.779983px;}
.x94{left:464.220017px;}
.x7b{left:466.199993px;}
.x6e{left:467.819996px;}
.x46{left:469.439999px;}
.x76{left:470.699993px;}
.x59{left:472.139992px;}
.x49{left:475.740006px;}
.x4b{left:477.360008px;}
.x53{left:479.339985px;}
.x85{left:480.779983px;}
.x77{left:482.759994px;}
.x63{left:485.279983px;}
.x3d{left:487.980011px;}
.x55{left:490.319996px;}
.x48{left:491.399987px;}
.x74{left:494.639992px;}
.x6f{left:497.699993px;}
.x42{left:499.680005px;}
.x64{left:501.120002px;}
.x29{left:502.740006px;}
.x50{left:504.180005px;}
.x43{left:505.800007px;}
.x39{left:507.959988px;}
.x34{left:509.579990px;}
.x4e{left:511.379998px;}
.x87{left:512.819996px;}
.xad{left:516.959988px;}
.x99{left:518.040012px;}
.x3a{left:520.019989px;}
.xc6{left:521.639992px;}
.x3b{left:524.519989px;}
.x65{left:529.740006px;}
.xc1{left:531.540012px;}
.x4f{left:532.980011px;}
.x35{left:534.779983px;}
.x3c{left:536.399987px;}
.x7c{left:538.740006px;}
.x51{left:540.180005px;}
.x2a{left:541.620002px;}
.x70{left:543.240006px;}
.x44{left:544.680005px;}
.x75{left:546.120002px;}
.xae{left:548.279983px;}
.xe{left:552.600014px;}
.x56{left:554.220017px;}
.x3e{left:556.379998px;}
.x86{left:558.720017px;}
.x2{left:561.600014px;}
.x7d{left:563.759994px;}
.x54{left:565.019989px;}
.x4c{left:567.000000px;}
.x4a{left:568.620002px;}
.x7e{left:570.420010px;}
.x66{left:572.220017px;}
.x47{left:575.100014px;}
.xb9{left:578.700027px;}
.x58{left:581.580025px;}
.x3{left:584.820030px;}
.x71{left:592.379998px;}
.xcb{left:593.460023px;}
.xb7{left:597.600014px;}
.xaf{left:603.899987px;}
.x9e{left:605.879998px;}
.x67{left:607.500000px;}
.x9f{left:612.539978px;}
.x68{left:614.159981px;}
.x30{left:619.019989px;}
.x3f{left:621.899987px;}
.x2b{left:624.600014px;}
.x5{left:625.860008px;}
.x8e{left:628.740006px;}
.xd0{left:630.000000px;}
.x2c{left:631.259994px;}
.xb6{left:632.519989px;}
.x40{left:633.960023px;}
.x8f{left:635.399987px;}
.x31{left:637.019989px;}
.x72{left:638.639992px;}
.xa9{left:640.080025px;}
.xb5{left:643.500000px;}
.xaa{left:644.580025px;}
.xbb{left:647.460023px;}
.xca{left:651.419975px;}
.x69{left:653.940033px;}
.xc3{left:657.539978px;}
.xbf{left:659.700027px;}
.xbe{left:663.659981px;}
.x36{left:666.000000px;}
.x32{left:667.440033px;}
.x2d{left:672.299973px;}
.x2e{left:680.759994px;}
.x33{left:685.440033px;}
.x37{left:686.879998px;}
.xc0{left:688.860008px;}
.xb4{left:694.620002px;}
.x73{left:698.220017px;}
.xab{left:700.559967px;}
.xa0{left:701.639992px;}
.xba{left:706.860008px;}
.x90{left:708.659981px;}
.x9{left:723.960023px;}
.xa1{left:734.399987px;}
.x91{left:741.419975px;}
.x4{left:803.340019px;}
@media print{
.v6{vertical-align:-95.359864pt;}
.va{vertical-align:-74.880128pt;}
.vb{vertical-align:-72.320068pt;}
.v1{vertical-align:-69.760008pt;}
.v4{vertical-align:-51.839844pt;}
.v9{vertical-align:-39.679928pt;}
.v3{vertical-align:-21.119996pt;}
.v5{vertical-align:-14.204423pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.119996pt;}
.v7{vertical-align:31.359984pt;}
.v8{vertical-align:39.679928pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.111063pt;}
.lsa{letter-spacing:0.799620pt;}
.lsb{letter-spacing:4.639584pt;}
.lsc{letter-spacing:4.639708pt;}
.ls4{letter-spacing:4.787381pt;}
.ls6{letter-spacing:4.787383pt;}
.ls5{letter-spacing:4.787425pt;}
.ls3{letter-spacing:4.787426pt;}
.ls8{letter-spacing:400.917950pt;}
.ls9{letter-spacing:476.437938pt;}
.ls2{letter-spacing:754.703446pt;}
.ls1{letter-spacing:1006.447582pt;}
.ws2{word-spacing:-160.006392pt;}
.wsa{word-spacing:-16.995858pt;}
.ws1{word-spacing:-14.111229pt;}
.ws0{word-spacing:-13.778417pt;}
.ws4{word-spacing:-12.895246pt;}
.ws5{word-spacing:-10.996254pt;}
.wsb{word-spacing:-10.077176pt;}
.wsc{word-spacing:-9.391070pt;}
.ws6{word-spacing:-8.830430pt;}
.ws7{word-spacing:-8.000310pt;}
.ws8{word-spacing:-7.684138pt;}
.ws3{word-spacing:-7.568929pt;}
.ws9{word-spacing:0.000000pt;}
._f{margin-left:-11.063453pt;}
._11{margin-left:-6.646648pt;}
._36{margin-left:-5.236723pt;}
._e{margin-left:-3.827728pt;}
._7{margin-left:-2.057530pt;}
._0{margin-left:-0.986277pt;}
._1{width:0.998436pt;}
._8{width:2.383450pt;}
._5{width:3.489241pt;}
._6{width:4.958073pt;}
._b{width:6.330394pt;}
._2{width:8.087368pt;}
._3{width:9.538947pt;}
._a{width:10.773198pt;}
._10{width:11.868287pt;}
._c{width:12.778717pt;}
._d{width:13.807875pt;}
._15{width:14.810217pt;}
._34{width:15.788148pt;}
._2a{width:16.736022pt;}
._26{width:18.023773pt;}
._14{width:19.340283pt;}
._13{width:20.275362pt;}
._27{width:24.016950pt;}
._35{width:25.129314pt;}
._3e{width:32.204082pt;}
._3f{width:33.355776pt;}
._29{width:42.624310pt;}
._32{width:44.168048pt;}
._2d{width:49.356722pt;}
._43{width:51.586565pt;}
._40{width:52.744368pt;}
._1f{width:53.644882pt;}
._41{width:55.642616pt;}
._3b{width:57.204054pt;}
._3a{width:60.674778pt;}
._37{width:61.577978pt;}
._38{width:62.993070pt;}
._39{width:65.714504pt;}
._2f{width:67.397716pt;}
._44{width:70.489866pt;}
._20{width:71.483627pt;}
._21{width:74.399576pt;}
._42{width:77.996318pt;}
._33{width:83.233186pt;}
._25{width:84.880454pt;}
._2c{width:91.209163pt;}
._19{width:94.253757pt;}
._28{width:95.368678pt;}
._30{width:98.829929pt;}
._22{width:104.245170pt;}
._24{width:107.534572pt;}
._1e{width:108.747738pt;}
._2b{width:110.806054pt;}
._3c{width:119.854072pt;}
._9{width:120.960342pt;}
._3d{width:127.384725pt;}
._18{width:132.608470pt;}
._1d{width:155.609446pt;}
._23{width:163.250251pt;}
._1c{width:165.168074pt;}
._1a{width:166.196922pt;}
._1b{width:169.082149pt;}
._16{width:173.456072pt;}
._12{width:180.016957pt;}
._17{width:218.132622pt;}
._31{width:276.825038pt;}
._2e{width:282.137258pt;}
._4{width:1063.892496pt;}
.fsd{font-size:21.120800pt;}
.fse{font-size:22.321975pt;}
.fs14{font-size:26.881040pt;}
.fs10{font-size:32.001240pt;}
.fs8{font-size:34.561320pt;}
.fs5{font-size:37.119590pt;}
.fsc{font-size:37.121440pt;}
.fsf{font-size:39.232597pt;}
.fsb{font-size:40.321600pt;}
.fs0{font-size:42.881600pt;}
.fs11{font-size:45.320347pt;}
.fsa{font-size:48.002000pt;}
.fs9{font-size:50.562000pt;}
.fs2{font-size:53.122000pt;}
.fs13{font-size:53.437544pt;}
.fs15{font-size:56.322000pt;}
.fs7{font-size:58.882400pt;}
.fs1{font-size:66.562400pt;}
.fs3{font-size:69.122804pt;}
.fs12{font-size:72.322800pt;}
.fs6{font-size:85.123200pt;}
.fs4{font-size:160.006392pt;}
.y10f{bottom:-2.400024pt;}
.y119{bottom:-0.799988pt;}
.y120{bottom:-0.799987pt;}
.y116{bottom:-0.640015pt;}
.y112{bottom:-0.640014pt;}
.y124{bottom:-0.639954pt;}
.y0{bottom:0.000000pt;}
.y166{bottom:1.440002pt;}
.y18b{bottom:1.440003pt;}
.y7a{bottom:1.760010pt;}
.yd4{bottom:2.239990pt;}
.yd2{bottom:2.240051pt;}
.y11a{bottom:2.559997pt;}
.y46{bottom:2.559998pt;}
.y117{bottom:2.719971pt;}
.y125{bottom:2.720031pt;}
.y113{bottom:2.720032pt;}
.yd8{bottom:2.879944pt;}
.ye7{bottom:2.880004pt;}
.ydc{bottom:2.880005pt;}
.y169{bottom:3.039978pt;}
.y18e{bottom:3.040008pt;}
.y193{bottom:3.040009pt;}
.y174{bottom:3.040039pt;}
.y178{bottom:3.040040pt;}
.y135{bottom:3.360016pt;}
.yb{bottom:4.159996pt;}
.y8{bottom:4.160000pt;}
.y138{bottom:4.799988pt;}
.y13c{bottom:4.959991pt;}
.y141{bottom:4.959992pt;}
.y13e{bottom:4.960022pt;}
.y11d{bottom:5.759949pt;}
.y144{bottom:5.760009pt;}
.yf3{bottom:5.760010pt;}
.y19{bottom:13.120118pt;}
.y18{bottom:25.440064pt;}
.y17{bottom:38.240113pt;}
.y16{bottom:38.252417pt;}
.y15{bottom:48.974302pt;}
.y14{bottom:59.690657pt;}
.y13{bottom:70.409777pt;}
.yf{bottom:74.080079pt;}
.y12{bottom:81.131662pt;}
.y11{bottom:91.853659pt;}
.y230{bottom:93.280030pt;}
.y269{bottom:95.040039pt;}
.yac{bottom:97.280030pt;}
.yf0{bottom:98.560059pt;}
.y1f0{bottom:99.680054pt;}
.y10{bottom:102.731415pt;}
.y131{bottom:105.760071pt;}
.y22f{bottom:105.920044pt;}
.y268{bottom:107.680054pt;}
.yee{bottom:108.960083pt;}
.y1c4{bottom:110.880066pt;}
.yef{bottom:111.520081pt;}
.ye{bottom:113.600037pt;}
.yab{bottom:116.000061pt;}
.y1ef{bottom:118.400086pt;}
.y267{bottom:120.320069pt;}
.yed{bottom:124.480042pt;}
.y130{bottom:124.640076pt;}
.y22e{bottom:125.280030pt;}
.y189{bottom:127.520081pt;}
.y1c3{bottom:129.760071pt;}
.yaa{bottom:134.720032pt;}
.y1ee{bottom:137.280030pt;}
.yec{bottom:137.440064pt;}
.y22d{bottom:137.920044pt;}
.y266{bottom:139.520081pt;}
.yea{bottom:141.440064pt;}
.y12f{bottom:143.360047pt;}
.y188{bottom:145.280030pt;}
.y1c2{bottom:148.480042pt;}
.yeb{bottom:150.240052pt;}
.y22c{bottom:150.560059pt;}
.y265{bottom:152.160035pt;}
.ya9{bottom:153.600037pt;}
.y1ed{bottom:156.000061pt;}
.y186{bottom:159.680054pt;}
.ye9{bottom:163.200074pt;}
.y264{bottom:164.800049pt;}
.y187{bottom:166.080079pt;}
.y12e{bottom:166.400086pt;}
.y1c1{bottom:167.360047pt;}
.ya8{bottom:172.320069pt;}
.y1ec{bottom:174.720032pt;}
.ye8{bottom:176.160035pt;}
.y184{bottom:176.800049pt;}
.y12d{bottom:180.800049pt;}
.y22b{bottom:182.560059pt;}
.y185{bottom:183.200074pt;}
.y263{bottom:184.160035pt;}
.y1c0{bottom:186.080079pt;}
.ye4{bottom:186.560059pt;}
.ye6{bottom:189.120057pt;}
.y181{bottom:189.760071pt;}
.y79{bottom:191.040039pt;}
.ya7{bottom:191.200074pt;}
.y1eb{bottom:193.600037pt;}
.y182{bottom:193.920044pt;}
.y12c{bottom:194.240052pt;}
.y22a{bottom:195.200074pt;}
.y262{bottom:196.800049pt;}
.y12a{bottom:197.600037pt;}
.y17e{bottom:198.240052pt;}
.y183{bottom:200.320069pt;}
.ye5{bottom:202.080079pt;}
.y129{bottom:203.360047pt;}
.y1bf{bottom:204.800049pt;}
.y12b{bottom:207.520081pt;}
.y229{bottom:207.840088pt;}
.y261{bottom:209.440064pt;}
.ya6{bottom:209.920044pt;}
.y127{bottom:210.080079pt;}
.y17f{bottom:211.040039pt;}
.y78{bottom:212.160035pt;}
.y1ea{bottom:212.320069pt;}
.ye3{bottom:215.040039pt;}
.y180{bottom:217.440064pt;}
.y128{bottom:220.800049pt;}
.y1be{bottom:223.680054pt;}
.ye2{bottom:227.840088pt;}
.y17c{bottom:228.800049pt;}
.y1e9{bottom:231.200074pt;}
.y77{bottom:231.840088pt;}
.y126{bottom:234.880066pt;}
.y17d{bottom:235.200074pt;}
.ydf{bottom:238.400086pt;}
.ye1{bottom:240.800049pt;}
.y1bd{bottom:241.440064pt;}
.y228{bottom:243.200074pt;}
.ya5{bottom:244.640076pt;}
.y17a{bottom:245.920044pt;}
.y123{bottom:248.160035pt;}
.y11e{bottom:249.440064pt;}
.y1e8{bottom:249.920044pt;}
.y172{bottom:251.040039pt;}
.y76{bottom:251.680054pt;}
.y17b{bottom:252.320069pt;}
.ye0{bottom:253.760071pt;}
.y260{bottom:254.080079pt;}
.y1bc{bottom:255.840088pt;}
.y121{bottom:257.440064pt;}
.y176{bottom:258.880066pt;}
.y11c{bottom:259.520081pt;}
.y171{bottom:261.120057pt;}
.y122{bottom:261.600037pt;}
.y177{bottom:263.040039pt;}
.y1bb{bottom:265.760071pt;}
.yde{bottom:266.720032pt;}
.y1e7{bottom:268.800049pt;}
.y179{bottom:269.440064pt;}
.y1b9{bottom:271.520081pt;}
.y75{bottom:271.840088pt;}
.y25f{bottom:273.280030pt;}
.y11f{bottom:274.880066pt;}
.y1ba{bottom:275.680054pt;}
.y227{bottom:279.040039pt;}
.ydd{bottom:279.680054pt;}
.y173{bottom:280.160035pt;}
.ya4{bottom:282.080079pt;}
.y1f6{bottom:284.800049pt;}
.y25e{bottom:285.920044pt;}
.y175{bottom:286.560059pt;}
.y1e6{bottom:287.520081pt;}
.y11b{bottom:288.800049pt;}
.yd9{bottom:290.080079pt;}
.y226{bottom:291.680054pt;}
.y74{bottom:292.000061pt;}
.ydb{bottom:292.640076pt;}
.y1b8{bottom:296.160035pt;}
.y16f{bottom:298.080079pt;}
.ya3{bottom:300.800049pt;}
.y1b7{bottom:301.920044pt;}
.y118{bottom:302.240052pt;}
.y170{bottom:304.480042pt;}
.y25d{bottom:305.280030pt;}
.yda{bottom:305.440064pt;}
.y114{bottom:305.600037pt;}
.y1b5{bottom:306.080079pt;}
.y1e5{bottom:306.240052pt;}
.y27b{bottom:306.400086pt;}
.y110{bottom:311.360047pt;}
.y73{bottom:311.520081pt;}
.y1b4{bottom:311.840088pt;}
.y16d{bottom:315.200074pt;}
.y115{bottom:315.520081pt;}
.y1b6{bottom:316.000061pt;}
.y25c{bottom:317.920044pt;}
.yd7{bottom:318.400086pt;}
.ya2{bottom:319.680054pt;}
.y16e{bottom:321.600037pt;}
.y1f5{bottom:322.080079pt;}
.y1e4{bottom:325.120057pt;}
.y167{bottom:328.160035pt;}
.y72{bottom:328.640076pt;}
.y111{bottom:328.800049pt;}
.yd5{bottom:328.960083pt;}
.y27a{bottom:330.080079pt;}
.yd6{bottom:331.360047pt;}
.y16b{bottom:332.320069pt;}
.y1b3{bottom:336.480042pt;}
.y25b{bottom:337.280030pt;}
.y225{bottom:337.440064pt;}
.y44{bottom:337.920044pt;}
.ya1{bottom:338.400086pt;}
.y16c{bottom:338.720032pt;}
.y1f4{bottom:340.800049pt;}
.y10e{bottom:342.880066pt;}
.y1e3{bottom:343.840088pt;}
.yd3{bottom:344.320069pt;}
.y71{bottom:345.920044pt;}
.y1b2{bottom:346.240052pt;}
.y168{bottom:349.440064pt;}
.y25a{bottom:349.920044pt;}
.y279{bottom:350.560059pt;}
.y1af{bottom:352.000061pt;}
.y43{bottom:352.160035pt;}
.y16a{bottom:355.840088pt;}
.y1b0{bottom:356.160035pt;}
.ya0{bottom:357.120057pt;}
.yd1{bottom:357.280030pt;}
.y1f3{bottom:359.680054pt;}
.y10d{bottom:360.640076pt;}
.y70{bottom:361.440064pt;}
.y1b1{bottom:361.920044pt;}
.y259{bottom:362.560059pt;}
.y1e2{bottom:362.720032pt;}
.y42{bottom:366.400086pt;}
.y165{bottom:367.200074pt;}
.y224{bottom:368.640076pt;}
.y278{bottom:369.120057pt;}
.y258{bottom:375.200074pt;}
.y9f{bottom:376.000061pt;}
.yd0{bottom:376.640076pt;}
.y10c{bottom:378.400086pt;}
.y41{bottom:380.320069pt;}
.y1e1{bottom:381.440064pt;}
.y277{bottom:381.760071pt;}
.y1ae{bottom:382.400086pt;}
.y223{bottom:384.960083pt;}
.y164{bottom:388.800049pt;}
.y6f{bottom:390.720032pt;}
.y257{bottom:394.400086pt;}
.y9e{bottom:394.720032pt;}
.y1f2{bottom:397.280030pt;}
.y1e0{bottom:400.160035pt;}
.y1ad{bottom:402.560059pt;}
.y40{bottom:405.920044pt;}
.y163{bottom:406.560059pt;}
.y256{bottom:407.040039pt;}
.y6e{bottom:408.960083pt;}
.y10b{bottom:409.920044pt;}
.y9d{bottom:413.600037pt;}
.y276{bottom:413.760071pt;}
.y1f1{bottom:416.000061pt;}
.y1df{bottom:419.040039pt;}
.y255{bottom:419.680054pt;}
.y6d{bottom:420.160035pt;}
.y3f{bottom:420.480042pt;}
.y222{bottom:425.440064pt;}
.y275{bottom:426.400086pt;}
.y10a{bottom:428.640076pt;}
.y6c{bottom:431.200074pt;}
.y9c{bottom:432.320069pt;}
.ycf{bottom:434.720032pt;}
.y3e{bottom:436.800049pt;}
.y221{bottom:437.280030pt;}
.y1de{bottom:437.760071pt;}
.y162{bottom:438.080079pt;}
.y1ac{bottom:438.560059pt;}
.y254{bottom:439.040039pt;}
.y6b{bottom:445.600037pt;}
.y109{bottom:447.520081pt;}
.y9b{bottom:451.040039pt;}
.y253{bottom:451.680054pt;}
.y3d{bottom:452.480042pt;}
.y6a{bottom:453.280030pt;}
.yce{bottom:453.600037pt;}
.y1dd{bottom:456.640076pt;}
.y161{bottom:456.800049pt;}
.y1ab{bottom:457.280030pt;}
.y274{bottom:458.400086pt;}
.y69{bottom:464.320069pt;}
.y3c{bottom:465.120057pt;}
.y108{bottom:466.240052pt;}
.y220{bottom:468.960083pt;}
.y9a{bottom:469.920044pt;}
.y252{bottom:471.040039pt;}
.ycd{bottom:472.320069pt;}
.y68{bottom:475.360047pt;}
.y160{bottom:475.680054pt;}
.y1aa{bottom:476.160035pt;}
.y3b{bottom:477.760071pt;}
.y21f{bottom:480.800049pt;}
.y251{bottom:483.680054pt;}
.y107{bottom:485.120057pt;}
.y67{bottom:486.400086pt;}
.y99{bottom:488.640076pt;}
.y3a{bottom:490.400086pt;}
.ycc{bottom:491.200074pt;}
.y21e{bottom:492.640076pt;}
.y1dc{bottom:494.080079pt;}
.y15f{bottom:494.400086pt;}
.y1a9{bottom:494.880066pt;}
.y250{bottom:496.320069pt;}
.y66{bottom:500.800049pt;}
.y39{bottom:503.040039pt;}
.y106{bottom:503.840088pt;}
.y21d{bottom:504.480042pt;}
.y98{bottom:507.520081pt;}
.y65{bottom:508.640076pt;}
.ycb{bottom:509.920044pt;}
.y1db{bottom:512.960083pt;}
.y15e{bottom:513.120057pt;}
.y1a8{bottom:513.760071pt;}
.y24f{bottom:515.520081pt;}
.y38{bottom:515.680054pt;}
.y21c{bottom:516.320069pt;}
.y64{bottom:519.680054pt;}
.y105{bottom:522.560059pt;}
.y97{bottom:526.240052pt;}
.y21b{bottom:528.160035pt;}
.y37{bottom:528.320069pt;}
.yca{bottom:528.640076pt;}
.y63{bottom:530.720032pt;}
.y1da{bottom:531.680054pt;}
.y15d{bottom:532.000061pt;}
.y1a7{bottom:532.480042pt;}
.y21a{bottom:540.000061pt;}
.y273{bottom:540.800049pt;}
.y36{bottom:540.960083pt;}
.y104{bottom:541.440064pt;}
.y62{bottom:541.760071pt;}
.y96{bottom:544.960083pt;}
.yc9{bottom:547.520081pt;}
.y1d9{bottom:550.560059pt;}
.y15c{bottom:550.720032pt;}
.y1a6{bottom:551.360047pt;}
.y219{bottom:551.840088pt;}
.y35{bottom:553.600037pt;}
.y61{bottom:556.160035pt;}
.y103{bottom:560.160035pt;}
.y60{bottom:563.840088pt;}
.y34{bottom:566.240052pt;}
.y218{bottom:568.160035pt;}
.y1d8{bottom:569.280030pt;}
.y15b{bottom:569.600037pt;}
.y1a5{bottom:570.080079pt;}
.y272{bottom:572.800049pt;}
.y5f{bottom:574.880066pt;}
.y33{bottom:578.880066pt;}
.y24e{bottom:579.520081pt;}
.y95{bottom:582.560059pt;}
.y217{bottom:583.520081pt;}
.yc8{bottom:585.120057pt;}
.y271{bottom:585.440064pt;}
.y5e{bottom:585.920044pt;}
.y1d7{bottom:588.000061pt;}
.y15a{bottom:588.320069pt;}
.y1a4{bottom:588.800049pt;}
.y32{bottom:591.520081pt;}
.y24d{bottom:592.160035pt;}
.y216{bottom:595.360047pt;}
.y5d{bottom:597.120057pt;}
.y102{bottom:597.760071pt;}
.y94{bottom:601.440064pt;}
.yc7{bottom:603.840088pt;}
.y31{bottom:604.160035pt;}
.y24c{bottom:604.800049pt;}
.y159{bottom:606.080079pt;}
.y1d6{bottom:606.880066pt;}
.y215{bottom:607.200074pt;}
.y1a3{bottom:607.680054pt;}
.y5c{bottom:611.520050pt;}
.y101{bottom:615.520050pt;}
.y30{bottom:617.440064pt;}
.y214{bottom:619.040070pt;}
.y5b{bottom:619.200074pt;}
.y93{bottom:620.160065pt;}
.y157{bottom:620.480072pt;}
.yc6{bottom:622.560059pt;}
.y24b{bottom:624.000061pt;}
.y1a2{bottom:625.440064pt;}
.y1d5{bottom:625.600068pt;}
.y158{bottom:628.800049pt;}
.y5a{bottom:630.240052pt;}
.y213{bottom:630.880066pt;}
.y2f{bottom:633.120057pt;}
.y100{bottom:635.680054pt;}
.y24a{bottom:636.640046pt;}
.y92{bottom:639.040070pt;}
.y155{bottom:639.520050pt;}
.y1a0{bottom:639.840058pt;}
.y59{bottom:641.280060pt;}
.yc5{bottom:641.440064pt;}
.y212{bottom:642.720063pt;}
.y1d4{bottom:644.480072pt;}
.yff{bottom:645.600068pt;}
.y1a1{bottom:646.240052pt;}
.y2e{bottom:646.400055pt;}
.y156{bottom:647.840058pt;}
.y153{bottom:648.640046pt;}
.y249{bottom:649.280060pt;}
.y58{bottom:652.320069pt;}
.y152{bottom:654.400055pt;}
.y19d{bottom:655.520050pt;}
.y19e{bottom:656.960053pt;}
.y91{bottom:657.760071pt;}
.y154{bottom:658.400055pt;}
.y211{bottom:659.040070pt;}
.yc4{bottom:660.160065pt;}
.y19a{bottom:661.280060pt;}
.y2d{bottom:661.920044pt;}
.y1d3{bottom:663.200074pt;}
.y19f{bottom:663.360047pt;}
.y14f{bottom:663.840058pt;}
.y57{bottom:666.720063pt;}
.y248{bottom:668.640046pt;}
.y19b{bottom:674.080048pt;}
.y56{bottom:674.400055pt;}
.y2c{bottom:674.560059pt;}
.yfc{bottom:676.000061pt;}
.y90{bottom:676.480072pt;}
.y150{bottom:677.440064pt;}
.yc3{bottom:679.040070pt;}
.y19c{bottom:680.480072pt;}
.y247{bottom:681.280060pt;}
.yfe{bottom:681.920044pt;}
.y55{bottom:685.600068pt;}
.y151{bottom:685.760071pt;}
.yfb{bottom:686.080048pt;}
.y2b{bottom:687.200074pt;}
.y210{bottom:687.680054pt;}
.yfd{bottom:691.840058pt;}
.y246{bottom:693.920044pt;}
.y8f{bottom:695.360047pt;}
.y54{bottom:696.640046pt;}
.y14d{bottom:697.120057pt;}
.yc2{bottom:697.760071pt;}
.y199{bottom:698.240052pt;}
.y20f{bottom:699.520050pt;}
.y2a{bottom:699.840058pt;}
.y1d2{bottom:700.800049pt;}
.yfa{bottom:701.920044pt;}
.y14e{bottom:705.440064pt;}
.y270{bottom:706.560059pt;}
.y53{bottom:707.680054pt;}
.y197{bottom:708.960053pt;}
.y20e{bottom:711.360047pt;}
.y29{bottom:712.480072pt;}
.y245{bottom:713.280060pt;}
.y194{bottom:713.440064pt;}
.y8e{bottom:714.080048pt;}
.y198{bottom:715.360047pt;}
.y14b{bottom:716.160065pt;}
.yc1{bottom:716.480072pt;}
.y1d1{bottom:719.520050pt;}
.y52{bottom:722.080048pt;}
.y145{bottom:723.040070pt;}
.y20d{bottom:723.200074pt;}
.y14c{bottom:724.480072pt;}
.y28{bottom:725.120057pt;}
.y148{bottom:725.280060pt;}
.y244{bottom:725.920044pt;}
.y195{bottom:726.080048pt;}
.y51{bottom:729.760071pt;}
.y147{bottom:731.040070pt;}
.y196{bottom:732.480072pt;}
.y8d{bottom:732.960053pt;}
.y143{bottom:733.120057pt;}
.yf9{bottom:734.720063pt;}
.y20c{bottom:735.040070pt;}
.y149{bottom:735.200074pt;}
.yc0{bottom:735.360047pt;}
.yf6{bottom:736.640046pt;}
.y27{bottom:737.760071pt;}
.y1d0{bottom:738.400055pt;}
.y243{bottom:738.560059pt;}
.y50{bottom:740.800049pt;}
.y14a{bottom:743.520050pt;}
.y192{bottom:744.000061pt;}
.yf8{bottom:744.640046pt;}
.y20b{bottom:746.880066pt;}
.y26{bottom:750.400055pt;}
.y8c{bottom:751.680054pt;}
.y4f{bottom:751.840058pt;}
.yf5{bottom:752.480072pt;}
.ybf{bottom:754.080048pt;}
.y1cf{bottom:757.120057pt;}
.y242{bottom:757.760071pt;}
.y20a{bottom:758.880066pt;}
.y190{bottom:759.680054pt;}
.yf7{bottom:761.120057pt;}
.y146{bottom:762.400055pt;}
.y4e{bottom:762.880066pt;}
.y25{bottom:763.040070pt;}
.y18c{bottom:765.440064pt;}
.y191{bottom:767.520050pt;}
.y8b{bottom:770.400055pt;}
.ybe{bottom:772.960053pt;}
.y140{bottom:773.760071pt;}
.y4c{bottom:774.080048pt;}
.y209{bottom:775.200074pt;}
.y24{bottom:775.680054pt;}
.y1ce{bottom:775.840058pt;}
.y4d{bottom:777.440064pt;}
.y18d{bottom:778.240052pt;}
.yf4{bottom:781.600068pt;}
.y142{bottom:782.080048pt;}
.y241{bottom:783.040070pt;}
.y18f{bottom:784.640046pt;}
.y23{bottom:788.320069pt;}
.y8a{bottom:789.280060pt;}
.y208{bottom:790.400055pt;}
.ybd{bottom:791.680054pt;}
.y13d{bottom:792.800049pt;}
.y1cd{bottom:794.720063pt;}
.y240{bottom:795.680054pt;}
.y18a{bottom:796.000061pt;}
.y4b{bottom:796.640046pt;}
.y22{bottom:800.960053pt;}
.y13f{bottom:801.120057pt;}
.y13a{bottom:801.920044pt;}
.y207{bottom:802.240052pt;}
.y26f{bottom:802.400055pt;}
.y136{bottom:807.680054pt;}
.y89{bottom:808.000061pt;}
.y4a{bottom:808.480072pt;}
.ybc{bottom:810.400055pt;}
.y13b{bottom:811.840058pt;}
.y1cc{bottom:813.440064pt;}
.y21{bottom:813.600068pt;}
.y206{bottom:814.080048pt;}
.y23f{bottom:815.040070pt;}
.yf2{bottom:817.600068pt;}
.y49{bottom:820.160065pt;}
.y205{bottom:825.920044pt;}
.y20{bottom:826.240052pt;}
.y88{bottom:826.880066pt;}
.y23e{bottom:827.680054pt;}
.ybb{bottom:829.280060pt;}
.y137{bottom:830.880066pt;}
.y48{bottom:831.200074pt;}
.y1cb{bottom:832.320069pt;}
.yf1{bottom:835.360047pt;}
.y204{bottom:837.760071pt;}
.y139{bottom:839.040070pt;}
.y23d{bottom:840.320069pt;}
.y47{bottom:842.400055pt;}
.y1f{bottom:842.880066pt;}
.y87{bottom:845.600068pt;}
.y26e{bottom:847.040070pt;}
.yba{bottom:848.000061pt;}
.y203{bottom:849.600068pt;}
.y134{bottom:850.400055pt;}
.y1ca{bottom:851.040070pt;}
.y45{bottom:852.160065pt;}
.y23c{bottom:859.680054pt;}
.y202{bottom:861.600068pt;}
.y86{bottom:864.320069pt;}
.yb9{bottom:866.880066pt;}
.y1c9{bottom:869.760056pt;}
.y23b{bottom:872.320054pt;}
.y201{bottom:873.440064pt;}
.y133{bottom:873.920060pt;}
.y1e{bottom:876.320054pt;}
.y26d{bottom:878.880066pt;}
.y85{bottom:883.200058pt;}
.y23a{bottom:884.960053pt;}
.y200{bottom:885.280060pt;}
.yb8{bottom:885.600052pt;}
.y1c8{bottom:888.640061pt;}
.y26c{bottom:891.520066pt;}
.y132{bottom:891.680054pt;}
.y1ff{bottom:897.120057pt;}
.y1d{bottom:898.720063pt;}
.y84{bottom:901.920060pt;}
.y239{bottom:904.160065pt;}
.yb7{bottom:904.480057pt;}
.y1c7{bottom:907.360062pt;}
.y1fe{bottom:908.960053pt;}
.y1c{bottom:916.000061pt;}
.y238{bottom:916.800064pt;}
.y83{bottom:920.800064pt;}
.yb6{bottom:923.200058pt;}
.y26b{bottom:923.520066pt;}
.y1c6{bottom:926.240052pt;}
.y237{bottom:929.440064pt;}
.y1fd{bottom:932.640061pt;}
.y26a{bottom:936.160065pt;}
.y82{bottom:939.520066pt;}
.yb5{bottom:941.920060pt;}
.y1fc{bottom:944.480057pt;}
.y236{bottom:948.800064pt;}
.y1b{bottom:950.880066pt;}
.y1fb{bottom:956.320054pt;}
.y81{bottom:958.240052pt;}
.yb4{bottom:960.800064pt;}
.y1c5{bottom:960.960053pt;}
.y235{bottom:961.440064pt;}
.y1fa{bottom:968.160065pt;}
.y1a{bottom:976.800064pt;}
.y80{bottom:977.120057pt;}
.yb3{bottom:979.520066pt;}
.y234{bottom:980.800064pt;}
.y1f9{bottom:984.480057pt;}
.y233{bottom:993.440064pt;}
.y7f{bottom:995.840058pt;}
.yb2{bottom:998.400055pt;}
.yd{bottom:1006.080056pt;}
.y1f8{bottom:1014.240059pt;}
.yb1{bottom:1017.120057pt;}
.yc{bottom:1021.920060pt;}
.y232{bottom:1025.280060pt;}
.y7e{bottom:1030.720063pt;}
.y1f7{bottom:1032.960061pt;}
.yb0{bottom:1035.840058pt;}
.y231{bottom:1037.920060pt;}
.ya{bottom:1043.360062pt;}
.y9{bottom:1047.520058pt;}
.y4{bottom:1055.360062pt;}
.yaf{bottom:1055.680062pt;}
.y7{bottom:1063.680058pt;}
.y6{bottom:1067.840058pt;}
.y7d{bottom:1068.000058pt;}
.y3{bottom:1068.160057pt;}
.yae{bottom:1068.480057pt;}
.y2{bottom:1080.640061pt;}
.y7c{bottom:1080.960061pt;}
.yad{bottom:1081.440060pt;}
.y5{bottom:1087.840058pt;}
.y7b{bottom:1093.600060pt;}
.y1{bottom:1093.760060pt;}
.h33{height:7.679993pt;}
.h3a{height:8.960022pt;}
.h35{height:9.119995pt;}
.h38{height:9.279968pt;}
.h3c{height:9.279969pt;}
.h39{height:9.280029pt;}
.h3d{height:9.440002pt;}
.h34{height:9.440003pt;}
.h1e{height:10.880005pt;}
.h46{height:11.519958pt;}
.h49{height:11.519989pt;}
.h12{height:11.839996pt;}
.h2d{height:12.159973pt;}
.h24{height:12.160034pt;}
.h26{height:12.320007pt;}
.h2b{height:12.320008pt;}
.h29{height:12.799988pt;}
.h2c{height:12.800049pt;}
.h28{height:12.959961pt;}
.h2a{height:12.960022pt;}
.h47{height:13.119995pt;}
.h48{height:13.119996pt;}
.h4a{height:13.120026pt;}
.h3e{height:13.440003pt;}
.h44{height:14.879974pt;}
.h3f{height:14.880005pt;}
.h42{height:15.039978pt;}
.h40{height:15.040008pt;}
.h41{height:15.040009pt;}
.h4c{height:15.679993pt;}
.h31{height:15.680024pt;}
.h4d{height:15.839965pt;}
.h3b{height:15.839966pt;}
.h2e{height:15.839996pt;}
.h43{height:15.839997pt;}
.h45{height:15.840026pt;}
.h37{height:15.840027pt;}
.h8{height:19.999996pt;}
.h6{height:20.000000pt;}
.h16{height:20.550538pt;}
.h1c{height:22.344616pt;}
.h17{height:22.478056pt;}
.h1a{height:22.478060pt;}
.h1b{height:22.478183pt;}
.h19{height:22.478187pt;}
.h36{height:25.536988pt;}
.hb{height:25.918463pt;}
.h4{height:29.941742pt;}
.h15{height:34.708546pt;}
.h1d{height:36.119161pt;}
.h18{height:36.682479pt;}
.h13{height:37.700696pt;}
.h14{height:39.232917pt;}
.h2{height:40.094296pt;}
.h25{height:40.737520pt;}
.h1f{height:40.823283pt;}
.h3{height:41.680915pt;}
.h4f{height:42.374525pt;}
.h27{height:43.054330pt;}
.h20{height:43.144971pt;}
.h11{height:44.881870pt;}
.h23{height:45.601900pt;}
.hf{height:48.033900pt;}
.h4e{height:50.465900pt;}
.h22{height:50.765667pt;}
.h10{height:51.687706pt;}
.he{height:55.055044pt;}
.h50{height:55.702458pt;}
.hd{height:56.056045pt;}
.h5{height:63.367405pt;}
.h7{height:64.765215pt;}
.h9{height:68.362453pt;}
.h21{height:68.706660pt;}
.h30{height:72.097504pt;}
.h32{height:80.417448pt;}
.h4b{height:80.417452pt;}
.hc{height:81.037286pt;}
.h2f{height:104.097504pt;}
.ha{height:108.363704pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w45{width:0.959961pt;}
.w6b{width:0.959991pt;}
.w44{width:0.960022pt;}
.w42{width:1.119995pt;}
.w4b{width:1.440003pt;}
.w3a{width:1.600006pt;}
.w66{width:1.760010pt;}
.w9{width:1.919998pt;}
.w6{width:1.920006pt;}
.w4d{width:2.559997pt;}
.w41{width:3.199981pt;}
.w26{width:3.839996pt;}
.w20{width:4.000000pt;}
.w47{width:4.799988pt;}
.we{width:4.959991pt;}
.w4{width:4.959992pt;}
.wa{width:4.960006pt;}
.w24{width:5.279968pt;}
.w1a{width:5.279969pt;}
.w17{width:5.279998pt;}
.w1e{width:5.279999pt;}
.w60{width:5.280002pt;}
.w14{width:5.280029pt;}
.w19{width:5.280030pt;}
.w25{width:5.440002pt;}
.w50{width:5.440003pt;}
.w37{width:5.599975pt;}
.w3f{width:5.599976pt;}
.w10{width:5.600006pt;}
.w12{width:5.600007pt;}
.w58{width:5.600036pt;}
.w3d{width:5.600037pt;}
.w4e{width:5.919982pt;}
.w13{width:5.919983pt;}
.w3c{width:5.920014pt;}
.w63{width:5.920044pt;}
.wb{width:6.080002pt;}
.w39{width:6.399994pt;}
.w2{width:7.200012pt;}
.w15{width:7.520019pt;}
.w7{width:9.119995pt;}
.w21{width:10.559998pt;}
.w1f{width:10.720001pt;}
.w23{width:10.720032pt;}
.w40{width:13.279999pt;}
.w5{width:13.439995pt;}
.w18{width:16.000000pt;}
.w8{width:16.640000pt;}
.w1c{width:18.559998pt;}
.w2d{width:19.360015pt;}
.w65{width:21.759979pt;}
.w2f{width:22.080017pt;}
.w1b{width:22.399994pt;}
.wd{width:24.320007pt;}
.w68{width:24.799988pt;}
.w29{width:24.800018pt;}
.w62{width:25.759980pt;}
.w6c{width:25.760009pt;}
.w3b{width:25.760010pt;}
.w48{width:27.359985pt;}
.w54{width:27.359986pt;}
.w52{width:27.360016pt;}
.w3e{width:29.759949pt;}
.w64{width:29.760009pt;}
.w4f{width:29.760010pt;}
.w2a{width:30.079987pt;}
.w4c{width:30.239990pt;}
.w38{width:30.239991pt;}
.w57{width:30.240006pt;}
.w27{width:30.720002pt;}
.wc{width:31.039994pt;}
.w2e{width:32.000000pt;}
.w51{width:33.279999pt;}
.w11{width:34.720001pt;}
.w1d{width:36.160003pt;}
.w34{width:36.160019pt;}
.w33{width:38.720001pt;}
.w5a{width:40.479980pt;}
.w43{width:40.480011pt;}
.w67{width:40.799988pt;}
.wf{width:43.520004pt;}
.w69{width:45.119995pt;}
.w6a{width:45.759979pt;}
.w46{width:45.760009pt;}
.w35{width:45.760010pt;}
.w31{width:56.800019pt;}
.w5b{width:57.439987pt;}
.w22{width:60.799988pt;}
.w49{width:63.039978pt;}
.w53{width:63.519989pt;}
.w3{width:72.320007pt;}
.w30{width:76.160003pt;}
.w32{width:76.320007pt;}
.w2c{width:79.679993pt;}
.w5f{width:79.680008pt;}
.w5d{width:82.240005pt;}
.w2b{width:82.559997pt;}
.w5c{width:85.439987pt;}
.w28{width:93.920013pt;}
.w59{width:96.479995pt;}
.w56{width:99.199993pt;}
.w61{width:99.199997pt;}
.w36{width:99.200012pt;}
.w55{width:118.720001pt;}
.w16{width:135.200012pt;}
.w4a{width:145.279998pt;}
.w5e{width:152.960002pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:48.000000pt;}
.x9c{left:51.360001pt;}
.xb3{left:57.439999pt;}
.x8a{left:60.480000pt;}
.x26{left:66.879997pt;}
.xa{left:70.720001pt;}
.x10{left:73.279999pt;}
.x12{left:75.360001pt;}
.x1{left:79.680000pt;}
.x16{left:84.639999pt;}
.x17{left:89.440002pt;}
.x7{left:91.519997pt;}
.x18{left:102.879997pt;}
.x19{left:104.800003pt;}
.x1a{left:113.919998pt;}
.x1b{left:130.559998pt;}
.x1c{left:132.479996pt;}
.x1d{left:137.440002pt;}
.x15{left:144.160004pt;}
.x11{left:145.600006pt;}
.x9d{left:150.559998pt;}
.xb{left:155.839996pt;}
.x8b{left:159.679993pt;}
.x14{left:162.880005pt;}
.x21{left:170.080002pt;}
.xa8{left:171.039993pt;}
.x57{left:173.119995pt;}
.x1e{left:174.559998pt;}
.x27{left:177.279999pt;}
.x5f{left:182.559998pt;}
.x22{left:189.600006pt;}
.x13{left:191.839996pt;}
.x1f{left:198.880005pt;}
.x4d{left:206.240005pt;}
.x8{left:217.122745pt;}
.x28{left:220.639999pt;}
.x8c{left:225.919998pt;}
.x52{left:230.720001pt;}
.x92{left:235.360001pt;}
.xd{left:236.800003pt;}
.x45{left:239.039993pt;}
.x24{left:251.679993pt;}
.x41{left:256.000000pt;}
.xc9{left:260.000000pt;}
.x25{left:263.519989pt;}
.xc8{left:268.640015pt;}
.xc{left:269.760010pt;}
.x38{left:271.519989pt;}
.xbc{left:275.519989pt;}
.xc4{left:276.640015pt;}
.x60{left:281.760010pt;}
.xcc{left:285.600006pt;}
.x5a{left:288.640015pt;}
.xc2{left:290.720001pt;}
.x95{left:292.799988pt;}
.x96{left:296.000000pt;}
.xf{left:309.760010pt;}
.x2f{left:311.679993pt;}
.x78{left:313.760010pt;}
.x9a{left:315.040009pt;}
.xcf{left:316.320007pt;}
.x5b{left:318.399994pt;}
.x98{left:320.799988pt;}
.x7f{left:323.200012pt;}
.xb1{left:327.040009pt;}
.x80{left:328.640015pt;}
.xcd{left:331.040009pt;}
.x81{left:332.480011pt;}
.x5c{left:334.399994pt;}
.xa5{left:337.600006pt;}
.x61{left:340.320007pt;}
.x79{left:344.000000pt;}
.xa6{left:345.600006pt;}
.xa2{left:347.200012pt;}
.xb8{left:348.959991pt;}
.x5d{left:350.399994pt;}
.xc7{left:352.480011pt;}
.xce{left:353.920013pt;}
.x6a{left:360.480011pt;}
.x6b{left:364.480011pt;}
.x82{left:365.760010pt;}
.x83{left:368.959991pt;}
.x62{left:370.559998pt;}
.xa3{left:372.160004pt;}
.xa7{left:373.600006pt;}
.x8d{left:374.720001pt;}
.xb2{left:375.839996pt;}
.x6c{left:377.760010pt;}
.x93{left:380.000000pt;}
.x6d{left:380.959991pt;}
.x97{left:382.559998pt;}
.xb0{left:385.600006pt;}
.x88{left:386.720001pt;}
.xbd{left:388.640015pt;}
.x89{left:389.920013pt;}
.xc5{left:392.480011pt;}
.x9b{left:394.079987pt;}
.x5e{left:396.160004pt;}
.xa4{left:401.760010pt;}
.x20{left:403.200012pt;}
.x23{left:405.440002pt;}
.x7a{left:408.320007pt;}
.xac{left:409.760010pt;}
.x84{left:411.359985pt;}
.x94{left:412.640015pt;}
.x7b{left:414.399994pt;}
.x6e{left:415.839996pt;}
.x46{left:417.279999pt;}
.x76{left:418.399994pt;}
.x59{left:419.679993pt;}
.x49{left:422.880005pt;}
.x4b{left:424.320007pt;}
.x53{left:426.079987pt;}
.x85{left:427.359985pt;}
.x77{left:429.119995pt;}
.x63{left:431.359985pt;}
.x3d{left:433.760010pt;}
.x55{left:435.839996pt;}
.x48{left:436.799988pt;}
.x74{left:439.679993pt;}
.x6f{left:442.399994pt;}
.x42{left:444.160004pt;}
.x64{left:445.440002pt;}
.x29{left:446.880005pt;}
.x50{left:448.160004pt;}
.x43{left:449.600006pt;}
.x39{left:451.519989pt;}
.x34{left:452.959991pt;}
.x4e{left:454.559998pt;}
.x87{left:455.839996pt;}
.xad{left:459.519989pt;}
.x99{left:460.480011pt;}
.x3a{left:462.239990pt;}
.xc6{left:463.679993pt;}
.x3b{left:466.239990pt;}
.x65{left:470.880005pt;}
.xc1{left:472.480011pt;}
.x4f{left:473.760010pt;}
.x35{left:475.359985pt;}
.x3c{left:476.799988pt;}
.x7c{left:478.880005pt;}
.x51{left:480.160004pt;}
.x2a{left:481.440002pt;}
.x70{left:482.880005pt;}
.x44{left:484.160004pt;}
.x75{left:485.440002pt;}
.xae{left:487.359985pt;}
.xe{left:491.200012pt;}
.x56{left:492.640015pt;}
.x3e{left:494.559998pt;}
.x86{left:496.640015pt;}
.x2{left:499.200012pt;}
.x7d{left:501.119995pt;}
.x54{left:502.239990pt;}
.x4c{left:504.000000pt;}
.x4a{left:505.440002pt;}
.x7e{left:507.040009pt;}
.x66{left:508.640015pt;}
.x47{left:511.200012pt;}
.xb9{left:514.400024pt;}
.x58{left:516.960022pt;}
.x3{left:519.840027pt;}
.x71{left:526.559998pt;}
.xcb{left:527.520020pt;}
.xb7{left:531.200012pt;}
.xaf{left:536.799988pt;}
.x9e{left:538.559998pt;}
.x67{left:540.000000pt;}
.x9f{left:544.479980pt;}
.x68{left:545.919983pt;}
.x30{left:550.239990pt;}
.x3f{left:552.799988pt;}
.x2b{left:555.200012pt;}
.x5{left:556.320007pt;}
.x8e{left:558.880005pt;}
.xd0{left:560.000000pt;}
.x2c{left:561.119995pt;}
.xb6{left:562.239990pt;}
.x40{left:563.520020pt;}
.x8f{left:564.799988pt;}
.x31{left:566.239990pt;}
.x72{left:567.679993pt;}
.xa9{left:568.960022pt;}
.xb5{left:572.000000pt;}
.xaa{left:572.960022pt;}
.xbb{left:575.520020pt;}
.xca{left:579.039978pt;}
.x69{left:581.280029pt;}
.xc3{left:584.479980pt;}
.xbf{left:586.400024pt;}
.xbe{left:589.919983pt;}
.x36{left:592.000000pt;}
.x32{left:593.280029pt;}
.x2d{left:597.599976pt;}
.x2e{left:605.119995pt;}
.x33{left:609.280029pt;}
.x37{left:610.559998pt;}
.xc0{left:612.320007pt;}
.xb4{left:617.440002pt;}
.x73{left:620.640015pt;}
.xab{left:622.719971pt;}
.xa0{left:623.679993pt;}
.xba{left:628.320007pt;}
.x90{left:629.919983pt;}
.x9{left:643.520020pt;}
.xa1{left:652.799988pt;}
.x91{left:659.039978pt;}
.x4{left:714.080017pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  