
    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_5e3e880acdf39f1867d93a6e.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_cb9dbafd59fbab4fdef93c4d.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_9804c240fe8d150023d11eac.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_5f9a10cd1c431a05df988129.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_afb278f097f94a716f3b230f.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_288b07b9eef6d0de4533aef1.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_92ac89babeeeaf00ad9714bf.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);}
.v5{vertical-align:-84.240139px;}
.v3{vertical-align:-15.120068px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.119937px;}
.v1{vertical-align:23.759996px;}
.v4{vertical-align:69.120005px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.542277px;}
.lsa{letter-spacing:0.543686px;}
.ls19{letter-spacing:0.543691px;}
.ls1d{letter-spacing:0.935429px;}
.ls17{letter-spacing:0.935434px;}
.ls7{letter-spacing:0.935501px;}
.ls13{letter-spacing:1.275008px;}
.lsf{letter-spacing:1.391506px;}
.lse{letter-spacing:1.393117px;}
.ls5{letter-spacing:1.752608px;}
.lsc{letter-spacing:1.752743px;}
.ls0{letter-spacing:2.395068px;}
.ls14{letter-spacing:187.512739px;}
.lsb{letter-spacing:200.343078px;}
.ls1b{letter-spacing:203.943024px;}
.ls1a{letter-spacing:206.103209px;}
.ls18{letter-spacing:207.543105px;}
.ls1f{letter-spacing:208.263123px;}
.ls1e{letter-spacing:208.263262px;}
.ls10{letter-spacing:223.512667px;}
.ls9{letter-spacing:247.863204px;}
.ls15{letter-spacing:279.672653px;}
.ls11{letter-spacing:440.232613px;}
.ls12{letter-spacing:458.232752px;}
.lsd{letter-spacing:528.792653px;}
.ls4{letter-spacing:534.423038px;}
.ls20{letter-spacing:535.992680px;}
.ls6{letter-spacing:586.983137px;}
.ls1{letter-spacing:849.041377px;}
.ls16{letter-spacing:901.623231px;}
.ls1c{letter-spacing:909.543141px;}
.ls3{letter-spacing:1441.623164px;}
.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;}
.wse{word-spacing:-56.882250px;}
.wsb{word-spacing:-48.241800px;}
.ws1{word-spacing:-15.875132px;}
.ws0{word-spacing:-15.500719px;}
.wsf{word-spacing:-14.220563px;}
.wsd{word-spacing:-13.367329px;}
.ws4{word-spacing:-12.370786px;}
.wsc{word-spacing:-12.060450px;}
.wsa{word-spacing:-11.336823px;}
.ws10{word-spacing:-11.165801px;}
.ws11{word-spacing:-10.564954px;}
.ws5{word-spacing:-9.934234px;}
.ws7{word-spacing:-9.000349px;}
.ws8{word-spacing:-8.644655px;}
.ws3{word-spacing:-8.515045px;}
.ws6{word-spacing:-5.203637px;}
.ws9{word-spacing:0.000000px;}
._47{margin-left:-12.394718px;}
._45{margin-left:-6.593305px;}
._46{margin-left:-3.543117px;}
._7{margin-left:-2.408547px;}
._0{margin-left:-1.254287px;}
._1{width:1.123241px;}
._8{width:2.611540px;}
._5{width:3.925397px;}
._6{width:5.722557px;}
._9{width:7.722322px;}
._2{width:9.098289px;}
._3{width:10.731315px;}
._d{width:11.945273px;}
._48{width:13.073528px;}
._c{width:14.391209px;}
._10{width:16.154559px;}
._f{width:17.462851px;}
._11{width:18.597670px;}
._e{width:19.624376px;}
._13{width:20.818904px;}
._41{width:21.829115px;}
._12{width:22.923547px;}
._51{width:24.234563px;}
._40{width:26.165835px;}
._58{width:27.208375px;}
._17{width:28.213596px;}
._18{width:29.380050px;}
._3e{width:32.024707px;}
._15{width:33.051465px;}
._14{width:34.072468px;}
._56{width:36.751584px;}
._3f{width:37.826696px;}
._42{width:39.827660px;}
._3d{width:43.586208px;}
._3c{width:47.098503px;}
._43{width:53.300115px;}
._4c{width:63.003791px;}
._44{width:64.050862px;}
._4b{width:65.750806px;}
._4a{width:67.147760px;}
._57{width:68.280110px;}
._4d{width:87.032062px;}
._4e{width:88.663594px;}
._54{width:98.409729px;}
._50{width:99.571075px;}
._55{width:103.021127px;}
._4f{width:105.590744px;}
._16{width:125.814614px;}
._33{width:128.998573px;}
._39{width:132.327257px;}
._a{width:135.945392px;}
._52{width:143.808806px;}
._53{width:152.425970px;}
._28{width:159.327182px;}
._38{width:161.368821px;}
._2e{width:163.422704px;}
._35{width:169.473443px;}
._2a{width:180.415108px;}
._37{width:185.340924px;}
._24{width:190.612420px;}
._36{width:192.533024px;}
._29{width:196.312372px;}
._2f{width:198.120877px;}
._b{width:202.519076px;}
._49{width:207.051672px;}
._23{width:208.829144px;}
._3b{width:209.900072px;}
._31{width:211.374441px;}
._2b{width:226.448237px;}
._25{width:237.255865px;}
._30{width:244.266786px;}
._32{width:250.922009px;}
._27{width:251.931485px;}
._2d{width:255.344420px;}
._2c{width:298.574930px;}
._26{width:308.813735px;}
._3a{width:435.575212px;}
._34{width:447.056761px;}
._1f{width:462.204686px;}
._20{width:469.247989px;}
._1d{width:481.501406px;}
._1c{width:499.061421px;}
._19{width:522.308480px;}
._1e{width:730.573819px;}
._21{width:819.145764px;}
._22{width:946.311879px;}
._1b{width:1019.349234px;}
._1a{width:1056.434221px;}
._4{width:1196.879058px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(219,65,67);}
.fc2{color:rgb(1,3,2);}
.fc1{color:rgb(255,0,0);}
.fc6{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:23.760900px;}
.fsd{font-size:27.361080px;}
.fsf{font-size:36.001395px;}
.fs9{font-size:38.881485px;}
.fs5{font-size:41.759538px;}
.fsc{font-size:41.761620px;}
.fsb{font-size:45.361800px;}
.fs13{font-size:47.941600px;}
.fs0{font-size:48.241800px;}
.fs10{font-size:50.985391px;}
.fsa{font-size:54.002250px;}
.fs7{font-size:56.882250px;}
.fs2{font-size:59.762250px;}
.fs12{font-size:60.117237px;}
.fs14{font-size:63.362250px;}
.fs8{font-size:66.242700px;}
.fs1{font-size:74.882700px;}
.fs3{font-size:77.763154px;}
.fs11{font-size:81.363150px;}
.fs6{font-size:95.763600px;}
.fs4{font-size:180.007191px;}
.y112{bottom:-11.519990px;}
.y0{bottom:0.000000px;}
.y136{bottom:1.259994px;}
.y142{bottom:1.439998px;}
.y129{bottom:1.439999px;}
.y130{bottom:1.440016px;}
.y12b{bottom:1.979993px;}
.y145{bottom:1.980010px;}
.y13e{bottom:2.159981px;}
.y132{bottom:2.159998px;}
.y139{bottom:2.160015px;}
.y12d{bottom:2.699993px;}
.y147{bottom:2.700027px;}
.y49{bottom:2.879998px;}
.yfe{bottom:3.419975px;}
.ycc{bottom:3.419992px;}
.yd1{bottom:3.420010px;}
.ye7{bottom:3.420045px;}
.yd7{bottom:3.600014px;}
.yce{bottom:4.139992px;}
.yea{bottom:4.319961px;}
.yf0{bottom:4.319962px;}
.yd3{bottom:4.319996px;}
.yd9{bottom:4.319997px;}
.yee{bottom:4.320029px;}
.ye8{bottom:4.320030px;}
.yb{bottom:4.679995px;}
.y8{bottom:4.680000px;}
.y105{bottom:4.860008px;}
.ydc{bottom:5.040012px;}
.yf2{bottom:5.040046px;}
.yb6{bottom:6.480010px;}
.yac{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;}
.y126{bottom:110.520127px;}
.y161{bottom:110.700028px;}
.y191{bottom:111.960091px;}
.y10{bottom:115.572842px;}
.y1e1{bottom:119.160049px;}
.y21d{bottom:121.140060px;}
.yc8{bottom:126.180039px;}
.y9e{bottom:127.080093px;}
.ye{bottom:127.800041px;}
.y125{bottom:131.580093px;}
.y160{bottom:131.760064px;}
.y190{bottom:133.020058px;}
.y1e0{bottom:133.380066px;}
.y21c{bottom:135.360077px;}
.y1a8{bottom:141.660049px;}
.y104{bottom:141.840088px;}
.y106{bottom:146.700096px;}
.yc7{bottom:147.240074px;}
.y1df{bottom:147.600083px;}
.y9d{bottom:148.320099px;}
.y21b{bottom:149.580093px;}
.y15f{bottom:152.640060px;}
.y18f{bottom:154.080093px;}
.y1a7{bottom:154.980079px;}
.y124{bottom:167.760064px;}
.y1a6{bottom:168.300041px;}
.yc6{bottom:168.480079px;}
.y9c{bottom:169.380066px;}
.y21a{bottom:171.180039px;}
.y15e{bottom:173.700096px;}
.y18e{bottom:174.960091px;}
.y1a5{bottom:181.620072px;}
.y1de{bottom:183.600083px;}
.y219{bottom:185.400055px;}
.y123{bottom:188.820099px;}
.yc5{bottom:189.540047px;}
.y9b{bottom:190.440033px;}
.y15d{bottom:194.760064px;}
.y18d{bottom:196.020058px;}
.y103{bottom:196.920043px;}
.y1dd{bottom:197.820099px;}
.y218{bottom:199.620072px;}
.y1a4{bottom:199.980079px;}
.y101{bottom:201.960091px;}
.y122{bottom:209.880066px;}
.yc4{bottom:210.780052px;}
.y9a{bottom:211.680039px;}
.y1dc{bottom:212.040047px;}
.y217{bottom:213.840088px;}
.y15c{bottom:215.640060px;}
.y18c{bottom:217.080093px;}
.y1a3{bottom:217.260064px;}
.y102{bottom:224.460091px;}
.y1a2{bottom:230.580093px;}
.yc3{bottom:231.840088px;}
.y99{bottom:232.740074px;}
.y1db{bottom:233.640060px;}
.y216{bottom:235.620072px;}
.y15b{bottom:236.700096px;}
.y18b{bottom:237.960091px;}
.y1a1{bottom:243.900055px;}
.y1da{bottom:247.860077px;}
.y215{bottom:249.840088px;}
.y100{bottom:252.000068px;}
.yc2{bottom:252.900055px;}
.y98{bottom:253.980079px;}
.y1a0{bottom:257.220085px;}
.y15a{bottom:257.760064px;}
.y18a{bottom:259.020058px;}
.y121{bottom:263.520058px;}
.y214{bottom:264.060036px;}
.y1d9{bottom:269.640060px;}
.y19f{bottom:270.540047px;}
.yc1{bottom:274.140060px;}
.y97{bottom:275.040047px;}
.y159{bottom:278.640060px;}
.yff{bottom:279.540047px;}
.y189{bottom:280.080093px;}
.y19e{bottom:283.860077px;}
.yfc{bottom:284.400055px;}
.y213{bottom:285.840088px;}
.yc0{bottom:295.200096px;}
.y96{bottom:296.100083px;}
.y19d{bottom:297.180039px;}
.y158{bottom:299.700096px;}
.y212{bottom:300.060036px;}
.y188{bottom:300.960091px;}
.y120{bottom:301.680039px;}
.y1d8{bottom:305.640060px;}
.yfd{bottom:307.080093px;}
.y19c{bottom:310.500068px;}
.y47{bottom:313.740074px;}
.ybf{bottom:316.440033px;}
.y95{bottom:317.340088px;}
.y1d7{bottom:319.860077px;}
.y157{bottom:320.760064px;}
.y211{bottom:321.660049px;}
.y187{bottom:322.020058px;}
.y19b{bottom:323.820099px;}
.y46{bottom:329.400055px;}
.yfb{bottom:334.440033px;}
.y210{bottom:335.880066px;}
.y19a{bottom:337.140060px;}
.y94{bottom:338.400055px;}
.y1d6{bottom:341.460091px;}
.y156{bottom:341.640060px;}
.y186{bottom:343.080093px;}
.y45{bottom:343.620072px;}
.y11f{bottom:349.560036px;}
.y20f{bottom:350.100083px;}
.y199{bottom:350.460091px;}
.yf9{bottom:353.340088px;}
.ybe{bottom:354.420043px;}
.y1d5{bottom:355.680039px;}
.y44{bottom:357.840088px;}
.y93{bottom:359.640060px;}
.yfa{bottom:361.980079px;}
.y155{bottom:362.700096px;}
.y185{bottom:363.960091px;}
.y1d4{bottom:369.900055px;}
.y20e{bottom:371.880066px;}
.y43{bottom:372.060036px;}
.ybd{bottom:379.800041px;}
.y92{bottom:380.700096px;}
.y198{bottom:382.320099px;}
.y154{bottom:383.760064px;}
.y184{bottom:385.020058px;}
.yf8{bottom:386.640060px;}
.y42{bottom:387.000068px;}
.y11e{bottom:387.720085px;}
.y1d3{bottom:391.680039px;}
.y20d{bottom:393.660049px;}
.y91{bottom:401.760064px;}
.y153{bottom:404.640060px;}
.y41{bottom:405.000068px;}
.y1d2{bottom:405.900055px;}
.y183{bottom:406.080093px;}
.y20c{bottom:407.880066px;}
.ybb{bottom:411.120072px;}
.y197{bottom:415.620072px;}
.y1d1{bottom:420.120072px;}
.y40{bottom:421.020058px;}
.y20b{bottom:422.100083px;}
.y90{bottom:423.000068px;}
.y6b{bottom:425.700096px;}
.yf7{bottom:425.880066px;}
.y182{bottom:426.960091px;}
.y11d{bottom:434.880066px;}
.y196{bottom:436.680039px;}
.y3f{bottom:437.040047px;}
.y6a{bottom:439.740074px;}
.y1d0{bottom:441.900055px;}
.ybc{bottom:442.620072px;}
.y20a{bottom:443.700096px;}
.y8f{bottom:444.060036px;}
.y152{bottom:446.760064px;}
.yf6{bottom:446.940033px;}
.y181{bottom:448.020058px;}
.y3e{bottom:452.880066px;}
.y69{bottom:453.060036px;}
.y1cf{bottom:456.120072px;}
.y195{bottom:456.480079px;}
.y209{bottom:457.920043px;}
.y8e{bottom:465.300041px;}
.y151{bottom:467.640060px;}
.yf5{bottom:468.180039px;}
.y3d{bottom:468.900055px;}
.y180{bottom:469.080093px;}
.y194{bottom:469.800041px;}
.y208{bottom:472.140060px;}
.y68{bottom:475.020058px;}
.yba{bottom:475.560036px;}
.y1ce{bottom:477.720085px;}
.y11c{bottom:482.940033px;}
.y193{bottom:483.120072px;}
.y3c{bottom:484.920043px;}
.y8d{bottom:486.360077px;}
.y150{bottom:488.700096px;}
.yf4{bottom:489.240074px;}
.y17f{bottom:489.960091px;}
.y1cd{bottom:491.940033px;}
.y207{bottom:493.920043px;}
.y192{bottom:496.440033px;}
.y67{bottom:496.800041px;}
.y3b{bottom:500.940033px;}
.yb9{bottom:505.440033px;}
.y1cc{bottom:506.160049px;}
.yb7{bottom:506.340088px;}
.y8c{bottom:507.420043px;}
.y206{bottom:508.140060px;}
.y14f{bottom:509.760064px;}
.y17e{bottom:511.020058px;}
.y3a{bottom:516.960091px;}
.yf1{bottom:517.680039px;}
.y66{bottom:518.760064px;}
.y11b{bottom:520.920043px;}
.yf3{bottom:522.720085px;}
.y1cb{bottom:527.940033px;}
.y8b{bottom:528.660049px;}
.y205{bottom:529.920043px;}
.y14e{bottom:530.640060px;}
.y17d{bottom:532.080093px;}
.y39{bottom:532.980079px;}
.yb8{bottom:536.940033px;}
.y65{bottom:540.900055px;}
.y1ca{bottom:542.160049px;}
.y204{bottom:544.140060px;}
.yef{bottom:545.220085px;}
.y38{bottom:549.000068px;}
.y8a{bottom:549.720085px;}
.y17c{bottom:552.960091px;}
.y64{bottom:563.040047px;}
.y1c9{bottom:563.940033px;}
.y37{bottom:565.020058px;}
.y203{bottom:565.740074px;}
.y11a{bottom:568.620072px;}
.yb5{bottom:569.160049px;}
.y89{bottom:570.960091px;}
.yed{bottom:572.760064px;}
.y14d{bottom:573.300041px;}
.y239{bottom:573.840088px;}
.y17b{bottom:574.020058px;}
.yeb{bottom:577.800041px;}
.y1c8{bottom:578.160049px;}
.y202{bottom:579.960091px;}
.y36{bottom:580.860077px;}
.y63{bottom:585.900055px;}
.y88{bottom:592.020058px;}
.y118{bottom:592.200096px;}
.y1c7{bottom:592.380066px;}
.y201{bottom:594.180039px;}
.y17a{bottom:595.080093px;}
.y35{bottom:596.880066px;}
.yec{bottom:600.300041px;}
.yb4{bottom:601.380066px;}
.y62{bottom:608.580093px;}
.y34{bottom:612.900055px;}
.y87{bottom:613.080093px;}
.y179{bottom:615.960091px;}
.y119{bottom:616.140060px;}
.y14c{bottom:618.300041px;}
.y238{bottom:623.340088px;}
.yb3{bottom:626.400055px;}
.ye9{bottom:627.840088px;}
.y33{bottom:628.920043px;}
.y200{bottom:630.180039px;}
.y61{bottom:630.540047px;}
.y1c6{bottom:632.340088px;}
.yb1{bottom:632.880066px;}
.y86{bottom:634.320099px;}
.y178{bottom:637.020058px;}
.y1ff{bottom:644.400055px;}
.y32{bottom:645.300041px;}
.y117{bottom:646.020058px;}
.y60{bottom:649.800041px;}
.y85{bottom:655.380066px;}
.y177{bottom:658.080093px;}
.y237{bottom:658.620072px;}
.ye5{bottom:660.420043px;}
.y31{bottom:663.660049px;}
.yb2{bottom:664.200096px;}
.y1fe{bottom:666.180039px;}
.y14b{bottom:666.360077px;}
.y5f{bottom:667.260064px;}
.y1c5{bottom:672.480079px;}
.y236{bottom:672.840088px;}
.y84{bottom:676.620072px;}
.y176{bottom:678.960091px;}
.y1fd{bottom:680.400055px;}
.y30{bottom:682.020058px;}
.ye6{bottom:682.920043px;}
.y116{bottom:685.080093px;}
.y1c4{bottom:685.800041px;}
.y14a{bottom:687.600083px;}
.y235{bottom:694.620072px;}
.yb0{bottom:697.140060px;}
.y83{bottom:697.680073px;}
.y1c3{bottom:699.120072px;}
.y175{bottom:700.020058px;}
.y5e{bottom:700.200061px;}
.y2f{bottom:700.380066px;}
.y1fc{bottom:702.000068px;}
.y115{bottom:706.320065px;}
.y149{bottom:708.660049px;}
.y234{bottom:708.840054px;}
.ye4{bottom:710.460056px;}
.y1c2{bottom:712.440067px;}
.y1fb{bottom:716.220051px;}
.y2e{bottom:718.380066px;}
.y82{bottom:718.920078px;}
.y174{bottom:721.080059px;}
.y233{bottom:723.060070px;}
.y5d{bottom:724.860077px;}
.y1c1{bottom:725.760064px;}
.yaf{bottom:727.200061px;}
.y114{bottom:727.380066px;}
.yad{bottom:727.920078px;}
.ye2{bottom:729.180073px;}
.y148{bottom:729.720051px;}
.y1fa{bottom:730.440067px;}
.y2d{bottom:734.220051px;}
.y5c{bottom:734.400055px;}
.ye3{bottom:738.000068px;}
.y81{bottom:739.980079px;}
.y173{bottom:741.960056px;}
.y232{bottom:744.660049px;}
.y5b{bottom:747.720051px;}
.y113{bottom:748.440067px;}
.y2c{bottom:750.240074px;}
.y1c0{bottom:751.680073px;}
.y1f9{bottom:752.220051px;}
.y146{bottom:758.340054px;}
.yae{bottom:758.520058px;}
.y231{bottom:758.880066px;}
.y80{bottom:761.040081px;}
.ye1{bottom:762.660049px;}
.y172{bottom:763.020058px;}
.y5a{bottom:764.820065px;}
.y2b{bottom:766.260064px;}
.y1f8{bottom:766.440067px;}
.y230{bottom:773.100083px;}
.y59{bottom:774.360077px;}
.y111{bottom:777.060070px;}
.y1f7{bottom:780.660049px;}
.y2a{bottom:782.280052px;}
.y144{bottom:783.720051px;}
.y171{bottom:784.080059px;}
.yab{bottom:786.780052px;}
.y58{bottom:787.500068px;}
.yaa{bottom:790.740074px;}
.y22f{bottom:794.880066px;}
.y29{bottom:798.300076px;}
.y57{bottom:799.920078px;}
.ye0{bottom:801.720051px;}
.y1f6{bottom:802.440067px;}
.y7f{bottom:803.340054px;}
.y170{bottom:804.960056px;}
.y1bf{bottom:805.680073px;}
.y143{bottom:808.920078px;}
.y22e{bottom:809.100083px;}
.y56{bottom:812.340054px;}
.y140{bottom:812.880066px;}
.y28{bottom:814.320065px;}
.y110{bottom:819.720051px;}
.ya9{bottom:822.240074px;}
.ydf{bottom:822.780052px;}
.y22d{bottom:823.320065px;}
.y1f5{bottom:824.040081px;}
.y7e{bottom:824.580059px;}
.y16f{bottom:826.020058px;}
.y55{bottom:828.540081px;}
.y27{bottom:830.340054px;}
.y141{bottom:834.300076px;}
.y54{bottom:837.360077px;}
.y1be{bottom:837.900055px;}
.y1f4{bottom:838.260064px;}
.yde{bottom:843.840054px;}
.y22c{bottom:845.100083px;}
.y7d{bottom:845.640060px;}
.y26{bottom:846.360077px;}
.y16e{bottom:847.080059px;}
.ya8{bottom:848.700061px;}
.y53{bottom:849.780052px;}
.y1bd{bottom:851.220051px;}
.y1f3{bottom:852.480079px;}
.y10d{bottom:853.740074px;}
.y10f{bottom:854.280052px;}
.y22b{bottom:859.320065px;}
.y13f{bottom:859.680073px;}
.y25{bottom:862.200061px;}
.y1bc{bottom:864.540081px;}
.y7c{bottom:866.700061px;}
.y16d{bottom:867.960056px;}
.ydb{bottom:872.460056px;}
.y22a{bottom:873.540081px;}
.y1f2{bottom:874.260064px;}
.y52{bottom:874.620072px;}
.ydd{bottom:877.500068px;}
.y24{bottom:878.220051px;}
.y1bb{bottom:882.900055px;}
.y13d{bottom:885.060070px;}
.y51{bottom:887.040081px;}
.y7b{bottom:887.940067px;}
.y10e{bottom:888.300076px;}
.y1f1{bottom:888.480079px;}
.y13b{bottom:889.020058px;}
.y23{bottom:894.240074px;}
.y229{bottom:895.140060px;}
.yda{bottom:900.000068px;}
.y50{bottom:903.240074px;}
.y1ba{bottom:905.040081px;}
.y7a{bottom:909.000068px;}
.y228{bottom:909.360077px;}
.y16c{bottom:910.080059px;}
.y22{bottom:910.260064px;}
.y13c{bottom:910.440067px;}
.y4f{bottom:917.100083px;}
.y1b9{bottom:922.320065px;}
.y10c{bottom:923.040081px;}
.y1f0{bottom:924.480079px;}
.y13a{bottom:925.200061px;}
.y21{bottom:926.280052px;}
.y4e{bottom:927.180073px;}
.yd8{bottom:927.540081px;}
.y79{bottom:930.240074px;}
.y16b{bottom:930.960056px;}
.y227{bottom:931.140060px;}
.yd5{bottom:932.580059px;}
.y1b8{bottom:935.640060px;}
.y1ef{bottom:938.700061px;}
.y4d{bottom:940.320065px;}
.y20{bottom:942.300076px;}
.y226{bottom:945.360077px;}
.y1b7{bottom:948.960056px;}
.y138{bottom:950.580059px;}
.y78{bottom:951.300076px;}
.y16a{bottom:952.020058px;}
.y4c{bottom:952.740074px;}
.yd6{bottom:955.080059px;}
.y109{bottom:957.060070px;}
.y10b{bottom:957.420078px;}
.y1f{bottom:958.320065px;}
.y225{bottom:959.580059px;}
.y1ee{bottom:960.300076px;}
.y1b6{bottom:962.280053px;}
.y4b{bottom:965.160049px;}
.y77{bottom:972.360077px;}
.y169{bottom:973.080059px;}
.y1ed{bottom:974.520058px;}
.y1b5{bottom:975.600065px;}
.y137{bottom:975.960074px;}
.y4a{bottom:977.760064px;}
.y1e{bottom:978.300058px;}
.y134{bottom:979.920061px;}
.y224{bottom:981.360060px;}
.yd4{bottom:982.620072px;}
.y48{bottom:988.740074px;}
.y1b4{bottom:988.920061px;}
.y10a{bottom:991.440067px;}
.y76{bottom:993.600065px;}
.y168{bottom:993.960074px;}
.y223{bottom:995.580059px;}
.y135{bottom:1001.340070px;}
.y1b3{bottom:1007.280069px;}
.y222{bottom:1009.800058px;}
.yd2{bottom:1010.160067px;}
.y1ec{bottom:1010.520058px;}
.y1d{bottom:1012.500068px;}
.y75{bottom:1014.660067px;}
.y167{bottom:1015.020058px;}
.ycf{bottom:1015.200061px;}
.y1b2{bottom:1024.560070px;}
.y1eb{bottom:1024.740074px;}
.y108{bottom:1026.360060px;}
.y133{bottom:1026.720068px;}
.y221{bottom:1031.400072px;}
.y74{bottom:1035.900072px;}
.y166{bottom:1036.080059px;}
.yd0{bottom:1037.700061px;}
.y1b1{bottom:1037.880066px;}
.y1ea{bottom:1038.960074px;}
.y1c{bottom:1042.920061px;}
.y107{bottom:1043.100065px;}
.y220{bottom:1045.620072px;}
.y1b0{bottom:1051.200061px;}
.y131{bottom:1051.920061px;}
.ya7{bottom:1053.900072px;}
.y12e{bottom:1055.880066px;}
.y73{bottom:1056.960074px;}
.y1e9{bottom:1060.740074px;}
.y1af{bottom:1064.520058px;}
.ycd{bottom:1065.240074px;}
.y21f{bottom:1067.400072px;}
.y1b{bottom:1070.100065px;}
.y1e8{bottom:1074.960074px;}
.y12f{bottom:1077.300058px;}
.y1ae{bottom:1077.840070px;}
.y72{bottom:1078.020058px;}
.ya6{bottom:1080.900072px;}
.y21e{bottom:1081.620072px;}
.yca{bottom:1083.960074px;}
.y1e7{bottom:1089.180073px;}
.y1ad{bottom:1091.160067px;}
.y12c{bottom:1092.240074px;}
.ycb{bottom:1092.780069px;}
.y1a{bottom:1098.900072px;}
.y165{bottom:1099.080059px;}
.y71{bottom:1099.260064px;}
.ya5{bottom:1101.960074px;}
.y1e6{bottom:1103.400072px;}
.y1ac{bottom:1109.520058px;}
.yc9{bottom:1117.260064px;}
.y12a{bottom:1117.620072px;}
.y164{bottom:1119.960065px;}
.y70{bottom:1120.320065px;}
.ya4{bottom:1123.200061px;}
.y1e5{bottom:1125.000068px;}
.yd{bottom:1131.840063px;}
.y127{bottom:1134.180064px;}
.y1e4{bottom:1139.220068px;}
.y163{bottom:1141.020066px;}
.y1ab{bottom:1141.740066px;}
.y128{bottom:1142.820065px;}
.ya3{bottom:1144.260064px;}
.yc{bottom:1149.660067px;}
.y1e3{bottom:1153.440067px;}
.y1aa{bottom:1155.060070px;}
.y6f{bottom:1159.560070px;}
.y162{bottom:1162.080068px;}
.ya2{bottom:1165.320065px;}
.y1e2{bottom:1167.660067px;}
.y1a9{bottom:1168.380066px;}
.ya{bottom:1173.780069px;}
.y9{bottom:1178.460065px;}
.y4{bottom:1187.280069px;}
.ya1{bottom:1187.640069px;}
.y7{bottom:1196.640065px;}
.y6{bottom:1201.320065px;}
.y6e{bottom:1201.500065px;}
.y3{bottom:1201.680064px;}
.ya0{bottom:1202.040064px;}
.y2{bottom:1215.720068px;}
.y6d{bottom:1216.080068px;}
.y9f{bottom:1216.620067px;}
.y5{bottom:1223.820065px;}
.y6c{bottom:1230.300067px;}
.y1{bottom:1230.480067px;}
.h35{height:1.980010px;}
.h3b{height:12.599997px;}
.h3d{height:12.600013px;}
.h3e{height:12.779983px;}
.h36{height:12.780000px;}
.h39{height:12.780001px;}
.h37{height:13.319995px;}
.h11{height:13.319997px;}
.h3f{height:13.320029px;}
.h3a{height:13.500000px;}
.h38{height:14.039996px;}
.h40{height:14.040012px;}
.h3c{height:14.220017px;}
.h22{height:14.759994px;}
.h2a{height:14.759996px;}
.h25{height:14.760012px;}
.h2c{height:14.760029px;}
.h30{height:14.939964px;}
.h2e{height:14.940033px;}
.h1f{height:15.300007px;}
.h26{height:15.479993px;}
.h24{height:15.479994px;}
.h21{height:15.480010px;}
.h2b{height:15.480011px;}
.h2d{height:15.659980px;}
.h28{height:15.659981px;}
.h27{height:15.659998px;}
.h31{height:15.660050px;}
.h32{height:16.199958px;}
.h2f{height:16.379997px;}
.h29{height:16.379998px;}
.h20{height:17.639992px;}
.h8{height:22.499995px;}
.h6{height:22.500000px;}
.h16{height:23.927047px;}
.h19{height:25.137693px;}
.h15{height:26.622331px;}
.h18{height:27.293211px;}
.h17{height:27.293346px;}
.hb{height:29.158271px;}
.h4{height:33.684460px;}
.h14{height:39.047115px;}
.h1a{height:40.634056px;}
.h12{height:42.413283px;}
.h13{height:44.137031px;}
.h42{height:44.825396px;}
.h2{height:45.106083px;}
.h1e{height:45.829710px;}
.h1b{height:45.926194px;}
.h3{height:46.891030px;}
.h43{height:47.671340px;}
.h23{height:48.436121px;}
.h1c{height:48.538092px;}
.h10{height:50.492104px;}
.hd{height:54.038138px;}
.h41{height:56.774138px;}
.h34{height:57.111375px;}
.hf{height:58.148669px;}
.he{height:61.936925px;}
.h44{height:62.665265px;}
.h5{height:71.288330px;}
.h7{height:72.860867px;}
.h9{height:76.907760px;}
.h1d{height:77.294993px;}
.hc{height:91.166947px;}
.ha{height:121.909167px;}
.h33{height:123.158142px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3f{width:2.699960px;}
.w24{width:2.700027px;}
.w36{width:2.879998px;}
.w3c{width:3.059967px;}
.w2a{width:3.240004px;}
.w28{width:3.240006px;}
.w42{width:3.780001px;}
.w1b{width:4.320004px;}
.w12{width:4.500000px;}
.w4{width:5.579991px;}
.w18{width:5.939964px;}
.w39{width:5.939965px;}
.w8{width:5.939981px;}
.w14{width:5.939998px;}
.wa{width:5.939999px;}
.wc{width:5.940033px;}
.w6{width:6.299973px;}
.w33{width:6.299990px;}
.w3e{width:6.300007px;}
.w5{width:6.300040px;}
.w11{width:6.840002px;}
.w35{width:7.199993px;}
.w30{width:7.200002px;}
.w2{width:8.100014px;}
.w20{width:8.280000px;}
.w41{width:8.280001px;}
.w9{width:12.060001px;}
.w25{width:12.600014px;}
.w1a{width:14.039996px;}
.w1d{width:14.759994px;}
.w40{width:14.760063px;}
.w26{width:15.480011px;}
.w19{width:15.659981px;}
.w2c{width:20.699960px;}
.w3a{width:20.700028px;}
.wd{width:20.879998px;}
.w15{width:26.819995px;}
.w17{width:26.819997px;}
.w16{width:26.820029px;}
.w38{width:26.820030px;}
.w1c{width:28.259994px;}
.w1e{width:28.260002px;}
.w2b{width:29.339985px;}
.wb{width:32.939964px;}
.wf{width:32.939999px;}
.w10{width:33.120002px;}
.w34{width:33.659998px;}
.w13{width:35.820005px;}
.w46{width:39.420010px;}
.w23{width:39.420044px;}
.w2f{width:40.140000px;}
.w31{width:46.079990px;}
.we{width:46.080025px;}
.w37{width:52.560001px;}
.w3b{width:55.440016px;}
.w3{width:81.360008px;}
.w27{width:87.299990px;}
.w43{width:87.479993px;}
.w7{width:106.740006px;}
.w32{width:114.479994px;}
.w2d{width:122.760012px;}
.w44{width:136.620002px;}
.w29{width:136.800007px;}
.w2e{width:136.979976px;}
.w3d{width:141.840002px;}
.w1f{width:163.439999px;}
.w45{width:185.759994px;}
.w22{width:185.939999px;}
.w21{width:259.739989px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7c{left:1.980003px;}
.x6{left:54.000000px;}
.x2d{left:58.860000px;}
.x7b{left:60.299998px;}
.x7d{left:62.280001px;}
.x19{left:67.680000px;}
.x24{left:69.840002px;}
.xa{left:79.560001px;}
.xf{left:82.439999px;}
.x12{left:87.659998px;}
.x1{left:89.640000px;}
.x54{left:94.140000px;}
.x7{left:102.959997px;}
.x14{left:106.920001px;}
.x53{left:123.480002px;}
.x2e{left:124.920001px;}
.x64{left:126.900003px;}
.x2f{left:131.760003px;}
.x30{left:136.260003px;}
.x40{left:138.959997px;}
.x41{left:143.280001px;}
.x1a{left:149.759994px;}
.x7e{left:153.000000px;}
.x65{left:160.560001px;}
.x13{left:162.180005px;}
.x10{left:163.800007px;}
.x63{left:168.120002px;}
.x66{left:170.639992px;}
.x31{left:172.080008px;}
.x85{left:176.400003px;}
.x1d{left:179.099997px;}
.x11{left:183.240006px;}
.x16{left:191.340002px;}
.x78{left:195.479994px;}
.x17{left:213.300007px;}
.x48{left:217.439999px;}
.x67{left:223.199993px;}
.x49{left:225.719999px;}
.x86{left:233.819996px;}
.x42{left:239.580008px;}
.x32{left:241.740006px;}
.x8{left:244.263088px;}
.xc5{left:260.819996px;}
.xc{left:266.400003px;}
.x33{left:268.560001px;}
.x43{left:270.900003px;}
.x9a{left:275.400003px;}
.x88{left:276.840002px;}
.x93{left:278.099997px;}
.x89{left:281.520006px;}
.x94{left:282.960005px;}
.x1e{left:285.840002px;}
.x8a{left:287.460005px;}
.x7f{left:289.620002px;}
.x80{left:292.860008px;}
.x95{left:294.660015px;}
.xc1{left:300.600013px;}
.xbf{left:302.399987px;}
.xae{left:304.560001px;}
.xb1{left:311.759994px;}
.x4d{left:313.019989px;}
.x4e{left:316.259994px;}
.xca{left:318.060001px;}
.x81{left:322.199993px;}
.x34{left:326.339985px;}
.xc2{left:327.420010px;}
.xb2{left:331.019989px;}
.x9c{left:332.100014px;}
.xc6{left:336.420010px;}
.x68{left:339.300007px;}
.x69{left:343.800007px;}
.xa8{left:345.779983px;}
.x51{left:348.480011px;}
.x35{left:353.160015px;}
.x91{left:360.000000px;}
.x92{left:364.680005px;}
.xc3{left:366.660015px;}
.xa9{left:369.180005px;}
.x6a{left:370.620002px;}
.xe{left:372.420010px;}
.xbe{left:377.279983px;}
.xb5{left:378.360008px;}
.xb6{left:383.040012px;}
.xaf{left:389.879998px;}
.xb7{left:394.920010px;}
.x8f{left:403.019989px;}
.xac{left:404.279983px;}
.x52{left:408.779983px;}
.xd1{left:412.199993px;}
.xcd{left:413.279983px;}
.xad{left:414.899987px;}
.x6b{left:416.160015px;}
.x29{left:419.939999px;}
.x36{left:422.819996px;}
.x44{left:425.160015px;}
.xc8{left:430.379998px;}
.xc9{left:435.240006px;}
.xa6{left:436.680005px;}
.xb{left:440.459988px;}
.x96{left:441.899987px;}
.x6c{left:442.980011px;}
.xaa{left:445.680005px;}
.xcb{left:447.300007px;}
.x37{left:449.639992px;}
.xc7{left:451.620002px;}
.x2a{left:452.699993px;}
.x4f{left:456.120002px;}
.xcc{left:459.000000px;}
.xab{left:462.060001px;}
.x8b{left:464.579990px;}
.x15{left:470.879998px;}
.x18{left:473.399987px;}
.x9f{left:475.920010px;}
.x8e{left:478.079990px;}
.xb0{left:479.519989px;}
.x1f{left:483.300007px;}
.x4a{left:485.459988px;}
.xa0{left:487.800007px;}
.x59{left:491.220017px;}
.x5f{left:494.100014px;}
.x6d{left:499.319996px;}
.xb3{left:502.379998px;}
.x99{left:505.439999px;}
.x82{left:507.959988px;}
.xb4{left:513.000000px;}
.xcf{left:514.800007px;}
.xc4{left:518.220017px;}
.x25{left:519.660015px;}
.xd0{left:525.420010px;}
.x60{left:526.860008px;}
.x55{left:527.939999px;}
.x5a{left:531.180005px;}
.x97{left:532.259994px;}
.x2b{left:534.420010px;}
.x38{left:537.480011px;}
.xc0{left:542.519989px;}
.x98{left:543.959988px;}
.x83{left:547.379998px;}
.xd{left:552.600014px;}
.x2{left:561.600014px;}
.x39{left:564.300007px;}
.x9d{left:565.740006px;}
.x2c{left:567.360008px;}
.x9e{left:570.420010px;}
.x84{left:574.920010px;}
.x5b{left:577.259994px;}
.x61{left:581.220017px;}
.xbb{left:583.379998px;}
.x3{left:584.820030px;}
.x6e{left:586.620002px;}
.xbc{left:588.059967px;}
.xd4{left:591.659981px;}
.xb8{left:599.220017px;}
.x20{left:601.740006px;}
.xb9{left:604.080025px;}
.xce{left:610.200027px;}
.xa7{left:612.720017px;}
.x62{left:614.159981px;}
.xba{left:615.779983px;}
.x1b{left:618.299973px;}
.x5{left:625.860008px;}
.x8c{left:628.200027px;}
.x9b{left:630.179970px;}
.x8d{left:632.879998px;}
.x21{left:634.679970px;}
.x3a{left:637.019989px;}
.x87{left:638.639992px;}
.x46{left:640.080025px;}
.xd2{left:641.159981px;}
.x45{left:642.419975px;}
.x26{left:645.480011px;}
.xd3{left:647.100014px;}
.xa4{left:648.179970px;}
.xa5{left:653.220017px;}
.x47{left:654.840019px;}
.x3b{left:657.899987px;}
.x50{left:660.059967px;}
.x90{left:661.500000px;}
.x6f{left:663.120002px;}
.x75{left:666.179970px;}
.x70{left:667.620002px;}
.x79{left:669.059967px;}
.x4b{left:671.399987px;}
.x56{left:672.840019px;}
.xa1{left:674.279983px;}
.x5c{left:676.620002px;}
.xa2{left:678.240006px;}
.xbd{left:679.679970px;}
.xa3{left:682.919975px;}
.x7a{left:688.320030px;}
.x76{left:691.379998px;}
.x71{left:694.440033px;}
.x3c{left:704.879998px;}
.x3d{left:710.820030px;}
.x9{left:723.960023px;}
.x72{left:738.000000px;}
.x73{left:743.940033px;}
.x22{left:754.919975px;}
.x1c{left:765.360008px;}
.x3e{left:766.620002px;}
.x4c{left:769.500000px;}
.x23{left:775.799973px;}
.x3f{left:782.100014px;}
.x27{left:783.179970px;}
.x28{left:789.840019px;}
.x57{left:795.240006px;}
.x77{left:798.659981px;}
.x5d{left:799.919975px;}
.x58{left:801.899987px;}
.x4{left:803.340019px;}
.x5e{left:806.580025px;}
.x74{left:811.080025px;}
@media print{
.v5{vertical-align:-74.880124pt;}
.v3{vertical-align:-13.440060pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.439944pt;}
.v1{vertical-align:21.119996pt;}
.v4{vertical-align:61.440004pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.482024pt;}
.lsa{letter-spacing:0.483277pt;}
.ls19{letter-spacing:0.483281pt;}
.ls1d{letter-spacing:0.831493pt;}
.ls17{letter-spacing:0.831497pt;}
.ls7{letter-spacing:0.831557pt;}
.ls13{letter-spacing:1.133340pt;}
.lsf{letter-spacing:1.236894pt;}
.lse{letter-spacing:1.238326pt;}
.ls5{letter-spacing:1.557874pt;}
.lsc{letter-spacing:1.557994pt;}
.ls0{letter-spacing:2.128950pt;}
.ls14{letter-spacing:166.677990pt;}
.lsb{letter-spacing:178.082736pt;}
.ls1b{letter-spacing:181.282688pt;}
.ls1a{letter-spacing:183.202852pt;}
.ls18{letter-spacing:184.482760pt;}
.ls1f{letter-spacing:185.122776pt;}
.ls1e{letter-spacing:185.122900pt;}
.ls10{letter-spacing:198.677926pt;}
.ls9{letter-spacing:220.322848pt;}
.ls15{letter-spacing:248.597914pt;}
.ls11{letter-spacing:391.317878pt;}
.ls12{letter-spacing:407.318002pt;}
.lsd{letter-spacing:470.037914pt;}
.ls4{letter-spacing:475.042700pt;}
.ls20{letter-spacing:476.437938pt;}
.ls6{letter-spacing:521.762788pt;}
.ls1{letter-spacing:754.703446pt;}
.ls16{letter-spacing:801.442872pt;}
.ls1c{letter-spacing:808.482792pt;}
.ls3{letter-spacing:1281.442812pt;}
.ws2{word-spacing:-160.006392pt;}
.wse{word-spacing:-50.562000pt;}
.wsb{word-spacing:-42.881600pt;}
.ws1{word-spacing:-14.111229pt;}
.ws0{word-spacing:-13.778417pt;}
.wsf{word-spacing:-12.640500pt;}
.wsd{word-spacing:-11.882070pt;}
.ws4{word-spacing:-10.996254pt;}
.wsc{word-spacing:-10.720400pt;}
.wsa{word-spacing:-10.077176pt;}
.ws10{word-spacing:-9.925156pt;}
.ws11{word-spacing:-9.391070pt;}
.ws5{word-spacing:-8.830430pt;}
.ws7{word-spacing:-8.000310pt;}
.ws8{word-spacing:-7.684138pt;}
.ws3{word-spacing:-7.568929pt;}
.ws6{word-spacing:-4.625455pt;}
.ws9{word-spacing:0.000000pt;}
._47{margin-left:-11.017527pt;}
._45{margin-left:-5.860715pt;}
._46{margin-left:-3.149437pt;}
._7{margin-left:-2.140931pt;}
._0{margin-left:-1.114922pt;}
._1{width:0.998436pt;}
._8{width:2.321369pt;}
._5{width:3.489241pt;}
._6{width:5.086718pt;}
._9{width:6.864286pt;}
._2{width:8.087368pt;}
._3{width:9.538947pt;}
._d{width:10.618020pt;}
._48{width:11.620914pt;}
._c{width:12.792186pt;}
._10{width:14.359608pt;}
._f{width:15.522534pt;}
._11{width:16.531262pt;}
._e{width:17.443890pt;}
._13{width:18.505692pt;}
._41{width:19.403658pt;}
._12{width:20.376486pt;}
._51{width:21.541834pt;}
._40{width:23.258520pt;}
._58{width:24.185222pt;}
._17{width:25.078752pt;}
._18{width:26.115600pt;}
._3e{width:28.466406pt;}
._15{width:29.379080pt;}
._14{width:30.286638pt;}
._56{width:32.668075pt;}
._3f{width:33.623730pt;}
._42{width:35.402365pt;}
._3d{width:38.743296pt;}
._3c{width:41.865336pt;}
._43{width:47.377880pt;}
._4c{width:56.003370pt;}
._44{width:56.934099pt;}
._4b{width:58.445161pt;}
._4a{width:59.686897pt;}
._57{width:60.693431pt;}
._4d{width:77.361833pt;}
._4e{width:78.812084pt;}
._54{width:87.475315pt;}
._50{width:88.507622pt;}
._55{width:91.574335pt;}
._4f{width:93.858439pt;}
._16{width:111.835213pt;}
._33{width:114.665398pt;}
._39{width:117.624229pt;}
._a{width:120.840349pt;}
._52{width:127.830050pt;}
._53{width:135.489751pt;}
._28{width:141.624162pt;}
._38{width:143.438952pt;}
._2e{width:145.264626pt;}
._35{width:150.643061pt;}
._2a{width:160.368985pt;}
._37{width:164.747488pt;}
._24{width:169.433262pt;}
._36{width:171.140466pt;}
._29{width:174.499886pt;}
._2f{width:176.107446pt;}
._b{width:180.016957pt;}
._49{width:184.045930pt;}
._23{width:185.625906pt;}
._3b{width:186.577842pt;}
._31{width:187.888392pt;}
._2b{width:201.287322pt;}
._25{width:210.894102pt;}
._30{width:217.126032pt;}
._32{width:223.041786pt;}
._27{width:223.939098pt;}
._2d{width:226.972818pt;}
._2c{width:265.399938pt;}
._26{width:274.501098pt;}
._3a{width:387.177966pt;}
._34{width:397.383787pt;}
._1f{width:410.848610pt;}
._20{width:417.109323pt;}
._1d{width:428.001250pt;}
._1c{width:443.610152pt;}
._19{width:464.274204pt;}
._1e{width:649.398950pt;}
._21{width:728.129568pt;}
._22{width:841.166114pt;}
._1b{width:906.088208pt;}
._1a{width:939.052641pt;}
._4{width:1063.892496pt;}
.fse{font-size:21.120800pt;}
.fsd{font-size:24.320960pt;}
.fsf{font-size:32.001240pt;}
.fs9{font-size:34.561320pt;}
.fs5{font-size:37.119590pt;}
.fsc{font-size:37.121440pt;}
.fsb{font-size:40.321600pt;}
.fs13{font-size:42.614756pt;}
.fs0{font-size:42.881600pt;}
.fs10{font-size:45.320347pt;}
.fsa{font-size:48.002000pt;}
.fs7{font-size:50.562000pt;}
.fs2{font-size:53.122000pt;}
.fs12{font-size:53.437544pt;}
.fs14{font-size:56.322000pt;}
.fs8{font-size:58.882400pt;}
.fs1{font-size:66.562400pt;}
.fs3{font-size:69.122804pt;}
.fs11{font-size:72.322800pt;}
.fs6{font-size:85.123200pt;}
.fs4{font-size:160.006392pt;}
.y112{bottom:-10.239991pt;}
.y0{bottom:0.000000pt;}
.y136{bottom:1.119995pt;}
.y142{bottom:1.279998pt;}
.y129{bottom:1.279999pt;}
.y130{bottom:1.280014pt;}
.y12b{bottom:1.759994pt;}
.y145{bottom:1.760009pt;}
.y13e{bottom:1.919983pt;}
.y132{bottom:1.919998pt;}
.y139{bottom:1.920013pt;}
.y12d{bottom:2.399994pt;}
.y147{bottom:2.400024pt;}
.y49{bottom:2.559998pt;}
.yfe{bottom:3.039978pt;}
.ycc{bottom:3.039993pt;}
.yd1{bottom:3.040009pt;}
.ye7{bottom:3.040040pt;}
.yd7{bottom:3.200012pt;}
.yce{bottom:3.679993pt;}
.yea{bottom:3.839965pt;}
.yf0{bottom:3.839966pt;}
.yd3{bottom:3.839996pt;}
.yd9{bottom:3.839997pt;}
.yee{bottom:3.840026pt;}
.ye8{bottom:3.840027pt;}
.yb{bottom:4.159996pt;}
.y8{bottom:4.160000pt;}
.y105{bottom:4.320007pt;}
.ydc{bottom:4.480011pt;}
.yf2{bottom:4.480041pt;}
.yb6{bottom:5.760009pt;}
.yac{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;}
.y126{bottom:98.240113pt;}
.y161{bottom:98.400025pt;}
.y191{bottom:99.520081pt;}
.y10{bottom:102.731415pt;}
.y1e1{bottom:105.920044pt;}
.y21d{bottom:107.680054pt;}
.yc8{bottom:112.160035pt;}
.y9e{bottom:112.960083pt;}
.ye{bottom:113.600037pt;}
.y125{bottom:116.960083pt;}
.y160{bottom:117.120057pt;}
.y190{bottom:118.240052pt;}
.y1e0{bottom:118.560059pt;}
.y21c{bottom:120.320069pt;}
.y1a8{bottom:125.920044pt;}
.y104{bottom:126.080079pt;}
.y106{bottom:130.400086pt;}
.yc7{bottom:130.880066pt;}
.y1df{bottom:131.200074pt;}
.y9d{bottom:131.840088pt;}
.y21b{bottom:132.960083pt;}
.y15f{bottom:135.680054pt;}
.y18f{bottom:136.960083pt;}
.y1a7{bottom:137.760071pt;}
.y124{bottom:149.120057pt;}
.y1a6{bottom:149.600037pt;}
.yc6{bottom:149.760071pt;}
.y9c{bottom:150.560059pt;}
.y21a{bottom:152.160035pt;}
.y15e{bottom:154.400086pt;}
.y18e{bottom:155.520081pt;}
.y1a5{bottom:161.440064pt;}
.y1de{bottom:163.200074pt;}
.y219{bottom:164.800049pt;}
.y123{bottom:167.840088pt;}
.yc5{bottom:168.480042pt;}
.y9b{bottom:169.280030pt;}
.y15d{bottom:173.120057pt;}
.y18d{bottom:174.240052pt;}
.y103{bottom:175.040039pt;}
.y1dd{bottom:175.840088pt;}
.y218{bottom:177.440064pt;}
.y1a4{bottom:177.760071pt;}
.y101{bottom:179.520081pt;}
.y122{bottom:186.560059pt;}
.yc4{bottom:187.360047pt;}
.y9a{bottom:188.160035pt;}
.y1dc{bottom:188.480042pt;}
.y217{bottom:190.080079pt;}
.y15c{bottom:191.680054pt;}
.y18c{bottom:192.960083pt;}
.y1a3{bottom:193.120057pt;}
.y102{bottom:199.520081pt;}
.y1a2{bottom:204.960083pt;}
.yc3{bottom:206.080079pt;}
.y99{bottom:206.880066pt;}
.y1db{bottom:207.680054pt;}
.y216{bottom:209.440064pt;}
.y15b{bottom:210.400086pt;}
.y18b{bottom:211.520081pt;}
.y1a1{bottom:216.800049pt;}
.y1da{bottom:220.320069pt;}
.y215{bottom:222.080079pt;}
.y100{bottom:224.000061pt;}
.yc2{bottom:224.800049pt;}
.y98{bottom:225.760071pt;}
.y1a0{bottom:228.640076pt;}
.y15a{bottom:229.120057pt;}
.y18a{bottom:230.240052pt;}
.y121{bottom:234.240052pt;}
.y214{bottom:234.720032pt;}
.y1d9{bottom:239.680054pt;}
.y19f{bottom:240.480042pt;}
.yc1{bottom:243.680054pt;}
.y97{bottom:244.480042pt;}
.y159{bottom:247.680054pt;}
.yff{bottom:248.480042pt;}
.y189{bottom:248.960083pt;}
.y19e{bottom:252.320069pt;}
.yfc{bottom:252.800049pt;}
.y213{bottom:254.080079pt;}
.yc0{bottom:262.400086pt;}
.y96{bottom:263.200074pt;}
.y19d{bottom:264.160035pt;}
.y158{bottom:266.400086pt;}
.y212{bottom:266.720032pt;}
.y188{bottom:267.520081pt;}
.y120{bottom:268.160035pt;}
.y1d8{bottom:271.680054pt;}
.yfd{bottom:272.960083pt;}
.y19c{bottom:276.000061pt;}
.y47{bottom:278.880066pt;}
.ybf{bottom:281.280030pt;}
.y95{bottom:282.080079pt;}
.y1d7{bottom:284.320069pt;}
.y157{bottom:285.120057pt;}
.y211{bottom:285.920044pt;}
.y187{bottom:286.240052pt;}
.y19b{bottom:287.840088pt;}
.y46{bottom:292.800049pt;}
.yfb{bottom:297.280030pt;}
.y210{bottom:298.560059pt;}
.y19a{bottom:299.680054pt;}
.y94{bottom:300.800049pt;}
.y1d6{bottom:303.520081pt;}
.y156{bottom:303.680054pt;}
.y186{bottom:304.960083pt;}
.y45{bottom:305.440064pt;}
.y11f{bottom:310.720032pt;}
.y20f{bottom:311.200074pt;}
.y199{bottom:311.520081pt;}
.yf9{bottom:314.080079pt;}
.ybe{bottom:315.040039pt;}
.y1d5{bottom:316.160035pt;}
.y44{bottom:318.080079pt;}
.y93{bottom:319.680054pt;}
.yfa{bottom:321.760071pt;}
.y155{bottom:322.400086pt;}
.y185{bottom:323.520081pt;}
.y1d4{bottom:328.800049pt;}
.y20e{bottom:330.560059pt;}
.y43{bottom:330.720032pt;}
.ybd{bottom:337.600037pt;}
.y92{bottom:338.400086pt;}
.y198{bottom:339.840088pt;}
.y154{bottom:341.120057pt;}
.y184{bottom:342.240052pt;}
.yf8{bottom:343.680054pt;}
.y42{bottom:344.000061pt;}
.y11e{bottom:344.640076pt;}
.y1d3{bottom:348.160035pt;}
.y20d{bottom:349.920044pt;}
.y91{bottom:357.120057pt;}
.y153{bottom:359.680054pt;}
.y41{bottom:360.000061pt;}
.y1d2{bottom:360.800049pt;}
.y183{bottom:360.960083pt;}
.y20c{bottom:362.560059pt;}
.ybb{bottom:365.440064pt;}
.y197{bottom:369.440064pt;}
.y1d1{bottom:373.440064pt;}
.y40{bottom:374.240052pt;}
.y20b{bottom:375.200074pt;}
.y90{bottom:376.000061pt;}
.y6b{bottom:378.400086pt;}
.yf7{bottom:378.560059pt;}
.y182{bottom:379.520081pt;}
.y11d{bottom:386.560059pt;}
.y196{bottom:388.160035pt;}
.y3f{bottom:388.480042pt;}
.y6a{bottom:390.880066pt;}
.y1d0{bottom:392.800049pt;}
.ybc{bottom:393.440064pt;}
.y20a{bottom:394.400086pt;}
.y8f{bottom:394.720032pt;}
.y152{bottom:397.120057pt;}
.yf6{bottom:397.280030pt;}
.y181{bottom:398.240052pt;}
.y3e{bottom:402.560059pt;}
.y69{bottom:402.720032pt;}
.y1cf{bottom:405.440064pt;}
.y195{bottom:405.760071pt;}
.y209{bottom:407.040039pt;}
.y8e{bottom:413.600037pt;}
.y151{bottom:415.680054pt;}
.yf5{bottom:416.160035pt;}
.y3d{bottom:416.800049pt;}
.y180{bottom:416.960083pt;}
.y194{bottom:417.600037pt;}
.y208{bottom:419.680054pt;}
.y68{bottom:422.240052pt;}
.yba{bottom:422.720032pt;}
.y1ce{bottom:424.640076pt;}
.y11c{bottom:429.280030pt;}
.y193{bottom:429.440064pt;}
.y3c{bottom:431.040039pt;}
.y8d{bottom:432.320069pt;}
.y150{bottom:434.400086pt;}
.yf4{bottom:434.880066pt;}
.y17f{bottom:435.520081pt;}
.y1cd{bottom:437.280030pt;}
.y207{bottom:439.040039pt;}
.y192{bottom:441.280030pt;}
.y67{bottom:441.600037pt;}
.y3b{bottom:445.280030pt;}
.yb9{bottom:449.280030pt;}
.y1cc{bottom:449.920044pt;}
.yb7{bottom:450.080079pt;}
.y8c{bottom:451.040039pt;}
.y206{bottom:451.680054pt;}
.y14f{bottom:453.120057pt;}
.y17e{bottom:454.240052pt;}
.y3a{bottom:459.520081pt;}
.yf1{bottom:460.160035pt;}
.y66{bottom:461.120057pt;}
.y11b{bottom:463.040039pt;}
.yf3{bottom:464.640076pt;}
.y1cb{bottom:469.280030pt;}
.y8b{bottom:469.920044pt;}
.y205{bottom:471.040039pt;}
.y14e{bottom:471.680054pt;}
.y17d{bottom:472.960083pt;}
.y39{bottom:473.760071pt;}
.yb8{bottom:477.280030pt;}
.y65{bottom:480.800049pt;}
.y1ca{bottom:481.920044pt;}
.y204{bottom:483.680054pt;}
.yef{bottom:484.640076pt;}
.y38{bottom:488.000061pt;}
.y8a{bottom:488.640076pt;}
.y17c{bottom:491.520081pt;}
.y64{bottom:500.480042pt;}
.y1c9{bottom:501.280030pt;}
.y37{bottom:502.240052pt;}
.y203{bottom:502.880066pt;}
.y11a{bottom:505.440064pt;}
.yb5{bottom:505.920044pt;}
.y89{bottom:507.520081pt;}
.yed{bottom:509.120057pt;}
.y14d{bottom:509.600037pt;}
.y239{bottom:510.080079pt;}
.y17b{bottom:510.240052pt;}
.yeb{bottom:513.600037pt;}
.y1c8{bottom:513.920044pt;}
.y202{bottom:515.520081pt;}
.y36{bottom:516.320069pt;}
.y63{bottom:520.800049pt;}
.y88{bottom:526.240052pt;}
.y118{bottom:526.400086pt;}
.y1c7{bottom:526.560059pt;}
.y201{bottom:528.160035pt;}
.y17a{bottom:528.960083pt;}
.y35{bottom:530.560059pt;}
.yec{bottom:533.600037pt;}
.yb4{bottom:534.560059pt;}
.y62{bottom:540.960083pt;}
.y34{bottom:544.800049pt;}
.y87{bottom:544.960083pt;}
.y179{bottom:547.520081pt;}
.y119{bottom:547.680054pt;}
.y14c{bottom:549.600037pt;}
.y238{bottom:554.080079pt;}
.yb3{bottom:556.800049pt;}
.ye9{bottom:558.080079pt;}
.y33{bottom:559.040039pt;}
.y200{bottom:560.160035pt;}
.y61{bottom:560.480042pt;}
.y1c6{bottom:562.080079pt;}
.yb1{bottom:562.560059pt;}
.y86{bottom:563.840088pt;}
.y178{bottom:566.240052pt;}
.y1ff{bottom:572.800049pt;}
.y32{bottom:573.600037pt;}
.y117{bottom:574.240052pt;}
.y60{bottom:577.600037pt;}
.y85{bottom:582.560059pt;}
.y177{bottom:584.960083pt;}
.y237{bottom:585.440064pt;}
.ye5{bottom:587.040039pt;}
.y31{bottom:589.920044pt;}
.yb2{bottom:590.400086pt;}
.y1fe{bottom:592.160035pt;}
.y14b{bottom:592.320069pt;}
.y5f{bottom:593.120057pt;}
.y1c5{bottom:597.760071pt;}
.y236{bottom:598.080079pt;}
.y84{bottom:601.440064pt;}
.y176{bottom:603.520081pt;}
.y1fd{bottom:604.800049pt;}
.y30{bottom:606.240052pt;}
.ye6{bottom:607.040039pt;}
.y116{bottom:608.960083pt;}
.y1c4{bottom:609.600037pt;}
.y14a{bottom:611.200074pt;}
.y235{bottom:617.440064pt;}
.yb0{bottom:619.680054pt;}
.y83{bottom:620.160065pt;}
.y1c3{bottom:621.440064pt;}
.y175{bottom:622.240052pt;}
.y5e{bottom:622.400055pt;}
.y2f{bottom:622.560059pt;}
.y1fc{bottom:624.000061pt;}
.y115{bottom:627.840058pt;}
.y149{bottom:629.920044pt;}
.y234{bottom:630.080048pt;}
.ye4{bottom:631.520050pt;}
.y1c2{bottom:633.280060pt;}
.y1fb{bottom:636.640046pt;}
.y2e{bottom:638.560059pt;}
.y82{bottom:639.040070pt;}
.y174{bottom:640.960053pt;}
.y233{bottom:642.720063pt;}
.y5d{bottom:644.320069pt;}
.y1c1{bottom:645.120057pt;}
.yaf{bottom:646.400055pt;}
.y114{bottom:646.560059pt;}
.yad{bottom:647.040070pt;}
.ye2{bottom:648.160065pt;}
.y148{bottom:648.640046pt;}
.y1fa{bottom:649.280060pt;}
.y2d{bottom:652.640046pt;}
.y5c{bottom:652.800049pt;}
.ye3{bottom:656.000061pt;}
.y81{bottom:657.760071pt;}
.y173{bottom:659.520050pt;}
.y232{bottom:661.920044pt;}
.y5b{bottom:664.640046pt;}
.y113{bottom:665.280060pt;}
.y2c{bottom:666.880066pt;}
.y1c0{bottom:668.160065pt;}
.y1f9{bottom:668.640046pt;}
.y146{bottom:674.080048pt;}
.yae{bottom:674.240052pt;}
.y231{bottom:674.560059pt;}
.y80{bottom:676.480072pt;}
.ye1{bottom:677.920044pt;}
.y172{bottom:678.240052pt;}
.y5a{bottom:679.840058pt;}
.y2b{bottom:681.120057pt;}
.y1f8{bottom:681.280060pt;}
.y230{bottom:687.200074pt;}
.y59{bottom:688.320069pt;}
.y111{bottom:690.720063pt;}
.y1f7{bottom:693.920044pt;}
.y2a{bottom:695.360047pt;}
.y144{bottom:696.640046pt;}
.y171{bottom:696.960053pt;}
.yab{bottom:699.360047pt;}
.y58{bottom:700.000061pt;}
.yaa{bottom:702.880066pt;}
.y22f{bottom:706.560059pt;}
.y29{bottom:709.600068pt;}
.y57{bottom:711.040070pt;}
.ye0{bottom:712.640046pt;}
.y1f6{bottom:713.280060pt;}
.y7f{bottom:714.080048pt;}
.y170{bottom:715.520050pt;}
.y1bf{bottom:716.160065pt;}
.y143{bottom:719.040070pt;}
.y22e{bottom:719.200074pt;}
.y56{bottom:722.080048pt;}
.y140{bottom:722.560059pt;}
.y28{bottom:723.840058pt;}
.y110{bottom:728.640046pt;}
.ya9{bottom:730.880066pt;}
.ydf{bottom:731.360047pt;}
.y22d{bottom:731.840058pt;}
.y1f5{bottom:732.480072pt;}
.y7e{bottom:732.960053pt;}
.y16f{bottom:734.240052pt;}
.y55{bottom:736.480072pt;}
.y27{bottom:738.080048pt;}
.y141{bottom:741.600068pt;}
.y54{bottom:744.320069pt;}
.y1be{bottom:744.800049pt;}
.y1f4{bottom:745.120057pt;}
.yde{bottom:750.080048pt;}
.y22c{bottom:751.200074pt;}
.y7d{bottom:751.680054pt;}
.y26{bottom:752.320069pt;}
.y16e{bottom:752.960053pt;}
.ya8{bottom:754.400055pt;}
.y53{bottom:755.360047pt;}
.y1bd{bottom:756.640046pt;}
.y1f3{bottom:757.760071pt;}
.y10d{bottom:758.880066pt;}
.y10f{bottom:759.360047pt;}
.y22b{bottom:763.840058pt;}
.y13f{bottom:764.160065pt;}
.y25{bottom:766.400055pt;}
.y1bc{bottom:768.480072pt;}
.y7c{bottom:770.400055pt;}
.y16d{bottom:771.520050pt;}
.ydb{bottom:775.520050pt;}
.y22a{bottom:776.480072pt;}
.y1f2{bottom:777.120057pt;}
.y52{bottom:777.440064pt;}
.ydd{bottom:780.000061pt;}
.y24{bottom:780.640046pt;}
.y1bb{bottom:784.800049pt;}
.y13d{bottom:786.720063pt;}
.y51{bottom:788.480072pt;}
.y7b{bottom:789.280060pt;}
.y10e{bottom:789.600068pt;}
.y1f1{bottom:789.760071pt;}
.y13b{bottom:790.240052pt;}
.y23{bottom:794.880066pt;}
.y229{bottom:795.680054pt;}
.yda{bottom:800.000061pt;}
.y50{bottom:802.880066pt;}
.y1ba{bottom:804.480072pt;}
.y7a{bottom:808.000061pt;}
.y228{bottom:808.320069pt;}
.y16c{bottom:808.960053pt;}
.y22{bottom:809.120057pt;}
.y13c{bottom:809.280060pt;}
.y4f{bottom:815.200074pt;}
.y1b9{bottom:819.840058pt;}
.y10c{bottom:820.480072pt;}
.y1f0{bottom:821.760071pt;}
.y13a{bottom:822.400055pt;}
.y21{bottom:823.360047pt;}
.y4e{bottom:824.160065pt;}
.yd8{bottom:824.480072pt;}
.y79{bottom:826.880066pt;}
.y16b{bottom:827.520050pt;}
.y227{bottom:827.680054pt;}
.yd5{bottom:828.960053pt;}
.y1b8{bottom:831.680054pt;}
.y1ef{bottom:834.400055pt;}
.y4d{bottom:835.840058pt;}
.y20{bottom:837.600068pt;}
.y226{bottom:840.320069pt;}
.y1b7{bottom:843.520050pt;}
.y138{bottom:844.960053pt;}
.y78{bottom:845.600068pt;}
.y16a{bottom:846.240052pt;}
.y4c{bottom:846.880066pt;}
.yd6{bottom:848.960053pt;}
.y109{bottom:850.720063pt;}
.y10b{bottom:851.040070pt;}
.y1f{bottom:851.840058pt;}
.y225{bottom:852.960053pt;}
.y1ee{bottom:853.600068pt;}
.y1b6{bottom:855.360047pt;}
.y4b{bottom:857.920044pt;}
.y77{bottom:864.320069pt;}
.y169{bottom:864.960053pt;}
.y1ed{bottom:866.240052pt;}
.y1b5{bottom:867.200058pt;}
.y137{bottom:867.520066pt;}
.y4a{bottom:869.120057pt;}
.y1e{bottom:869.600052pt;}
.y134{bottom:871.040055pt;}
.y224{bottom:872.320054pt;}
.yd4{bottom:873.440064pt;}
.y48{bottom:878.880066pt;}
.y1b4{bottom:879.040055pt;}
.y10a{bottom:881.280060pt;}
.y76{bottom:883.200058pt;}
.y168{bottom:883.520066pt;}
.y223{bottom:884.960053pt;}
.y135{bottom:890.080063pt;}
.y1b3{bottom:895.360062pt;}
.y222{bottom:897.600052pt;}
.yd2{bottom:897.920060pt;}
.y1ec{bottom:898.240052pt;}
.y1d{bottom:900.000061pt;}
.y75{bottom:901.920060pt;}
.y167{bottom:902.240052pt;}
.ycf{bottom:902.400055pt;}
.y1b2{bottom:910.720063pt;}
.y1eb{bottom:910.880066pt;}
.y108{bottom:912.320054pt;}
.y133{bottom:912.640061pt;}
.y221{bottom:916.800064pt;}
.y74{bottom:920.800064pt;}
.y166{bottom:920.960053pt;}
.yd0{bottom:922.400055pt;}
.y1b1{bottom:922.560059pt;}
.y1ea{bottom:923.520066pt;}
.y1c{bottom:927.040055pt;}
.y107{bottom:927.200058pt;}
.y220{bottom:929.440064pt;}
.y1b0{bottom:934.400055pt;}
.y131{bottom:935.040055pt;}
.ya7{bottom:936.800064pt;}
.y12e{bottom:938.560059pt;}
.y73{bottom:939.520066pt;}
.y1e9{bottom:942.880066pt;}
.y1af{bottom:946.240052pt;}
.ycd{bottom:946.880066pt;}
.y21f{bottom:948.800064pt;}
.y1b{bottom:951.200058pt;}
.y1e8{bottom:955.520066pt;}
.y12f{bottom:957.600052pt;}
.y1ae{bottom:958.080063pt;}
.y72{bottom:958.240052pt;}
.ya6{bottom:960.800064pt;}
.y21e{bottom:961.440064pt;}
.yca{bottom:963.520066pt;}
.y1e7{bottom:968.160065pt;}
.y1ad{bottom:969.920060pt;}
.y12c{bottom:970.880066pt;}
.ycb{bottom:971.360062pt;}
.y1a{bottom:976.800064pt;}
.y165{bottom:976.960053pt;}
.y71{bottom:977.120057pt;}
.ya5{bottom:979.520066pt;}
.y1e6{bottom:980.800064pt;}
.y1ac{bottom:986.240052pt;}
.yc9{bottom:993.120057pt;}
.y12a{bottom:993.440064pt;}
.y164{bottom:995.520058pt;}
.y70{bottom:995.840058pt;}
.ya4{bottom:998.400055pt;}
.y1e5{bottom:1000.000061pt;}
.yd{bottom:1006.080056pt;}
.y127{bottom:1008.160057pt;}
.y1e4{bottom:1012.640061pt;}
.y163{bottom:1014.240059pt;}
.y1ab{bottom:1014.880059pt;}
.y128{bottom:1015.840058pt;}
.ya3{bottom:1017.120057pt;}
.yc{bottom:1021.920060pt;}
.y1e3{bottom:1025.280060pt;}
.y1aa{bottom:1026.720063pt;}
.y6f{bottom:1030.720063pt;}
.y162{bottom:1032.960061pt;}
.ya2{bottom:1035.840058pt;}
.y1e2{bottom:1037.920060pt;}
.y1a9{bottom:1038.560059pt;}
.ya{bottom:1043.360062pt;}
.y9{bottom:1047.520058pt;}
.y4{bottom:1055.360062pt;}
.ya1{bottom:1055.680062pt;}
.y7{bottom:1063.680058pt;}
.y6{bottom:1067.840058pt;}
.y6e{bottom:1068.000058pt;}
.y3{bottom:1068.160057pt;}
.ya0{bottom:1068.480057pt;}
.y2{bottom:1080.640061pt;}
.y6d{bottom:1080.960061pt;}
.y9f{bottom:1081.440060pt;}
.y5{bottom:1087.840058pt;}
.y6c{bottom:1093.600060pt;}
.y1{bottom:1093.760060pt;}
.h35{height:1.760009pt;}
.h3b{height:11.199997pt;}
.h3d{height:11.200012pt;}
.h3e{height:11.359985pt;}
.h36{height:11.360000pt;}
.h39{height:11.360001pt;}
.h37{height:11.839996pt;}
.h11{height:11.839997pt;}
.h3f{height:11.840026pt;}
.h3a{height:12.000000pt;}
.h38{height:12.479996pt;}
.h40{height:12.480011pt;}
.h3c{height:12.640015pt;}
.h22{height:13.119995pt;}
.h2a{height:13.119996pt;}
.h25{height:13.120011pt;}
.h2c{height:13.120026pt;}
.h30{height:13.279968pt;}
.h2e{height:13.280029pt;}
.h1f{height:13.600006pt;}
.h26{height:13.759994pt;}
.h24{height:13.759995pt;}
.h21{height:13.760009pt;}
.h2b{height:13.760010pt;}
.h2d{height:13.919982pt;}
.h28{height:13.919983pt;}
.h27{height:13.919998pt;}
.h31{height:13.920044pt;}
.h32{height:14.399963pt;}
.h2f{height:14.559997pt;}
.h29{height:14.559998pt;}
.h20{height:15.679993pt;}
.h8{height:19.999996pt;}
.h6{height:20.000000pt;}
.h16{height:21.268486pt;}
.h19{height:22.344616pt;}
.h15{height:23.664294pt;}
.h18{height:24.260632pt;}
.h17{height:24.260752pt;}
.hb{height:25.918463pt;}
.h4{height:29.941742pt;}
.h14{height:34.708546pt;}
.h1a{height:36.119161pt;}
.h12{height:37.700696pt;}
.h13{height:39.232917pt;}
.h42{height:39.844797pt;}
.h2{height:40.094296pt;}
.h1e{height:40.737520pt;}
.h1b{height:40.823283pt;}
.h3{height:41.680915pt;}
.h43{height:42.374525pt;}
.h23{height:43.054330pt;}
.h1c{height:43.144971pt;}
.h10{height:44.881870pt;}
.hd{height:48.033900pt;}
.h41{height:50.465900pt;}
.h34{height:50.765667pt;}
.hf{height:51.687706pt;}
.he{height:55.055044pt;}
.h44{height:55.702458pt;}
.h5{height:63.367405pt;}
.h7{height:64.765215pt;}
.h9{height:68.362453pt;}
.h1d{height:68.706660pt;}
.hc{height:81.037286pt;}
.ha{height:108.363704pt;}
.h33{height:109.473904pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3f{width:2.399964pt;}
.w24{width:2.400024pt;}
.w36{width:2.559998pt;}
.w3c{width:2.719971pt;}
.w2a{width:2.880004pt;}
.w28{width:2.880005pt;}
.w42{width:3.360001pt;}
.w1b{width:3.840004pt;}
.w12{width:4.000000pt;}
.w4{width:4.959992pt;}
.w18{width:5.279968pt;}
.w39{width:5.279969pt;}
.w8{width:5.279983pt;}
.w14{width:5.279998pt;}
.wa{width:5.279999pt;}
.wc{width:5.280029pt;}
.w6{width:5.599976pt;}
.w33{width:5.599991pt;}
.w3e{width:5.600006pt;}
.w5{width:5.600036pt;}
.w11{width:6.080002pt;}
.w35{width:6.399994pt;}
.w30{width:6.400002pt;}
.w2{width:7.200012pt;}
.w20{width:7.360000pt;}
.w41{width:7.360001pt;}
.w9{width:10.720001pt;}
.w25{width:11.200012pt;}
.w1a{width:12.479996pt;}
.w1d{width:13.119995pt;}
.w40{width:13.120056pt;}
.w26{width:13.760010pt;}
.w19{width:13.919983pt;}
.w2c{width:18.399964pt;}
.w3a{width:18.400025pt;}
.wd{width:18.559998pt;}
.w15{width:23.839996pt;}
.w17{width:23.839997pt;}
.w16{width:23.840026pt;}
.w38{width:23.840027pt;}
.w1c{width:25.119995pt;}
.w1e{width:25.120002pt;}
.w2b{width:26.079987pt;}
.wb{width:29.279968pt;}
.wf{width:29.279999pt;}
.w10{width:29.440002pt;}
.w34{width:29.919998pt;}
.w13{width:31.840004pt;}
.w46{width:35.040009pt;}
.w23{width:35.040039pt;}
.w2f{width:35.680000pt;}
.w31{width:40.959991pt;}
.we{width:40.960022pt;}
.w37{width:46.720001pt;}
.w3b{width:49.280014pt;}
.w3{width:72.320007pt;}
.w27{width:77.599991pt;}
.w43{width:77.759994pt;}
.w7{width:94.880005pt;}
.w32{width:101.759995pt;}
.w2d{width:109.120011pt;}
.w44{width:121.440002pt;}
.w29{width:121.600006pt;}
.w2e{width:121.759979pt;}
.w3d{width:126.080002pt;}
.w1f{width:145.279999pt;}
.w45{width:165.119995pt;}
.w22{width:165.279999pt;}
.w21{width:230.879990pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7c{left:1.760003pt;}
.x6{left:48.000000pt;}
.x2d{left:52.320000pt;}
.x7b{left:53.599998pt;}
.x7d{left:55.360001pt;}
.x19{left:60.160000pt;}
.x24{left:62.080002pt;}
.xa{left:70.720001pt;}
.xf{left:73.279999pt;}
.x12{left:77.919998pt;}
.x1{left:79.680000pt;}
.x54{left:83.680000pt;}
.x7{left:91.519997pt;}
.x14{left:95.040001pt;}
.x53{left:109.760002pt;}
.x2e{left:111.040001pt;}
.x64{left:112.800003pt;}
.x2f{left:117.120003pt;}
.x30{left:121.120003pt;}
.x40{left:123.519997pt;}
.x41{left:127.360001pt;}
.x1a{left:133.119995pt;}
.x7e{left:136.000000pt;}
.x65{left:142.720001pt;}
.x13{left:144.160004pt;}
.x10{left:145.600006pt;}
.x63{left:149.440002pt;}
.x66{left:151.679993pt;}
.x31{left:152.960007pt;}
.x85{left:156.800003pt;}
.x1d{left:159.199997pt;}
.x11{left:162.880005pt;}
.x16{left:170.080002pt;}
.x78{left:173.759995pt;}
.x17{left:189.600006pt;}
.x48{left:193.279999pt;}
.x67{left:198.399994pt;}
.x49{left:200.639999pt;}
.x86{left:207.839996pt;}
.x42{left:212.960007pt;}
.x32{left:214.880005pt;}
.x8{left:217.122745pt;}
.xc5{left:231.839996pt;}
.xc{left:236.800003pt;}
.x33{left:238.720001pt;}
.x43{left:240.800003pt;}
.x9a{left:244.800003pt;}
.x88{left:246.080002pt;}
.x93{left:247.199997pt;}
.x89{left:250.240005pt;}
.x94{left:251.520004pt;}
.x1e{left:254.080002pt;}
.x8a{left:255.520004pt;}
.x7f{left:257.440002pt;}
.x80{left:260.320007pt;}
.x95{left:261.920013pt;}
.xc1{left:267.200012pt;}
.xbf{left:268.799988pt;}
.xae{left:270.720001pt;}
.xb1{left:277.119995pt;}
.x4d{left:278.239990pt;}
.x4e{left:281.119995pt;}
.xca{left:282.720001pt;}
.x81{left:286.399994pt;}
.x34{left:290.079987pt;}
.xc2{left:291.040009pt;}
.xb2{left:294.239990pt;}
.x9c{left:295.200012pt;}
.xc6{left:299.040009pt;}
.x68{left:301.600006pt;}
.x69{left:305.600006pt;}
.xa8{left:307.359985pt;}
.x51{left:309.760010pt;}
.x35{left:313.920013pt;}
.x91{left:320.000000pt;}
.x92{left:324.160004pt;}
.xc3{left:325.920013pt;}
.xa9{left:328.160004pt;}
.x6a{left:329.440002pt;}
.xe{left:331.040009pt;}
.xbe{left:335.359985pt;}
.xb5{left:336.320007pt;}
.xb6{left:340.480011pt;}
.xaf{left:346.559998pt;}
.xb7{left:351.040009pt;}
.x8f{left:358.239990pt;}
.xac{left:359.359985pt;}
.x52{left:363.359985pt;}
.xd1{left:366.399994pt;}
.xcd{left:367.359985pt;}
.xad{left:368.799988pt;}
.x6b{left:369.920013pt;}
.x29{left:373.279999pt;}
.x36{left:375.839996pt;}
.x44{left:377.920013pt;}
.xc8{left:382.559998pt;}
.xc9{left:386.880005pt;}
.xa6{left:388.160004pt;}
.xb{left:391.519989pt;}
.x96{left:392.799988pt;}
.x6c{left:393.760010pt;}
.xaa{left:396.160004pt;}
.xcb{left:397.600006pt;}
.x37{left:399.679993pt;}
.xc7{left:401.440002pt;}
.x2a{left:402.399994pt;}
.x4f{left:405.440002pt;}
.xcc{left:408.000000pt;}
.xab{left:410.720001pt;}
.x8b{left:412.959991pt;}
.x15{left:418.559998pt;}
.x18{left:420.799988pt;}
.x9f{left:423.040009pt;}
.x8e{left:424.959991pt;}
.xb0{left:426.239990pt;}
.x1f{left:429.600006pt;}
.x4a{left:431.519989pt;}
.xa0{left:433.600006pt;}
.x59{left:436.640015pt;}
.x5f{left:439.200012pt;}
.x6d{left:443.839996pt;}
.xb3{left:446.559998pt;}
.x99{left:449.279999pt;}
.x82{left:451.519989pt;}
.xb4{left:456.000000pt;}
.xcf{left:457.600006pt;}
.xc4{left:460.640015pt;}
.x25{left:461.920013pt;}
.xd0{left:467.040009pt;}
.x60{left:468.320007pt;}
.x55{left:469.279999pt;}
.x5a{left:472.160004pt;}
.x97{left:473.119995pt;}
.x2b{left:475.040009pt;}
.x38{left:477.760010pt;}
.xc0{left:482.239990pt;}
.x98{left:483.519989pt;}
.x83{left:486.559998pt;}
.xd{left:491.200012pt;}
.x2{left:499.200012pt;}
.x39{left:501.600006pt;}
.x9d{left:502.880005pt;}
.x2c{left:504.320007pt;}
.x9e{left:507.040009pt;}
.x84{left:511.040009pt;}
.x5b{left:513.119995pt;}
.x61{left:516.640015pt;}
.xbb{left:518.559998pt;}
.x3{left:519.840027pt;}
.x6e{left:521.440002pt;}
.xbc{left:522.719971pt;}
.xd4{left:525.919983pt;}
.xb8{left:532.640015pt;}
.x20{left:534.880005pt;}
.xb9{left:536.960022pt;}
.xce{left:542.400024pt;}
.xa7{left:544.640015pt;}
.x62{left:545.919983pt;}
.xba{left:547.359985pt;}
.x1b{left:549.599976pt;}
.x5{left:556.320007pt;}
.x8c{left:558.400024pt;}
.x9b{left:560.159973pt;}
.x8d{left:562.559998pt;}
.x21{left:564.159973pt;}
.x3a{left:566.239990pt;}
.x87{left:567.679993pt;}
.x46{left:568.960022pt;}
.xd2{left:569.919983pt;}
.x45{left:571.039978pt;}
.x26{left:573.760010pt;}
.xd3{left:575.200012pt;}
.xa4{left:576.159973pt;}
.xa5{left:580.640015pt;}
.x47{left:582.080017pt;}
.x3b{left:584.799988pt;}
.x50{left:586.719971pt;}
.x90{left:588.000000pt;}
.x6f{left:589.440002pt;}
.x75{left:592.159973pt;}
.x70{left:593.440002pt;}
.x79{left:594.719971pt;}
.x4b{left:596.799988pt;}
.x56{left:598.080017pt;}
.xa1{left:599.359985pt;}
.x5c{left:601.440002pt;}
.xa2{left:602.880005pt;}
.xbd{left:604.159973pt;}
.xa3{left:607.039978pt;}
.x7a{left:611.840027pt;}
.x76{left:614.559998pt;}
.x71{left:617.280029pt;}
.x3c{left:626.559998pt;}
.x3d{left:631.840027pt;}
.x9{left:643.520020pt;}
.x72{left:656.000000pt;}
.x73{left:661.280029pt;}
.x22{left:671.039978pt;}
.x1c{left:680.320007pt;}
.x3e{left:681.440002pt;}
.x4c{left:684.000000pt;}
.x23{left:689.599976pt;}
.x3f{left:695.200012pt;}
.x27{left:696.159973pt;}
.x28{left:702.080017pt;}
.x57{left:706.880005pt;}
.x77{left:709.919983pt;}
.x5d{left:711.039978pt;}
.x58{left:712.799988pt;}
.x4{left:714.080017pt;}
.x5e{left:716.960022pt;}
.x74{left:720.960022pt;}
}




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