
    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_19806c4962b18e30dedf0005.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_932222c033ae10cc7baf83f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.049805;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_b776846accc7cc2b3787700b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d7fe2bfda3f3e0a280a770a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_df68bd1a66cd03ed65eb642e.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4129a7508cd0d8e09a0e6710.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-64.813806px;}
.v8{vertical-align:-43.192574px;}
.v7{vertical-align:-20.879928px;}
.v4{vertical-align:-4.319996px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.319996px;}
.v2{vertical-align:8.639991px;}
.v5{vertical-align:16.560000px;}
.v1{vertical-align:18.720018px;}
.v6{vertical-align:20.880000px;}
.lsa{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036707px;}
.ls4{letter-spacing:0.036774px;}
.ls5{letter-spacing:0.036778px;}
.ls6{letter-spacing:0.036805px;}
.ls7{letter-spacing:0.036810px;}
.ls2{letter-spacing:0.036842px;}
.ls8{letter-spacing:0.036846px;}
.lsd{letter-spacing:0.208350px;}
.lsb{letter-spacing:0.297732px;}
.ls0{letter-spacing:0.378499px;}
.ls3{letter-spacing:0.756725px;}
.ls11{letter-spacing:7.234115px;}
.ls13{letter-spacing:11.554074px;}
.ls14{letter-spacing:21.637874px;}
.ls15{letter-spacing:21.637941px;}
.ls12{letter-spacing:35.313930px;}
.ls9{letter-spacing:46.117883px;}
.lse{letter-spacing:46.117950px;}
.lsc{letter-spacing:71.317842px;}
.lsf{letter-spacing:349.545685px;}
.ls10{letter-spacing:349.555502px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-14.939873px;}
.ws4{word-spacing:-14.911650px;}
.ws6{word-spacing:-13.499965px;}
.ws2{word-spacing:-13.474463px;}
.ws0{word-spacing:-12.037163px;}
.ws8{word-spacing:-10.420223px;}
.ws3{word-spacing:-9.701595px;}
.ws1{word-spacing:-7.545679px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:143.639629px;}
.ws9{word-spacing:240.492199px;}
._62{margin-left:-9.088534px;}
._5{margin-left:-3.759994px;}
._6{margin-left:-2.626242px;}
._2{margin-left:-1.485376px;}
._0{width:1.195190px;}
._1{width:2.450139px;}
._4{width:3.545156px;}
._a{width:5.405956px;}
._9{width:6.439575px;}
._8{width:8.220532px;}
._7{width:9.603569px;}
._18{width:10.617108px;}
._3{width:11.675733px;}
._19{width:12.824557px;}
._1d{width:13.845468px;}
._15{width:16.519850px;}
._16{width:17.617970px;}
._1b{width:18.975022px;}
._1a{width:20.380032px;}
._1e{width:21.669335px;}
._21{width:23.409338px;}
._20{width:25.180884px;}
._1f{width:26.301893px;}
._22{width:27.537624px;}
._f{width:28.907238px;}
._e{width:30.519954px;}
._24{width:32.027966px;}
._23{width:33.331965px;}
._59{width:34.347355px;}
._11{width:35.398160px;}
._10{width:36.861599px;}
._27{width:38.092007px;}
._c{width:39.859917px;}
._b{width:41.281055px;}
._1c{width:42.647391px;}
._25{width:43.751319px;}
._2a{width:46.028070px;}
._31{width:47.817002px;}
._30{width:49.564533px;}
._5a{width:50.736029px;}
._14{width:53.022638px;}
._5b{width:54.159113px;}
._36{width:55.326632px;}
._26{width:56.673823px;}
._d{width:58.272470px;}
._29{width:59.493667px;}
._2c{width:61.602661px;}
._2b{width:63.024627px;}
._33{width:64.303678px;}
._58{width:65.689152px;}
._49{width:68.558063px;}
._56{width:70.728591px;}
._61{width:72.211135px;}
._67{width:74.019173px;}
._2e{width:75.579537px;}
._2d{width:76.722841px;}
._66{width:78.643343px;}
._52{width:80.026632px;}
._6e{width:81.176765px;}
._32{width:82.540876px;}
._72{width:85.205795px;}
._17{width:86.922016px;}
._64{width:88.095770px;}
._65{width:89.113418px;}
._57{width:92.087939px;}
._4a{width:93.401176px;}
._12{width:96.217727px;}
._13{width:97.258585px;}
._6a{width:98.726018px;}
._50{width:100.048843px;}
._34{width:103.258355px;}
._4f{width:113.119433px;}
._4b{width:117.595347px;}
._74{width:129.433122px;}
._73{width:130.636073px;}
._53{width:132.988583px;}
._5f{width:134.001556px;}
._2f{width:137.662561px;}
._28{width:139.419645px;}
._4c{width:145.466306px;}
._4d{width:150.523250px;}
._4e{width:151.718440px;}
._71{width:153.031490px;}
._69{width:158.374868px;}
._5c{width:173.390408px;}
._68{width:195.042124px;}
._51{width:202.569125px;}
._54{width:210.059458px;}
._5d{width:224.271216px;}
._35{width:225.719417px;}
._76{width:236.452081px;}
._55{width:238.334855px;}
._6b{width:270.881683px;}
._6c{width:319.703518px;}
._63{width:400.226428px;}
._46{width:438.604753px;}
._44{width:495.530649px;}
._3d{width:520.512400px;}
._45{width:533.020978px;}
._39{width:567.988098px;}
._41{width:590.446519px;}
._47{width:607.901721px;}
._3e{width:622.546622px;}
._3f{width:628.629253px;}
._60{width:642.243207px;}
._43{width:660.152764px;}
._48{width:671.706770px;}
._3c{width:681.479441px;}
._40{width:685.533685px;}
._38{width:704.078085px;}
._75{width:728.134311px;}
._6f{width:743.958367px;}
._3a{width:747.011258px;}
._37{width:749.192618px;}
._42{width:765.403290px;}
._3b{width:776.486861px;}
._6d{width:788.973843px;}
._5e{width:848.620443px;}
._70{width:860.352577px;}
.fc7{color:transparent;}
.fc2{color:rgb(0,51,0);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,0);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.182715px;}
.fs4{font-size:35.931825px;}
.fs7{font-size:38.806380px;}
.fs9{font-size:41.680890px;}
.fs2{font-size:48.148650px;}
.fs5{font-size:53.897850px;}
.fs8{font-size:53.999861px;}
.fs0{font-size:59.646600px;}
.fs1{font-size:59.759492px;}
.fsb{font-size:66.240183px;}
.fsa{font-size:71.863650px;}
.fs6{font-size:95.578650px;}
.y0{bottom:0.000000px;}
.yf4{bottom:2.339985px;}
.ye9{bottom:2.340002px;}
.yeb{bottom:2.340019px;}
.ya{bottom:35.640061px;}
.y9{bottom:52.919975px;}
.y8{bottom:66.960022px;}
.y144{bottom:88.740006px;}
.y3a{bottom:89.100013px;}
.ye7{bottom:89.460022px;}
.y9a{bottom:90.179970px;}
.y141{bottom:92.159981px;}
.y1e0{bottom:92.340019px;}
.yb7{bottom:92.700027px;}
.y1b4{bottom:95.399986px;}
.y71{bottom:99.179970px;}
.y125{bottom:100.980011px;}
.y143{bottom:104.220017px;}
.y39{bottom:106.379998px;}
.ye6{bottom:106.740006px;}
.y99{bottom:107.279983px;}
.y192{bottom:109.259994px;}
.y1df{bottom:109.620002px;}
.y1b3{bottom:112.679970px;}
.y70{bottom:116.279983px;}
.y140{bottom:116.639992px;}
.yb6{bottom:117.179970px;}
.y142{bottom:120.059967px;}
.y38{bottom:123.480011px;}
.ye5{bottom:124.019989px;}
.y98{bottom:124.559967px;}
.y124{bottom:125.460022px;}
.y191{bottom:126.539977px;}
.y1de{bottom:126.899986px;}
.y1b2{bottom:129.779983px;}
.y6f{bottom:133.559967px;}
.y37{bottom:140.759994px;}
.y123{bottom:140.940033px;}
.ye4{bottom:141.299973px;}
.y97{bottom:141.840019px;}
.y163{bottom:143.101887px;}
.y190{bottom:143.639992px;}
.y1dd{bottom:147.059967px;}
.y1b1{bottom:150.120002px;}
.y6e{bottom:150.840019px;}
.y36{bottom:158.039977px;}
.ye3{bottom:158.399986px;}
.y96{bottom:159.120002px;}
.y162{bottom:160.193644px;}
.y18f{bottom:160.919975px;}
.y1dc{bottom:164.340019px;}
.y1ff{bottom:166.679970px;}
.y113{bottom:167.039977px;}
.y1b0{bottom:167.399986px;}
.y6d{bottom:168.120002px;}
.yc2{bottom:168.659516px;}
.y35{bottom:175.320030px;}
.ye2{bottom:175.679970px;}
.y95{bottom:176.399986px;}
.y161{bottom:177.310860px;}
.y18e{bottom:178.200027px;}
.y13d{bottom:179.280474px;}
.y1db{bottom:181.620002px;}
.y160{bottom:183.251559px;}
.y1fe{bottom:183.779983px;}
.y112{bottom:184.320030px;}
.y1af{bottom:184.679970px;}
.y6c{bottom:185.399986px;}
.yb8{bottom:191.343463px;}
.yc3{bottom:191.883149px;}
.y34{bottom:192.600013px;}
.ye1{bottom:192.960022px;}
.y94{bottom:193.679970px;}
.y18d{bottom:195.480011px;}
.y15f{bottom:198.730340px;}
.y1da{bottom:198.899986px;}
.y111{bottom:201.600013px;}
.y1ae{bottom:201.779983px;}
.y6b{bottom:202.679970px;}
.y1fd{bottom:204.120002px;}
.yb9{bottom:206.277965px;}
.y13c{bottom:207.901207px;}
.y33{bottom:209.879998px;}
.y12f{bottom:210.418427px;}
.y93{bottom:210.779983px;}
.y18c{bottom:212.759994px;}
.y15e{bottom:214.564781px;}
.y1d9{bottom:216.179970px;}
.ye0{bottom:218.879998px;}
.y1ad{bottom:219.059967px;}
.y6a{bottom:219.779983px;}
.yba{bottom:221.224858px;}
.yc4{bottom:221.764544px;}
.y132{bottom:223.919184px;}
.y1fc{bottom:224.279983px;}
.y32{bottom:226.980011px;}
.y92{bottom:228.059967px;}
.y15d{bottom:228.069355px;}
.y18b{bottom:230.039977px;}
.y130{bottom:231.841712px;}
.y1d8{bottom:233.279983px;}
.ybb{bottom:236.159360px;}
.y110{bottom:236.159981px;}
.y1ac{bottom:236.340019px;}
.y69{bottom:237.059967px;}
.y12b{bottom:238.499393px;}
.y12d{bottom:243.179541px;}
.ydf{bottom:243.360008px;}
.y15c{bottom:243.548136px;}
.y31{bottom:244.259994px;}
.y1fb{bottom:244.620002px;}
.y91{bottom:245.340019px;}
.y18a{bottom:250.200027px;}
.y1d7{bottom:250.559967px;}
.y133{bottom:250.739489px;}
.ybc{bottom:251.102069px;}
.yc5{bottom:251.645859px;}
.y10f{bottom:253.440033px;}
.y1ab{bottom:253.620002px;}
.y68{bottom:254.340019px;}
.y15b{bottom:259.209288px;}
.y15a{bottom:259.751861px;}
.y30{bottom:261.539977px;}
.y90{bottom:262.620002px;}
.y12c{bottom:262.621188px;}
.y1fa{bottom:264.779983px;}
.ybd{bottom:266.040674px;}
.y189{bottom:267.480011px;}
.y1d6{bottom:267.840019px;}
.yde{bottom:268.200027px;}
.y10e{bottom:270.539977px;}
.y67{bottom:271.620002px;}
.y1aa{bottom:273.779983px;}
.y159{bottom:275.230642px;}
.y134{bottom:277.563978px;}
.y2f{bottom:278.820030px;}
.y8f{bottom:279.899986px;}
.ybe{bottom:280.983464px;}
.yc6{bottom:281.523150px;}
.y1f9{bottom:282.059967px;}
.y188{bottom:284.759994px;}
.y10d{bottom:287.820030px;}
.y1d5{bottom:288.000000px;}
.y66{bottom:288.899986px;}
.y158{bottom:290.887254px;}
.y1a9{bottom:291.059967px;}
.ydd{bottom:292.139992px;}
.ybf{bottom:295.922069px;}
.y2e{bottom:296.100013px;}
.y8e{bottom:297.179970px;}
.y1f8{bottom:299.340019px;}
.y187{bottom:302.039977px;}
.y135{bottom:304.561389px;}
.y10c{bottom:305.100013px;}
.y1d4{bottom:305.279983px;}
.y65{bottom:306.179970px;}
.y157{bottom:306.366035px;}
.y1a8{bottom:308.340019px;}
.yc0{bottom:310.864778px;}
.yc7{bottom:311.404464px;}
.y2d{bottom:313.200027px;}
.y8d{bottom:314.279983px;}
.ydc{bottom:316.259994px;}
.y1f7{bottom:316.620002px;}
.y186{bottom:319.139992px;}
.y156{bottom:322.209559px;}
.y10b{bottom:322.379998px;}
.y1d3{bottom:322.559967px;}
.y64{bottom:323.279983px;}
.y1a7{bottom:325.620002px;}
.yc1{bottom:325.803384px;}
.y13f{bottom:329.399986px;}
.y2c{bottom:330.480011px;}
.y136{bottom:331.385797px;}
.y8c{bottom:331.559967px;}
.y155{bottom:333.543930px;}
.y1f6{bottom:333.899986px;}
.y185{bottom:339.480011px;}
.y10a{bottom:339.659981px;}
.y1d2{bottom:339.840019px;}
.ydb{bottom:340.200027px;}
.y63{bottom:340.559967px;}
.y1a6{bottom:342.899986px;}
.y2b{bottom:347.759994px;}
.y8b{bottom:348.840019px;}
.y154{bottom:349.027252px;}
.y1f5{bottom:351.000000px;}
.y13e{bottom:354.059967px;}
.y109{bottom:356.759994px;}
.y1d1{bottom:357.120002px;}
.y62{bottom:357.840019px;}
.y137{bottom:358.201998px;}
.y1a5{bottom:363.059967px;}
.y152{bottom:363.425518px;}
.yda{bottom:364.139992px;}
.y153{bottom:364.870776px;}
.y2a{bottom:365.039977px;}
.y8a{bottom:366.120002px;}
.y1f4{bottom:368.279983px;}
.y108{bottom:374.039977px;}
.y1d0{bottom:374.399986px;}
.y61{bottom:375.120002px;}
.y151{bottom:378.904299px;}
.y1a4{bottom:380.340019px;}
.y29{bottom:382.320030px;}
.y89{bottom:383.399986px;}
.y138{bottom:385.199489px;}
.yd9{bottom:388.259994px;}
.y1f3{bottom:388.620002px;}
.y184{bottom:391.139992px;}
.y107{bottom:391.320030px;}
.yb5{bottom:391.500000px;}
.y60{bottom:392.399986px;}
.y1cf{bottom:394.559967px;}
.y150{bottom:394.565451px;}
.y1a3{bottom:397.620002px;}
.y28{bottom:399.600013px;}
.y88{bottom:400.500000px;}
.y1f2{bottom:405.899986px;}
.y183{bottom:408.419975px;}
.y106{bottom:408.600013px;}
.yb4{bottom:408.779983px;}
.y5f{bottom:409.500000px;}
.y14f{bottom:410.048774px;}
.y1ce{bottom:411.840019px;}
.y139{bottom:412.023898px;}
.yd8{bottom:412.200027px;}
.y1a2{bottom:414.899986px;}
.y27{bottom:416.700027px;}
.y87{bottom:417.779983px;}
.y1f1{bottom:423.000000px;}
.y182{bottom:425.700027px;}
.y105{bottom:425.879998px;}
.y14e{bottom:425.883215px;}
.yb3{bottom:426.059967px;}
.y5e{bottom:426.779983px;}
.y1cd{bottom:429.120002px;}
.y131{bottom:430.744569px;}
.y14d{bottom:431.646083px;}
.y1a1{bottom:432.000000px;}
.y26{bottom:433.980011px;}
.y86{bottom:435.059967px;}
.yd7{bottom:436.139992px;}
.y13a{bottom:439.021389px;}
.y1f0{bottom:440.279983px;}
.y181{bottom:442.980011px;}
.y104{bottom:443.159981px;}
.yb2{bottom:443.340019px;}
.y5d{bottom:444.059967px;}
.y12e{bottom:444.241223px;}
.y1cc{bottom:446.399986px;}
.y14c{bottom:447.124909px;}
.y1a0{bottom:449.279983px;}
.y25{bottom:451.259994px;}
.y85{bottom:452.340019px;}
.y1ef{bottom:457.559967px;}
.yd6{bottom:460.259994px;}
.yb1{bottom:460.620002px;}
.y5c{bottom:461.340019px;}
.y14b{bottom:462.963847px;}
.y1cb{bottom:463.500000px;}
.y13b{bottom:465.845798px;}
.y19f{bottom:466.559967px;}
.y14a{bottom:467.828615px;}
.y24{bottom:468.539977px;}
.y84{bottom:469.620002px;}
.y1ee{bottom:474.840019px;}
.y103{bottom:477.539977px;}
.yb0{bottom:477.899986px;}
.y5b{bottom:478.620002px;}
.y180{bottom:480.419975px;}
.y1ca{bottom:480.779983px;}
.y149{bottom:483.307397px;}
.y19e{bottom:483.840019px;}
.yd5{bottom:484.200027px;}
.y23{bottom:485.820030px;}
.y83{bottom:486.899986px;}
.y122{bottom:489.779983px;}
.y1ed{bottom:492.120002px;}
.y102{bottom:494.820030px;}
.yaf{bottom:495.000000px;}
.y5a{bottom:495.899986px;}
.y17f{bottom:497.700027px;}
.y1c9{bottom:498.059967px;}
.y148{bottom:498.790764px;}
.y22{bottom:503.100013px;}
.y82{bottom:504.000000px;}
.y121{bottom:507.059967px;}
.yd4{bottom:508.139992px;}
.y101{bottom:512.100013px;}
.yae{bottom:512.279983px;}
.y59{bottom:513.000000px;}
.y147{bottom:514.442789px;}
.y17e{bottom:514.980011px;}
.y1c8{bottom:518.220017px;}
.y21{bottom:520.200027px;}
.y81{bottom:521.279983px;}
.y120{bottom:524.340019px;}
.y100{bottom:529.379998px;}
.yad{bottom:529.559967px;}
.y146{bottom:529.921570px;}
.y58{bottom:530.279983px;}
.yd3{bottom:532.259994px;}
.y1c7{bottom:535.500000px;}
.y20{bottom:537.480011px;}
.y80{bottom:538.559967px;}
.y11f{bottom:541.620002px;}
.y145{bottom:545.769635px;}
.yff{bottom:546.659981px;}
.yac{bottom:546.840019px;}
.y57{bottom:547.559967px;}
.y17d{bottom:549.360008px;}
.y1c6{bottom:552.779983px;}
.y1f{bottom:554.759994px;}
.y7f{bottom:555.840019px;}
.yd2{bottom:556.200027px;}
.y11e{bottom:558.720017px;}
.yfe{bottom:563.759994px;}
.yab{bottom:564.120002px;}
.y56{bottom:564.840019px;}
.y17c{bottom:566.639992px;}
.y1c5{bottom:570.059967px;}
.y1e{bottom:572.039977px;}
.y7e{bottom:573.120002px;}
.y11d{bottom:576.000000px;}
.yd1{bottom:580.139992px;}
.yfd{bottom:581.039977px;}
.yaa{bottom:581.399986px;}
.y55{bottom:582.120002px;}
.y17b{bottom:586.980011px;}
.y1c4{bottom:587.340019px;}
.y1d{bottom:589.320030px;}
.y7d{bottom:590.399986px;}
.y11c{bottom:593.279983px;}
.yfc{bottom:598.320030px;}
.ya9{bottom:598.500000px;}
.y9b{bottom:599.220017px;}
.y54{bottom:599.399986px;}
.yd0{bottom:604.259994px;}
.y1c3{bottom:604.620002px;}
.y7c{bottom:607.500000px;}
.y11b{bottom:610.559967px;}
.y1c{bottom:611.820030px;}
.yfb{bottom:615.600013px;}
.ya8{bottom:615.779983px;}
.y53{bottom:616.500000px;}
.y17a{bottom:621.360008px;}
.y1c2{bottom:621.899986px;}
.y1b{bottom:623.699993px;}
.y7b{bottom:624.779983px;}
.y11a{bottom:627.839985px;}
.ycf{bottom:628.199993px;}
.ya7{bottom:633.060001px;}
.y52{bottom:633.779983px;}
.y1ec{bottom:636.120002px;}
.y179{bottom:638.639992px;}
.yfa{bottom:641.519989px;}
.y7a{bottom:642.060001px;}
.y119{bottom:645.120002px;}
.y1a{bottom:649.620002px;}
.ya6{bottom:650.339985px;}
.y51{bottom:651.060001px;}
.yce{bottom:652.139992px;}
.y1eb{bottom:653.399986px;}
.yf9{bottom:654.839985px;}
.y178{bottom:655.920010px;}
.y79{bottom:659.339985px;}
.y118{bottom:662.220017px;}
.y19d{bottom:662.399986px;}
.y50{bottom:668.339985px;}
.yf8{bottom:669.240006px;}
.y1ea{bottom:670.500000px;}
.y177{bottom:673.199993px;}
.ycd{bottom:676.259994px;}
.ya5{bottom:676.439999px;}
.y78{bottom:676.620002px;}
.y117{bottom:679.500000px;}
.y19{bottom:680.759994px;}
.yf7{bottom:681.300007px;}
.y4f{bottom:685.620002px;}
.y1e9{bottom:687.779983px;}
.y176{bottom:690.480011px;}
.y77{bottom:693.720017px;}
.yf6{bottom:694.259994px;}
.y116{bottom:696.779983px;}
.ycc{bottom:700.199993px;}
.y18{bottom:701.279983px;}
.y4e{bottom:702.720017px;}
.y1e8{bottom:705.060001px;}
.y175{bottom:707.759994px;}
.y76{bottom:711.000000px;}
.y19c{bottom:714.060001px;}
.yf5{bottom:715.860008px;}
.y4d{bottom:720.000000px;}
.y1e7{bottom:722.339985px;}
.y115{bottom:722.699993px;}
.ycb{bottom:724.139992px;}
.y174{bottom:727.920010px;}
.y75{bottom:728.279983px;}
.y19b{bottom:731.339985px;}
.y17{bottom:732.420010px;}
.y4c{bottom:737.279983px;}
.yf3{bottom:739.800007px;}
.y1e6{bottom:742.500000px;}
.y173{bottom:745.199993px;}
.y74{bottom:745.560001px;}
.y114{bottom:747.180004px;}
.yca{bottom:748.620002px;}
.y16{bottom:753.120002px;}
.yf2{bottom:754.199993px;}
.y4b{bottom:754.560001px;}
.y1e5{bottom:759.779983px;}
.y172{bottom:762.480011px;}
.y73{bottom:762.839985px;}
.yc9{bottom:764.279983px;}
.yf1{bottom:766.259994px;}
.y19a{bottom:768.779983px;}
.y4a{bottom:771.839985px;}
.yf0{bottom:776.879998px;}
.y1e4{bottom:777.060001px;}
.y171{bottom:779.759994px;}
.y72{bottom:780.120002px;}
.y1c1{bottom:783.000000px;}
.y15{bottom:784.259994px;}
.y12a{bottom:785.519086px;}
.y199{bottom:786.060001px;}
.yc8{bottom:788.939999px;}
.y49{bottom:789.120002px;}
.y1e3{bottom:794.339985px;}
.y170{bottom:796.860008px;}
.ya4{bottom:797.220017px;}
.y1c0{bottom:800.279983px;}
.yef{bottom:800.819995px;}
.y198{bottom:803.339985px;}
.y14{bottom:804.779983px;}
.y48{bottom:806.220017px;}
.y16f{bottom:814.139992px;}
.ya3{bottom:814.500000px;}
.y1bf{bottom:817.560001px;}
.y197{bottom:820.620002px;}
.y47{bottom:823.500000px;}
.yee{bottom:824.759994px;}
.y13{bottom:830.699993px;}
.ya2{bottom:831.779983px;}
.y16e{bottom:834.300007px;}
.y1be{bottom:834.839985px;}
.y196{bottom:837.720017px;}
.yed{bottom:839.160015px;}
.y46{bottom:840.779983px;}
.ya1{bottom:849.060001px;}
.yec{bottom:851.220017px;}
.y16d{bottom:851.579990px;}
.y1bd{bottom:852.120002px;}
.y195{bottom:855.000000px;}
.y45{bottom:858.060001px;}
.y12{bottom:861.839985px;}
.ya0{bottom:866.339985px;}
.y127{bottom:866.881441px;}
.y16c{bottom:868.860008px;}
.y1bc{bottom:869.220017px;}
.y194{bottom:872.279983px;}
.y44{bottom:875.339985px;}
.y126{bottom:882.358928px;}
.y9f{bottom:883.620002px;}
.yea{bottom:885.779983px;}
.y16b{bottom:886.139992px;}
.y1bb{bottom:886.500000px;}
.y11{bottom:887.759994px;}
.y193{bottom:889.560001px;}
.y43{bottom:892.620002px;}
.y9e{bottom:900.719999px;}
.y16a{bottom:903.419992px;}
.y1e2{bottom:903.780001px;}
.y10{bottom:904.139992px;}
.y1ba{bottom:906.840002px;}
.y42{bottom:909.719999px;}
.y9d{bottom:918.000000px;}
.y169{bottom:920.699993px;}
.yf{bottom:921.419992px;}
.y1e1{bottom:923.939999px;}
.y1b9{bottom:924.120002px;}
.y41{bottom:927.000000px;}
.y9c{bottom:935.280001px;}
.y168{bottom:940.860008px;}
.y1b8{bottom:941.219999px;}
.y40{bottom:944.280001px;}
.ye8{bottom:945.719999px;}
.ye{bottom:947.699993px;}
.y167{bottom:958.139992px;}
.y1b7{bottom:958.500000px;}
.y3f{bottom:961.560001px;}
.yd{bottom:966.960004px;}
.y166{bottom:975.419992px;}
.y1b6{bottom:975.780001px;}
.y3e{bottom:978.840002px;}
.y165{bottom:992.699993px;}
.yc{bottom:994.680004px;}
.y1b5{bottom:995.939999px;}
.y3d{bottom:996.120002px;}
.y164{bottom:1009.979994px;}
.y129{bottom:1010.878863px;}
.y3c{bottom:1013.219999px;}
.yb{bottom:1022.219999px;}
.y128{bottom:1026.362958px;}
.y3b{bottom:1030.500000px;}
.y7{bottom:1049.939999px;}
.y6{bottom:1062.180004px;}
.y5{bottom:1074.060001px;}
.y4{bottom:1088.099997px;}
.y3{bottom:1102.679318px;}
.y2{bottom:1103.579999px;}
.y1{bottom:1119.960000px;}
.h19{height:9.360008px;}
.h1a{height:9.540012px;}
.h1d{height:11.699992px;}
.h13{height:11.699993px;}
.h18{height:11.700027px;}
.h15{height:11.700028px;}
.h1c{height:11.879997px;}
.h1b{height:11.879998px;}
.h16{height:11.880031px;}
.hb{height:32.363915px;}
.h11{height:33.972070px;}
.h14{height:34.354171px;}
.h17{height:34.761211px;}
.h6{height:35.738832px;}
.h12{height:40.155222px;}
.hd{height:42.084637px;}
.h3{height:42.164290px;}
.he{height:43.424356px;}
.h4{height:43.891931px;}
.h5{height:44.378823px;}
.hf{height:44.423619px;}
.h10{height:45.035040px;}
.h7{height:46.051908px;}
.h9{height:48.260478px;}
.ha{height:48.260541px;}
.h1{height:49.161846px;}
.h2{height:49.744332px;}
.h1f{height:49.838482px;}
.hc{height:53.243982px;}
.h20{height:55.243278px;}
.h1e{height:59.933161px;}
.h8{height:79.711101px;}
.h0{height:1188.000000px;}
.w1{width:2.700002px;}
.w16{width:2.700010px;}
.w2c{width:3.419975px;}
.w28{width:3.419992px;}
.wc{width:3.420009px;}
.w2f{width:3.420010px;}
.w35{width:3.420044px;}
.w1a{width:3.599980px;}
.w2b{width:3.600014px;}
.w23{width:3.600015px;}
.w12{width:5.219947px;}
.w26{width:5.219948px;}
.wa{width:5.219982px;}
.w2{width:5.219999px;}
.w4{width:5.220000px;}
.w6{width:5.220016px;}
.wf{width:5.220017px;}
.w31{width:5.399985px;}
.w15{width:5.399986px;}
.w2e{width:5.400020px;}
.wb{width:6.299973px;}
.w24{width:10.620002px;}
.w10{width:16.740006px;}
.w7{width:19.079991px;}
.w3e{width:19.080025px;}
.w11{width:19.259995px;}
.w13{width:19.619935px;}
.w8{width:20.339985px;}
.w9{width:21.960022px;}
.wd{width:22.860009px;}
.w20{width:28.799972px;}
.w34{width:28.799973px;}
.w1e{width:28.799990px;}
.w1f{width:28.800007px;}
.w3b{width:28.800008px;}
.w3c{width:28.800040px;}
.w33{width:28.800042px;}
.w1c{width:28.979976px;}
.w36{width:28.980010px;}
.w32{width:28.980011px;}
.w5{width:30.780000px;}
.w18{width:34.199992px;}
.w21{width:34.199993px;}
.w38{width:34.380015px;}
.w22{width:35.099979px;}
.w2a{width:35.099997px;}
.w30{width:35.279983px;}
.w2d{width:35.280018px;}
.we{width:36.899986px;}
.w25{width:37.079956px;}
.w1d{width:37.260003px;}
.w29{width:39.419993px;}
.w37{width:43.919992px;}
.w39{width:46.259994px;}
.w3f{width:46.259996px;}
.w19{width:46.260028px;}
.w27{width:46.619994px;}
.w40{width:47.339984px;}
.w1b{width:47.340019px;}
.w3a{width:47.519989px;}
.w3{width:50.219999px;}
.w17{width:78.119985px;}
.w3d{width:78.479994px;}
.w14{width:86.039995px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3b{left:1.079991px;}
.x30{left:118.799998px;}
.x31{left:121.500000px;}
.x5{left:134.819996px;}
.x10{left:137.700002px;}
.x14{left:142.200002px;}
.x18{left:150.120002px;}
.xe{left:153.719999px;}
.x4e{left:156.060001px;}
.x83{left:162.000000px;}
.xd{left:163.620002px;}
.x57{left:165.419992px;}
.x73{left:169.020006px;}
.x7{left:180.719999px;}
.xb{left:182.699993px;}
.x58{left:185.219999px;}
.x72{left:198.000000px;}
.x47{left:204.300007px;}
.x7e{left:206.817098px;}
.x17{left:209.340002px;}
.x4f{left:210.599997px;}
.x48{left:212.400003px;}
.x7d{left:213.659368px;}
.x6c{left:216.000000px;}
.x81{left:219.780001px;}
.x8{left:221.939999px;}
.x59{left:224.639992px;}
.x11{left:227.520006px;}
.x80{left:229.500000px;}
.x1d{left:230.580008px;}
.x9{left:232.379998px;}
.x2b{left:235.979126px;}
.x82{left:238.855596px;}
.x2{left:246.599997px;}
.x32{left:248.039996px;}
.x12{left:250.020006px;}
.x69{left:255.960005px;}
.x76{left:260.461006px;}
.x2d{left:264.419992px;}
.x77{left:266.756148px;}
.x6a{left:275.039996px;}
.x50{left:276.840002px;}
.x33{left:278.639992px;}
.x5a{left:283.139992px;}
.x29{left:286.742430px;}
.x49{left:290.160015px;}
.x5b{left:292.139992px;}
.x2a{left:298.620810px;}
.x15{left:299.699993px;}
.x28{left:300.960904px;}
.x1e{left:302.939999px;}
.x2c{left:307.618606px;}
.x4a{left:309.420010px;}
.x13{left:313.019989px;}
.x34{left:315.360008px;}
.x7f{left:316.616382px;}
.x2e{left:317.699993px;}
.x5c{left:319.139992px;}
.xc{left:327.240006px;}
.x75{left:333.181528px;}
.x35{left:334.439999px;}
.x4b{left:342.899987px;}
.x51{left:344.519989px;}
.x27{left:347.940533px;}
.x6d{left:349.920010px;}
.x5d{left:354.420010px;}
.x5e{left:357.839985px;}
.x6f{left:359.819996px;}
.x78{left:360.899955px;}
.x5f{left:363.240006px;}
.x2f{left:368.100014px;}
.x3{left:369.899987px;}
.x36{left:390.060001px;}
.x1f{left:391.676977px;}
.x4c{left:392.759994px;}
.x20{left:398.341257px;}
.x4{left:399.420010px;}
.x6b{left:405.899987px;}
.x21{left:408.776056px;}
.x37{left:410.399987px;}
.x22{left:414.899001px;}
.x16{left:418.139992px;}
.x74{left:421.019989px;}
.x6e{left:424.259994px;}
.x60{left:428.759994px;}
.x61{left:432.180005px;}
.xf{left:434.879998px;}
.x62{left:437.579990px;}
.x4d{left:440.100014px;}
.x6{left:443.879998px;}
.x23{left:448.199841px;}
.x79{left:451.615223px;}
.xa{left:459.000000px;}
.x38{left:464.579990px;}
.x63{left:468.000000px;}
.x19{left:469.800007px;}
.x1c{left:484.920010px;}
.x39{left:486.540012px;}
.x70{left:493.379998px;}
.x64{left:496.980011px;}
.x52{left:498.779983px;}
.x1a{left:512.279983px;}
.x3a{left:516.600014px;}
.x53{left:517.680005px;}
.x3c{left:522.899987px;}
.x3d{left:526.319996px;}
.x1b{left:539.279983px;}
.x24{left:546.302015px;}
.x3e{left:549.180005px;}
.x54{left:552.779983px;}
.x55{left:556.379998px;}
.x56{left:567.000000px;}
.x3f{left:591.840019px;}
.x25{left:622.618324px;}
.x40{left:628.740006px;}
.x7a{left:636.477558px;}
.x26{left:638.998922px;}
.x7b{left:648.540507px;}
.x41{left:655.919975px;}
.x42{left:672.299973px;}
.x65{left:684.720017px;}
.x43{left:709.200027px;}
.x7c{left:713.877382px;}
.x44{left:728.460023px;}
.x66{left:738.000000px;}
.x45{left:761.940033px;}
.x67{left:765.720017px;}
.x46{left:781.559967px;}
.x1{left:783.000000px;}
.x71{left:791.100014px;}
.x68{left:794.700027px;}
@media print{
.v9{vertical-align:-57.612272pt;}
.v8{vertical-align:-38.393399pt;}
.v7{vertical-align:-18.559936pt;}
.v4{vertical-align:-3.839996pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.839996pt;}
.v2{vertical-align:7.679992pt;}
.v5{vertical-align:14.720000pt;}
.v1{vertical-align:16.640016pt;}
.v6{vertical-align:18.560000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032628pt;}
.ls4{letter-spacing:0.032688pt;}
.ls5{letter-spacing:0.032692pt;}
.ls6{letter-spacing:0.032716pt;}
.ls7{letter-spacing:0.032720pt;}
.ls2{letter-spacing:0.032748pt;}
.ls8{letter-spacing:0.032752pt;}
.lsd{letter-spacing:0.185200pt;}
.lsb{letter-spacing:0.264650pt;}
.ls0{letter-spacing:0.336444pt;}
.ls3{letter-spacing:0.672644pt;}
.ls11{letter-spacing:6.430324pt;}
.ls13{letter-spacing:10.270288pt;}
.ls14{letter-spacing:19.233666pt;}
.ls15{letter-spacing:19.233726pt;}
.ls12{letter-spacing:31.390160pt;}
.ls9{letter-spacing:40.993674pt;}
.lse{letter-spacing:40.993734pt;}
.lsc{letter-spacing:63.393638pt;}
.lsf{letter-spacing:310.707276pt;}
.ls10{letter-spacing:310.716002pt;}
.wsa{word-spacing:-13.279887pt;}
.ws4{word-spacing:-13.254800pt;}
.ws6{word-spacing:-11.999969pt;}
.ws2{word-spacing:-11.977300pt;}
.ws0{word-spacing:-10.699700pt;}
.ws8{word-spacing:-9.262420pt;}
.ws3{word-spacing:-8.623640pt;}
.ws1{word-spacing:-6.707270pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:127.679670pt;}
.ws9{word-spacing:213.770843pt;}
._62{margin-left:-8.078697pt;}
._5{margin-left:-3.342217pt;}
._6{margin-left:-2.334438pt;}
._2{margin-left:-1.320334pt;}
._0{width:1.062391pt;}
._1{width:2.177901pt;}
._4{width:3.151250pt;}
._a{width:4.805294pt;}
._9{width:5.724067pt;}
._8{width:7.307140pt;}
._7{width:8.536505pt;}
._18{width:9.437430pt;}
._3{width:10.378429pt;}
._19{width:11.399606pt;}
._1d{width:12.307082pt;}
._15{width:14.684311pt;}
._16{width:15.660418pt;}
._1b{width:16.866686pt;}
._1a{width:18.115584pt;}
._1e{width:19.261631pt;}
._21{width:20.808300pt;}
._20{width:22.383008pt;}
._1f{width:23.379460pt;}
._22{width:24.477888pt;}
._f{width:25.695322pt;}
._e{width:27.128848pt;}
._24{width:28.469303pt;}
._23{width:29.628413pt;}
._59{width:30.530982pt;}
._11{width:31.465031pt;}
._10{width:32.765866pt;}
._27{width:33.859561pt;}
._c{width:35.431037pt;}
._b{width:36.694271pt;}
._1c{width:37.908792pt;}
._25{width:38.890062pt;}
._2a{width:40.913840pt;}
._31{width:42.504001pt;}
._30{width:44.057362pt;}
._5a{width:45.098693pt;}
._14{width:47.131233pt;}
._5b{width:48.141434pt;}
._36{width:49.179228pt;}
._26{width:50.376731pt;}
._d{width:51.797751pt;}
._29{width:52.883259pt;}
._2c{width:54.757921pt;}
._2b{width:56.021891pt;}
._33{width:57.158825pt;}
._58{width:58.390358pt;}
._49{width:60.940500pt;}
._56{width:62.869859pt;}
._61{width:64.187676pt;}
._67{width:65.794820pt;}
._2e{width:67.181811pt;}
._2d{width:68.198081pt;}
._66{width:69.905194pt;}
._52{width:71.134784pt;}
._6e{width:72.157124pt;}
._32{width:73.369667pt;}
._72{width:75.738484pt;}
._17{width:77.264014pt;}
._64{width:78.307351pt;}
._65{width:79.211927pt;}
._57{width:81.855946pt;}
._4a{width:83.023268pt;}
._12{width:85.526868pt;}
._13{width:86.452076pt;}
._6a{width:87.756461pt;}
._50{width:88.932305pt;}
._34{width:91.785205pt;}
._4f{width:100.550607pt;}
._4b{width:104.529197pt;}
._74{width:115.051664pt;}
._73{width:116.120954pt;}
._53{width:118.212074pt;}
._5f{width:119.112495pt;}
._2f{width:122.366721pt;}
._28{width:123.928573pt;}
._4c{width:129.303383pt;}
._4d{width:133.798444pt;}
._4e{width:134.860835pt;}
._71{width:136.027991pt;}
._69{width:140.777660pt;}
._5c{width:154.124807pt;}
._68{width:173.370777pt;}
._51{width:180.061445pt;}
._54{width:186.719518pt;}
._5d{width:199.352192pt;}
._35{width:200.639482pt;}
._76{width:210.179628pt;}
._55{width:211.853204pt;}
._6b{width:240.783718pt;}
._6c{width:284.180905pt;}
._63{width:355.756825pt;}
._46{width:389.870892pt;}
._44{width:440.471688pt;}
._3d{width:462.677689pt;}
._45{width:473.796425pt;}
._39{width:504.878309pt;}
._41{width:524.841350pt;}
._47{width:540.357085pt;}
._3e{width:553.374775pt;}
._3f{width:558.781559pt;}
._60{width:570.882850pt;}
._43{width:586.802457pt;}
._48{width:597.072684pt;}
._3c{width:605.759503pt;}
._40{width:609.363276pt;}
._38{width:625.847187pt;}
._75{width:647.230498pt;}
._6f{width:661.296326pt;}
._3a{width:664.010007pt;}
._37{width:665.948994pt;}
._42{width:680.358480pt;}
._3b{width:690.210543pt;}
._6d{width:701.310082pt;}
._5e{width:754.329282pt;}
._70{width:764.757846pt;}
.fs3{font-size:26.829080pt;}
.fs4{font-size:31.939400pt;}
.fs7{font-size:34.494560pt;}
.fs9{font-size:37.049680pt;}
.fs2{font-size:42.798800pt;}
.fs5{font-size:47.909200pt;}
.fs8{font-size:47.999876pt;}
.fs0{font-size:53.019200pt;}
.fs1{font-size:53.119548pt;}
.fsb{font-size:58.880163pt;}
.fsa{font-size:63.878800pt;}
.fs6{font-size:84.958800pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:2.079987pt;}
.ye9{bottom:2.080002pt;}
.yeb{bottom:2.080017pt;}
.ya{bottom:31.680054pt;}
.y9{bottom:47.039978pt;}
.y8{bottom:59.520020pt;}
.y144{bottom:78.880005pt;}
.y3a{bottom:79.200012pt;}
.ye7{bottom:79.520020pt;}
.y9a{bottom:80.159973pt;}
.y141{bottom:81.919983pt;}
.y1e0{bottom:82.080017pt;}
.yb7{bottom:82.400024pt;}
.y1b4{bottom:84.799988pt;}
.y71{bottom:88.159973pt;}
.y125{bottom:89.760010pt;}
.y143{bottom:92.640015pt;}
.y39{bottom:94.559998pt;}
.ye6{bottom:94.880005pt;}
.y99{bottom:95.359985pt;}
.y192{bottom:97.119995pt;}
.y1df{bottom:97.440002pt;}
.y1b3{bottom:100.159973pt;}
.y70{bottom:103.359985pt;}
.y140{bottom:103.679993pt;}
.yb6{bottom:104.159973pt;}
.y142{bottom:106.719971pt;}
.y38{bottom:109.760010pt;}
.ye5{bottom:110.239990pt;}
.y98{bottom:110.719971pt;}
.y124{bottom:111.520020pt;}
.y191{bottom:112.479980pt;}
.y1de{bottom:112.799988pt;}
.y1b2{bottom:115.359985pt;}
.y6f{bottom:118.719971pt;}
.y37{bottom:125.119995pt;}
.y123{bottom:125.280029pt;}
.ye4{bottom:125.599976pt;}
.y97{bottom:126.080017pt;}
.y163{bottom:127.201677pt;}
.y190{bottom:127.679993pt;}
.y1dd{bottom:130.719971pt;}
.y1b1{bottom:133.440002pt;}
.y6e{bottom:134.080017pt;}
.y36{bottom:140.479980pt;}
.ye3{bottom:140.799988pt;}
.y96{bottom:141.440002pt;}
.y162{bottom:142.394350pt;}
.y18f{bottom:143.039978pt;}
.y1dc{bottom:146.080017pt;}
.y1ff{bottom:148.159973pt;}
.y113{bottom:148.479980pt;}
.y1b0{bottom:148.799988pt;}
.y6d{bottom:149.440002pt;}
.yc2{bottom:149.919570pt;}
.y35{bottom:155.840027pt;}
.ye2{bottom:156.159973pt;}
.y95{bottom:156.799988pt;}
.y161{bottom:157.609654pt;}
.y18e{bottom:158.400024pt;}
.y13d{bottom:159.360421pt;}
.y1db{bottom:161.440002pt;}
.y160{bottom:162.890274pt;}
.y1fe{bottom:163.359985pt;}
.y112{bottom:163.840027pt;}
.y1af{bottom:164.159973pt;}
.y6c{bottom:164.799988pt;}
.yb8{bottom:170.083078pt;}
.yc3{bottom:170.562799pt;}
.y34{bottom:171.200012pt;}
.ye1{bottom:171.520020pt;}
.y94{bottom:172.159973pt;}
.y18d{bottom:173.760010pt;}
.y15f{bottom:176.649191pt;}
.y1da{bottom:176.799988pt;}
.y111{bottom:179.200012pt;}
.y1ae{bottom:179.359985pt;}
.y6b{bottom:180.159973pt;}
.y1fd{bottom:181.440002pt;}
.yb9{bottom:183.358191pt;}
.y13c{bottom:184.801073pt;}
.y33{bottom:186.559998pt;}
.y12f{bottom:187.038601pt;}
.y93{bottom:187.359985pt;}
.y18c{bottom:189.119995pt;}
.y15e{bottom:190.724250pt;}
.y1d9{bottom:192.159973pt;}
.ye0{bottom:194.559998pt;}
.y1ad{bottom:194.719971pt;}
.y6a{bottom:195.359985pt;}
.yba{bottom:196.644318pt;}
.yc4{bottom:197.124039pt;}
.y132{bottom:199.039275pt;}
.y1fc{bottom:199.359985pt;}
.y32{bottom:201.760010pt;}
.y92{bottom:202.719971pt;}
.y15d{bottom:202.728315pt;}
.y18b{bottom:204.479980pt;}
.y130{bottom:206.081521pt;}
.y1d8{bottom:207.359985pt;}
.ybb{bottom:209.919431pt;}
.y110{bottom:209.919983pt;}
.y1ac{bottom:210.080017pt;}
.y69{bottom:210.719971pt;}
.y12b{bottom:211.999461pt;}
.y12d{bottom:216.159592pt;}
.ydf{bottom:216.320007pt;}
.y15c{bottom:216.487232pt;}
.y31{bottom:217.119995pt;}
.y1fb{bottom:217.440002pt;}
.y91{bottom:218.080017pt;}
.y18a{bottom:222.400024pt;}
.y1d7{bottom:222.719971pt;}
.y133{bottom:222.879546pt;}
.ybc{bottom:223.201839pt;}
.yc5{bottom:223.685208pt;}
.y10f{bottom:225.280029pt;}
.y1ab{bottom:225.440002pt;}
.y68{bottom:226.080017pt;}
.y15b{bottom:230.408256pt;}
.y15a{bottom:230.890543pt;}
.y30{bottom:232.479980pt;}
.y90{bottom:233.440002pt;}
.y12c{bottom:233.441056pt;}
.y1fa{bottom:235.359985pt;}
.ybd{bottom:236.480599pt;}
.y189{bottom:237.760010pt;}
.y1d6{bottom:238.080017pt;}
.yde{bottom:238.400024pt;}
.y10e{bottom:240.479980pt;}
.y67{bottom:241.440002pt;}
.y1aa{bottom:243.359985pt;}
.y159{bottom:244.649460pt;}
.y134{bottom:246.723536pt;}
.y2f{bottom:247.840027pt;}
.y8f{bottom:248.799988pt;}
.ybe{bottom:249.763079pt;}
.yc6{bottom:250.242800pt;}
.y1f9{bottom:250.719971pt;}
.y188{bottom:253.119995pt;}
.y10d{bottom:255.840027pt;}
.y1d5{bottom:256.000000pt;}
.y66{bottom:256.799988pt;}
.y158{bottom:258.566448pt;}
.y1a9{bottom:258.719971pt;}
.ydd{bottom:259.679993pt;}
.ybf{bottom:263.041839pt;}
.y2e{bottom:263.200012pt;}
.y8e{bottom:264.159973pt;}
.y1f8{bottom:266.080017pt;}
.y187{bottom:268.479980pt;}
.y135{bottom:270.721234pt;}
.y10c{bottom:271.200012pt;}
.y1d4{bottom:271.359985pt;}
.y65{bottom:272.159973pt;}
.y157{bottom:272.325364pt;}
.y1a8{bottom:274.080017pt;}
.yc0{bottom:276.324247pt;}
.yc7{bottom:276.803968pt;}
.y2d{bottom:278.400024pt;}
.y8d{bottom:279.359985pt;}
.ydc{bottom:281.119995pt;}
.y1f7{bottom:281.440002pt;}
.y186{bottom:283.679993pt;}
.y156{bottom:286.408497pt;}
.y10b{bottom:286.559998pt;}
.y1d3{bottom:286.719971pt;}
.y64{bottom:287.359985pt;}
.y1a7{bottom:289.440002pt;}
.yc1{bottom:289.603008pt;}
.y13f{bottom:292.799988pt;}
.y2c{bottom:293.760010pt;}
.y136{bottom:294.565153pt;}
.y8c{bottom:294.719971pt;}
.y155{bottom:296.483493pt;}
.y1f6{bottom:296.799988pt;}
.y185{bottom:301.760010pt;}
.y10a{bottom:301.919983pt;}
.y1d2{bottom:302.080017pt;}
.ydb{bottom:302.400024pt;}
.y63{bottom:302.719971pt;}
.y1a6{bottom:304.799988pt;}
.y2b{bottom:309.119995pt;}
.y8b{bottom:310.080017pt;}
.y154{bottom:310.246446pt;}
.y1f5{bottom:312.000000pt;}
.y13e{bottom:314.719971pt;}
.y109{bottom:317.119995pt;}
.y1d1{bottom:317.440002pt;}
.y62{bottom:318.080017pt;}
.y137{bottom:318.401776pt;}
.y1a5{bottom:322.719971pt;}
.y152{bottom:323.044905pt;}
.yda{bottom:323.679993pt;}
.y153{bottom:324.329579pt;}
.y2a{bottom:324.479980pt;}
.y8a{bottom:325.440002pt;}
.y1f4{bottom:327.359985pt;}
.y108{bottom:332.479980pt;}
.y1d0{bottom:332.799988pt;}
.y61{bottom:333.440002pt;}
.y151{bottom:336.803821pt;}
.y1a4{bottom:338.080017pt;}
.y29{bottom:339.840027pt;}
.y89{bottom:340.799988pt;}
.y138{bottom:342.399546pt;}
.yd9{bottom:345.119995pt;}
.y1f3{bottom:345.440002pt;}
.y184{bottom:347.679993pt;}
.y107{bottom:347.840027pt;}
.yb5{bottom:348.000000pt;}
.y60{bottom:348.799988pt;}
.y1cf{bottom:350.719971pt;}
.y150{bottom:350.724846pt;}
.y1a3{bottom:353.440002pt;}
.y28{bottom:355.200012pt;}
.y88{bottom:356.000000pt;}
.y1f2{bottom:360.799988pt;}
.y183{bottom:363.039978pt;}
.y106{bottom:363.200012pt;}
.yb4{bottom:363.359985pt;}
.y5f{bottom:364.000000pt;}
.y14f{bottom:364.487799pt;}
.y1ce{bottom:366.080017pt;}
.y139{bottom:366.243465pt;}
.yd8{bottom:366.400024pt;}
.y1a2{bottom:368.799988pt;}
.y27{bottom:370.400024pt;}
.y87{bottom:371.359985pt;}
.y1f1{bottom:376.000000pt;}
.y182{bottom:378.400024pt;}
.y105{bottom:378.559998pt;}
.y14e{bottom:378.562858pt;}
.yb3{bottom:378.719971pt;}
.y5e{bottom:379.359985pt;}
.y1cd{bottom:381.440002pt;}
.y131{bottom:382.884062pt;}
.y14d{bottom:383.685407pt;}
.y1a1{bottom:384.000000pt;}
.y26{bottom:385.760010pt;}
.y86{bottom:386.719971pt;}
.yd7{bottom:387.679993pt;}
.y13a{bottom:390.241235pt;}
.y1f0{bottom:391.359985pt;}
.y181{bottom:393.760010pt;}
.y104{bottom:393.919983pt;}
.yb2{bottom:394.080017pt;}
.y5d{bottom:394.719971pt;}
.y12e{bottom:394.881087pt;}
.y1cc{bottom:396.799988pt;}
.y14c{bottom:397.444363pt;}
.y1a0{bottom:399.359985pt;}
.y25{bottom:401.119995pt;}
.y85{bottom:402.080017pt;}
.y1ef{bottom:406.719971pt;}
.yd6{bottom:409.119995pt;}
.yb1{bottom:409.440002pt;}
.y5c{bottom:410.080017pt;}
.y14b{bottom:411.523419pt;}
.y1cb{bottom:412.000000pt;}
.y13b{bottom:414.085154pt;}
.y19f{bottom:414.719971pt;}
.y14a{bottom:415.847658pt;}
.y24{bottom:416.479980pt;}
.y84{bottom:417.440002pt;}
.y1ee{bottom:422.080017pt;}
.y103{bottom:424.479980pt;}
.yb0{bottom:424.799988pt;}
.y5b{bottom:425.440002pt;}
.y180{bottom:427.039978pt;}
.y1ca{bottom:427.359985pt;}
.y149{bottom:429.606575pt;}
.y19e{bottom:430.080017pt;}
.yd5{bottom:430.400024pt;}
.y23{bottom:431.840027pt;}
.y83{bottom:432.799988pt;}
.y122{bottom:435.359985pt;}
.y1ed{bottom:437.440002pt;}
.y102{bottom:439.840027pt;}
.yaf{bottom:440.000000pt;}
.y5a{bottom:440.799988pt;}
.y17f{bottom:442.400024pt;}
.y1c9{bottom:442.719971pt;}
.y148{bottom:443.369568pt;}
.y22{bottom:447.200012pt;}
.y82{bottom:448.000000pt;}
.y121{bottom:450.719971pt;}
.yd4{bottom:451.679993pt;}
.y101{bottom:455.200012pt;}
.yae{bottom:455.359985pt;}
.y59{bottom:456.000000pt;}
.y147{bottom:457.282479pt;}
.y17e{bottom:457.760010pt;}
.y1c8{bottom:460.640015pt;}
.y21{bottom:462.400024pt;}
.y81{bottom:463.359985pt;}
.y120{bottom:466.080017pt;}
.y100{bottom:470.559998pt;}
.yad{bottom:470.719971pt;}
.y146{bottom:471.041395pt;}
.y58{bottom:471.359985pt;}
.yd3{bottom:473.119995pt;}
.y1c7{bottom:476.000000pt;}
.y20{bottom:477.760010pt;}
.y80{bottom:478.719971pt;}
.y11f{bottom:481.440002pt;}
.y145{bottom:485.128565pt;}
.yff{bottom:485.919983pt;}
.yac{bottom:486.080017pt;}
.y57{bottom:486.719971pt;}
.y17d{bottom:488.320007pt;}
.y1c6{bottom:491.359985pt;}
.y1f{bottom:493.119995pt;}
.y7f{bottom:494.080017pt;}
.yd2{bottom:494.400024pt;}
.y11e{bottom:496.640015pt;}
.yfe{bottom:501.119995pt;}
.yab{bottom:501.440002pt;}
.y56{bottom:502.080017pt;}
.y17c{bottom:503.679993pt;}
.y1c5{bottom:506.719971pt;}
.y1e{bottom:508.479980pt;}
.y7e{bottom:509.440002pt;}
.y11d{bottom:512.000000pt;}
.yd1{bottom:515.679993pt;}
.yfd{bottom:516.479980pt;}
.yaa{bottom:516.799988pt;}
.y55{bottom:517.440002pt;}
.y17b{bottom:521.760010pt;}
.y1c4{bottom:522.080017pt;}
.y1d{bottom:523.840027pt;}
.y7d{bottom:524.799988pt;}
.y11c{bottom:527.359985pt;}
.yfc{bottom:531.840027pt;}
.ya9{bottom:532.000000pt;}
.y9b{bottom:532.640015pt;}
.y54{bottom:532.799988pt;}
.yd0{bottom:537.119995pt;}
.y1c3{bottom:537.440002pt;}
.y7c{bottom:540.000000pt;}
.y11b{bottom:542.719971pt;}
.y1c{bottom:543.840027pt;}
.yfb{bottom:547.200012pt;}
.ya8{bottom:547.359985pt;}
.y53{bottom:548.000000pt;}
.y17a{bottom:552.320007pt;}
.y1c2{bottom:552.799988pt;}
.y1b{bottom:554.399994pt;}
.y7b{bottom:555.359985pt;}
.y11a{bottom:558.079987pt;}
.ycf{bottom:558.399994pt;}
.ya7{bottom:562.720001pt;}
.y52{bottom:563.359985pt;}
.y1ec{bottom:565.440002pt;}
.y179{bottom:567.679993pt;}
.yfa{bottom:570.239990pt;}
.y7a{bottom:570.720001pt;}
.y119{bottom:573.440002pt;}
.y1a{bottom:577.440002pt;}
.ya6{bottom:578.079987pt;}
.y51{bottom:578.720001pt;}
.yce{bottom:579.679993pt;}
.y1eb{bottom:580.799988pt;}
.yf9{bottom:582.079987pt;}
.y178{bottom:583.040009pt;}
.y79{bottom:586.079987pt;}
.y118{bottom:588.640015pt;}
.y19d{bottom:588.799988pt;}
.y50{bottom:594.079987pt;}
.yf8{bottom:594.880005pt;}
.y1ea{bottom:596.000000pt;}
.y177{bottom:598.399994pt;}
.ycd{bottom:601.119995pt;}
.ya5{bottom:601.279999pt;}
.y78{bottom:601.440002pt;}
.y117{bottom:604.000000pt;}
.y19{bottom:605.119995pt;}
.yf7{bottom:605.600006pt;}
.y4f{bottom:609.440002pt;}
.y1e9{bottom:611.359985pt;}
.y176{bottom:613.760010pt;}
.y77{bottom:616.640015pt;}
.yf6{bottom:617.119995pt;}
.y116{bottom:619.359985pt;}
.ycc{bottom:622.399994pt;}
.y18{bottom:623.359985pt;}
.y4e{bottom:624.640015pt;}
.y1e8{bottom:626.720001pt;}
.y175{bottom:629.119995pt;}
.y76{bottom:632.000000pt;}
.y19c{bottom:634.720001pt;}
.yf5{bottom:636.320007pt;}
.y4d{bottom:640.000000pt;}
.y1e7{bottom:642.079987pt;}
.y115{bottom:642.399994pt;}
.ycb{bottom:643.679993pt;}
.y174{bottom:647.040009pt;}
.y75{bottom:647.359985pt;}
.y19b{bottom:650.079987pt;}
.y17{bottom:651.040009pt;}
.y4c{bottom:655.359985pt;}
.yf3{bottom:657.600006pt;}
.y1e6{bottom:660.000000pt;}
.y173{bottom:662.399994pt;}
.y74{bottom:662.720001pt;}
.y114{bottom:664.160004pt;}
.yca{bottom:665.440002pt;}
.y16{bottom:669.440002pt;}
.yf2{bottom:670.399994pt;}
.y4b{bottom:670.720001pt;}
.y1e5{bottom:675.359985pt;}
.y172{bottom:677.760010pt;}
.y73{bottom:678.079987pt;}
.yc9{bottom:679.359985pt;}
.yf1{bottom:681.119995pt;}
.y19a{bottom:683.359985pt;}
.y4a{bottom:686.079987pt;}
.yf0{bottom:690.559998pt;}
.y1e4{bottom:690.720001pt;}
.y171{bottom:693.119995pt;}
.y72{bottom:693.440002pt;}
.y1c1{bottom:696.000000pt;}
.y15{bottom:697.119995pt;}
.y12a{bottom:698.239187pt;}
.y199{bottom:698.720001pt;}
.yc8{bottom:701.279999pt;}
.y49{bottom:701.440002pt;}
.y1e3{bottom:706.079987pt;}
.y170{bottom:708.320007pt;}
.ya4{bottom:708.640015pt;}
.y1c0{bottom:711.359985pt;}
.yef{bottom:711.839996pt;}
.y198{bottom:714.079987pt;}
.y14{bottom:715.359985pt;}
.y48{bottom:716.640015pt;}
.y16f{bottom:723.679993pt;}
.ya3{bottom:724.000000pt;}
.y1bf{bottom:726.720001pt;}
.y197{bottom:729.440002pt;}
.y47{bottom:732.000000pt;}
.yee{bottom:733.119995pt;}
.y13{bottom:738.399994pt;}
.ya2{bottom:739.359985pt;}
.y16e{bottom:741.600006pt;}
.y1be{bottom:742.079987pt;}
.y196{bottom:744.640015pt;}
.yed{bottom:745.920013pt;}
.y46{bottom:747.359985pt;}
.ya1{bottom:754.720001pt;}
.yec{bottom:756.640015pt;}
.y16d{bottom:756.959991pt;}
.y1bd{bottom:757.440002pt;}
.y195{bottom:760.000000pt;}
.y45{bottom:762.720001pt;}
.y12{bottom:766.079987pt;}
.ya0{bottom:770.079987pt;}
.y127{bottom:770.561281pt;}
.y16c{bottom:772.320007pt;}
.y1bc{bottom:772.640015pt;}
.y194{bottom:775.359985pt;}
.y44{bottom:778.079987pt;}
.y126{bottom:784.319047pt;}
.y9f{bottom:785.440002pt;}
.yea{bottom:787.359985pt;}
.y16b{bottom:787.679993pt;}
.y1bb{bottom:788.000000pt;}
.y11{bottom:789.119995pt;}
.y193{bottom:790.720001pt;}
.y43{bottom:793.440002pt;}
.y9e{bottom:800.639999pt;}
.y16a{bottom:803.039993pt;}
.y1e2{bottom:803.360001pt;}
.y10{bottom:803.679993pt;}
.y1ba{bottom:806.080002pt;}
.y42{bottom:808.639999pt;}
.y9d{bottom:816.000000pt;}
.y169{bottom:818.399994pt;}
.yf{bottom:819.039993pt;}
.y1e1{bottom:821.279999pt;}
.y1b9{bottom:821.440002pt;}
.y41{bottom:824.000000pt;}
.y9c{bottom:831.360001pt;}
.y168{bottom:836.320007pt;}
.y1b8{bottom:836.639999pt;}
.y40{bottom:839.360001pt;}
.ye8{bottom:840.639999pt;}
.ye{bottom:842.399994pt;}
.y167{bottom:851.679993pt;}
.y1b7{bottom:852.000000pt;}
.y3f{bottom:854.720001pt;}
.yd{bottom:859.520004pt;}
.y166{bottom:867.039993pt;}
.y1b6{bottom:867.360001pt;}
.y3e{bottom:870.080002pt;}
.y165{bottom:882.399994pt;}
.yc{bottom:884.160004pt;}
.y1b5{bottom:885.279999pt;}
.y3d{bottom:885.440002pt;}
.y164{bottom:897.759995pt;}
.y129{bottom:898.558990pt;}
.y3c{bottom:900.639999pt;}
.yb{bottom:908.639999pt;}
.y128{bottom:912.322630pt;}
.y3b{bottom:916.000000pt;}
.y7{bottom:933.279999pt;}
.y6{bottom:944.160004pt;}
.y5{bottom:954.720001pt;}
.y4{bottom:967.199997pt;}
.y3{bottom:980.159394pt;}
.y2{bottom:980.959999pt;}
.y1{bottom:995.520000pt;}
.h19{height:8.320007pt;}
.h1a{height:8.480011pt;}
.h1d{height:10.399993pt;}
.h13{height:10.399994pt;}
.h18{height:10.400024pt;}
.h15{height:10.400025pt;}
.h1c{height:10.559997pt;}
.h1b{height:10.559998pt;}
.h16{height:10.560028pt;}
.hb{height:28.767924pt;}
.h11{height:30.197396pt;}
.h14{height:30.537041pt;}
.h17{height:30.898854pt;}
.h6{height:31.767850pt;}
.h12{height:35.693530pt;}
.hd{height:37.408566pt;}
.h3{height:37.479369pt;}
.he{height:38.599427pt;}
.h4{height:39.015050pt;}
.h5{height:39.447842pt;}
.hf{height:39.487661pt;}
.h10{height:40.031147pt;}
.h7{height:40.935030pt;}
.h9{height:42.898203pt;}
.ha{height:42.898259pt;}
.h1{height:43.699419pt;}
.h2{height:44.217184pt;}
.h1f{height:44.300873pt;}
.hc{height:47.327984pt;}
.h20{height:49.105136pt;}
.h1e{height:53.273921pt;}
.h8{height:70.854312pt;}
.h0{height:1056.000000pt;}
.w1{width:2.400002pt;}
.w16{width:2.400009pt;}
.w2c{width:3.039978pt;}
.w28{width:3.039993pt;}
.wc{width:3.040008pt;}
.w2f{width:3.040009pt;}
.w35{width:3.040039pt;}
.w1a{width:3.199982pt;}
.w2b{width:3.200012pt;}
.w23{width:3.200013pt;}
.w12{width:4.639953pt;}
.w26{width:4.639954pt;}
.wa{width:4.639984pt;}
.w2{width:4.639999pt;}
.w4{width:4.640000pt;}
.w6{width:4.640014pt;}
.wf{width:4.640015pt;}
.w31{width:4.799987pt;}
.w15{width:4.799988pt;}
.w2e{width:4.800018pt;}
.wb{width:5.599976pt;}
.w24{width:9.440002pt;}
.w10{width:14.880005pt;}
.w7{width:16.959992pt;}
.w3e{width:16.960022pt;}
.w11{width:17.119996pt;}
.w13{width:17.439942pt;}
.w8{width:18.079987pt;}
.w9{width:19.520020pt;}
.wd{width:20.320008pt;}
.w20{width:25.599975pt;}
.w34{width:25.599976pt;}
.w1e{width:25.599991pt;}
.w1f{width:25.600006pt;}
.w3b{width:25.600007pt;}
.w3c{width:25.600036pt;}
.w33{width:25.600037pt;}
.w1c{width:25.759979pt;}
.w36{width:25.760009pt;}
.w32{width:25.760010pt;}
.w5{width:27.360000pt;}
.w18{width:30.399993pt;}
.w21{width:30.399994pt;}
.w38{width:30.560013pt;}
.w22{width:31.199981pt;}
.w2a{width:31.199997pt;}
.w30{width:31.359985pt;}
.w2d{width:31.360016pt;}
.we{width:32.799988pt;}
.w25{width:32.959961pt;}
.w1d{width:33.120003pt;}
.w29{width:35.039994pt;}
.w37{width:39.039993pt;}
.w39{width:41.119995pt;}
.w3f{width:41.119996pt;}
.w19{width:41.120025pt;}
.w27{width:41.439995pt;}
.w40{width:42.079986pt;}
.w1b{width:42.080017pt;}
.w3a{width:42.239990pt;}
.w3{width:44.639999pt;}
.w17{width:69.439987pt;}
.w3d{width:69.759995pt;}
.w14{width:76.479996pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:0.959992pt;}
.x30{left:105.599998pt;}
.x31{left:108.000000pt;}
.x5{left:119.839996pt;}
.x10{left:122.400002pt;}
.x14{left:126.400002pt;}
.x18{left:133.440002pt;}
.xe{left:136.639999pt;}
.x4e{left:138.720001pt;}
.x83{left:144.000000pt;}
.xd{left:145.440002pt;}
.x57{left:147.039993pt;}
.x73{left:150.240005pt;}
.x7{left:160.639999pt;}
.xb{left:162.399994pt;}
.x58{left:164.639999pt;}
.x72{left:176.000000pt;}
.x47{left:181.600006pt;}
.x7e{left:183.837420pt;}
.x17{left:186.080002pt;}
.x4f{left:187.199997pt;}
.x48{left:188.800003pt;}
.x7d{left:189.919439pt;}
.x6c{left:192.000000pt;}
.x81{left:195.360001pt;}
.x8{left:197.279999pt;}
.x59{left:199.679993pt;}
.x11{left:202.240005pt;}
.x80{left:204.000000pt;}
.x1d{left:204.960007pt;}
.x9{left:206.559998pt;}
.x2b{left:209.759223pt;}
.x82{left:212.316085pt;}
.x2{left:219.199997pt;}
.x32{left:220.479996pt;}
.x12{left:222.240005pt;}
.x69{left:227.520004pt;}
.x76{left:231.520895pt;}
.x2d{left:235.039993pt;}
.x77{left:237.116576pt;}
.x6a{left:244.479996pt;}
.x50{left:246.080002pt;}
.x33{left:247.679993pt;}
.x5a{left:251.679993pt;}
.x29{left:254.882160pt;}
.x49{left:257.920013pt;}
.x5b{left:259.679993pt;}
.x2a{left:265.440720pt;}
.x15{left:266.399994pt;}
.x28{left:267.520804pt;}
.x1e{left:269.279999pt;}
.x2c{left:273.438761pt;}
.x4a{left:275.040009pt;}
.x13{left:278.239990pt;}
.x34{left:280.320007pt;}
.x7f{left:281.436784pt;}
.x2e{left:282.399994pt;}
.x5c{left:283.679993pt;}
.xc{left:290.880005pt;}
.x75{left:296.161358pt;}
.x35{left:297.279999pt;}
.x4b{left:304.799988pt;}
.x51{left:306.239990pt;}
.x27{left:309.280474pt;}
.x6d{left:311.040009pt;}
.x5d{left:315.040009pt;}
.x5e{left:318.079987pt;}
.x6f{left:319.839996pt;}
.x78{left:320.799960pt;}
.x5f{left:322.880005pt;}
.x2f{left:327.200012pt;}
.x3{left:328.799988pt;}
.x36{left:346.720001pt;}
.x1f{left:348.157313pt;}
.x4c{left:349.119995pt;}
.x20{left:354.081118pt;}
.x4{left:355.040009pt;}
.x6b{left:360.799988pt;}
.x21{left:363.356495pt;}
.x37{left:364.799988pt;}
.x22{left:368.799112pt;}
.x16{left:371.679993pt;}
.x74{left:374.239990pt;}
.x6e{left:377.119995pt;}
.x60{left:381.119995pt;}
.x61{left:384.160004pt;}
.xf{left:386.559998pt;}
.x62{left:388.959991pt;}
.x4d{left:391.200012pt;}
.x6{left:394.559998pt;}
.x23{left:398.399859pt;}
.x79{left:401.435754pt;}
.xa{left:408.000000pt;}
.x38{left:412.959991pt;}
.x63{left:416.000000pt;}
.x19{left:417.600006pt;}
.x1c{left:431.040009pt;}
.x39{left:432.480011pt;}
.x70{left:438.559998pt;}
.x64{left:441.760010pt;}
.x52{left:443.359985pt;}
.x1a{left:455.359985pt;}
.x3a{left:459.200012pt;}
.x53{left:460.160004pt;}
.x3c{left:464.799988pt;}
.x3d{left:467.839996pt;}
.x1b{left:479.359985pt;}
.x24{left:485.601791pt;}
.x3e{left:488.160004pt;}
.x54{left:491.359985pt;}
.x55{left:494.559998pt;}
.x56{left:504.000000pt;}
.x3f{left:526.080017pt;}
.x25{left:553.438510pt;}
.x40{left:558.880005pt;}
.x7a{left:565.757829pt;}
.x26{left:567.999041pt;}
.x7b{left:576.480451pt;}
.x41{left:583.039978pt;}
.x42{left:597.599976pt;}
.x65{left:608.640015pt;}
.x43{left:630.400024pt;}
.x7c{left:634.557673pt;}
.x44{left:647.520020pt;}
.x66{left:656.000000pt;}
.x45{left:677.280029pt;}
.x67{left:680.640015pt;}
.x46{left:694.719971pt;}
.x1{left:696.000000pt;}
.x71{left:703.200012pt;}
.x68{left:706.400024pt;}
}




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