
    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_062da8f9e5448e0ebd3b6bc1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_eae25004a6e93f364435ea13.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.955078;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;}
.m6{transform:matrix(0.000000,0.250074,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250074,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250074,-0.250000,0.000000,0,0);}
.m5{transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.900641px;}
.v8{vertical-align:30.981366px;}
.va{vertical-align:33.117096px;}
.v3{vertical-align:35.999874px;}
.v2{vertical-align:42.503784px;}
.v4{vertical-align:48.229857px;}
.v7{vertical-align:51.108182px;}
.v1{vertical-align:54.702976px;}
.v9{vertical-align:61.936500px;}
.v5{vertical-align:102.972423px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:2.179705px;}
.ls4a{letter-spacing:2.882797px;}
.ls1a{letter-spacing:2.917954px;}
.ls1b{letter-spacing:3.400897px;}
.ls23{letter-spacing:3.585964px;}
.ls16{letter-spacing:3.621013px;}
.ls42{letter-spacing:3.621047px;}
.ls2f{letter-spacing:3.621154px;}
.ls39{letter-spacing:5.071226px;}
.ls1d{letter-spacing:6.258274px;}
.ls4c{letter-spacing:6.258381px;}
.ls1f{letter-spacing:6.258488px;}
.ls3f{letter-spacing:6.293464px;}
.ls45{letter-spacing:6.293679px;}
.ls40{letter-spacing:6.503736px;}
.ls3c{letter-spacing:7.207010px;}
.ls1e{letter-spacing:8.630881px;}
.ls2{letter-spacing:8.648476px;}
.ls41{letter-spacing:8.652982px;}
.ls35{letter-spacing:9.351642px;}
.ls38{letter-spacing:9.386567px;}
.ls46{letter-spacing:9.386618px;}
.ls3e{letter-spacing:10.089841px;}
.ls18{letter-spacing:14.414087px;}
.ls11{letter-spacing:15.152229px;}
.ls32{letter-spacing:15.152336px;}
.ls4{letter-spacing:15.820238px;}
.ls2a{letter-spacing:15.855429px;}
.ls2d{letter-spacing:16.593571px;}
.ls6{letter-spacing:16.593645px;}
.lsc{letter-spacing:17.296811px;}
.ls49{letter-spacing:18.738226px;}
.ls1c{letter-spacing:19.256252px;}
.ls43{letter-spacing:19.476476px;}
.ls19{letter-spacing:22.324008px;}
.ls3b{letter-spacing:25.242137px;}
.ls27{letter-spacing:25.945196px;}
.ls29{letter-spacing:25.945303px;}
.ls13{letter-spacing:26.683553px;}
.ls2c{letter-spacing:26.848892px;}
.ls8{letter-spacing:28.089670px;}
.ls14{letter-spacing:28.581021px;}
.ls3d{letter-spacing:28.616318px;}
.lse{letter-spacing:28.792836px;}
.ls9{letter-spacing:29.319377px;}
.lsf{letter-spacing:29.354568px;}
.ls2e{letter-spacing:31.675667px;}
.lsb{letter-spacing:32.905267px;}
.ls12{letter-spacing:32.905374px;}
.ls21{letter-spacing:32.940458px;}
.lsd{letter-spacing:32.940565px;}
.ls17{letter-spacing:33.643517px;}
.ls5{letter-spacing:33.643624px;}
.ls7{letter-spacing:33.643731px;}
.ls34{letter-spacing:38.179471px;}
.ls15{letter-spacing:38.183977px;}
.ls33{letter-spacing:38.882852px;}
.ls44{letter-spacing:44.648299px;}
.ls3{letter-spacing:51.152136px;}
.ls4e{letter-spacing:52.582922px;}
.ls47{letter-spacing:53.077721px;}
.ls37{letter-spacing:53.296792px;}
.ls36{letter-spacing:53.824661px;}
.ls25{letter-spacing:56.670866px;}
.ls10{letter-spacing:56.882574px;}
.lsa{letter-spacing:56.917764px;}
.ls26{letter-spacing:60.503654px;}
.ls30{letter-spacing:60.503761px;}
.ls48{letter-spacing:62.436527px;}
.ls2b{letter-spacing:69.890396px;}
.ls22{letter-spacing:80.683363px;}
.ls1{letter-spacing:102.760647px;}
.ls24{letter-spacing:117.421593px;}
.ls31{letter-spacing:159.187129px;}
.ls28{letter-spacing:159.934283px;}
.ls4d{letter-spacing:180.562575px;}
.ls4b{letter-spacing:189.421447px;}
.ls3a{letter-spacing:243.210878px;}
.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;}
}
.wse{word-spacing:-71.999814px;}
.ws6{word-spacing:-60.803843px;}
.ws26{word-spacing:-54.697360px;}
.ws44{word-spacing:-53.912542px;}
.ws27{word-spacing:-53.239113px;}
.ws47{word-spacing:-47.427197px;}
.ws1f{word-spacing:-44.613149px;}
.ws1c{word-spacing:-43.874953px;}
.ws1b{word-spacing:-43.206978px;}
.ws4{word-spacing:-40.535895px;}
.ws38{word-spacing:-37.293223px;}
.wsa{word-spacing:-33.803913px;}
.ws7{word-spacing:-33.047915px;}
.ws1d{word-spacing:-32.367591px;}
.ws19{word-spacing:-30.944534px;}
.ws11{word-spacing:-30.931762px;}
.ws2f{word-spacing:-30.930286px;}
.ws56{word-spacing:-30.834526px;}
.wsc{word-spacing:-30.401922px;}
.ws51{word-spacing:-30.259970px;}
.ws1e{word-spacing:-30.228703px;}
.ws16{word-spacing:-30.193512px;}
.ws22{word-spacing:-30.176680px;}
.ws20{word-spacing:-30.176573px;}
.ws3d{word-spacing:-29.972692px;}
.ws2c{word-spacing:-29.876932px;}
.ws58{word-spacing:-29.302376px;}
.ws46{word-spacing:-29.015098px;}
.ws2{word-spacing:-27.503929px;}
.ws40{word-spacing:-27.159249px;}
.ws8{word-spacing:-25.297919px;}
.wsd{word-spacing:-24.514406px;}
.ws30{word-spacing:-23.903938px;}
.ws50{word-spacing:-23.269534px;}
.ws2b{word-spacing:-23.183940px;}
.ws1a{word-spacing:-23.027269px;}
.ws18{word-spacing:-22.992132px;}
.ws10{word-spacing:-22.535942px;}
.ws2a{word-spacing:-22.463942px;}
.ws59{word-spacing:-21.815944px;}
.ws3f{word-spacing:-21.329339px;}
.ws5{word-spacing:-21.311945px;}
.ws32{word-spacing:-20.269496px;}
.ws3{word-spacing:-19.871949px;}
.ws2d{word-spacing:-19.655949px;}
.ws55{word-spacing:-18.768842px;}
.ws9{word-spacing:-18.431952px;}
.ws5b{word-spacing:-17.927954px;}
.ws2e{word-spacing:-17.639954px;}
.ws52{word-spacing:-17.428211px;}
.ws31{word-spacing:-16.991956px;}
.ws3e{word-spacing:-16.901956px;}
.ws4d{word-spacing:-16.361958px;}
.ws0{word-spacing:-12.671967px;}
.ws1{word-spacing:-12.455968px;}
.ws42{word-spacing:-11.778406px;}
.ws54{word-spacing:-6.320120px;}
.ws17{word-spacing:-5.724748px;}
.ws43{word-spacing:-5.362526px;}
.ws49{word-spacing:-4.570573px;}
.ws4c{word-spacing:-3.510730px;}
.ws45{word-spacing:-3.447338px;}
.ws28{word-spacing:-2.591993px;}
.ws53{word-spacing:-2.202466px;}
.ws15{word-spacing:0.000000px;}
.ws4f{word-spacing:10.367973px;}
.ws33{word-spacing:11.236364px;}
.ws4b{word-spacing:11.592032px;}
.ws35{word-spacing:11.951547px;}
.ws39{word-spacing:12.645141px;}
.ws3c{word-spacing:22.203994px;}
.ws24{word-spacing:33.839913px;}
.ws57{word-spacing:35.143699px;}
.ws4a{word-spacing:36.763302px;}
.ws5c{word-spacing:38.177901px;}
.ws5d{word-spacing:38.219014px;}
.ws37{word-spacing:43.255184px;}
.ws36{word-spacing:43.976924px;}
.ws5e{word-spacing:51.903556px;}
.ws61{word-spacing:52.074401px;}
.ws5f{word-spacing:52.217865px;}
.ws63{word-spacing:57.869167px;}
.ws60{word-spacing:65.717830px;}
.ws62{word-spacing:65.758943px;}
.ws41{word-spacing:68.164180px;}
.ws5a{word-spacing:72.798819px;}
.ws48{word-spacing:77.964695px;}
.ws64{word-spacing:82.997786px;}
.wsb{word-spacing:117.496782px;}
.ws34{word-spacing:148.429758px;}
.ws3b{word-spacing:211.965695px;}
.ws3a{word-spacing:226.361161px;}
.ws13{word-spacing:252.843016px;}
.wsf{word-spacing:278.753196px;}
.ws4e{word-spacing:345.330275px;}
.ws29{word-spacing:710.527035px;}
.ws23{word-spacing:798.756661px;}
.ws14{word-spacing:813.122429px;}
.ws25{word-spacing:853.451001px;}
.ws21{word-spacing:1240.203791px;}
.ws12{word-spacing:1401.500270px;}
._23{margin-left:-50.399870px;}
._26{margin-left:-48.959874px;}
._27{margin-left:-44.534344px;}
._1e{margin-left:-43.199888px;}
._25{margin-left:-38.879900px;}
._22{margin-left:-37.419949px;}
._29{margin-left:-35.999907px;}
._2d{margin-left:-34.539957px;}
._28{margin-left:-32.367591px;}
._1c{margin-left:-30.239922px;}
._2f{margin-left:-27.927983px;}
._1d{margin-left:-26.659885px;}
._2a{margin-left:-19.472275px;}
._2c{margin-left:-15.617873px;}
._24{margin-left:-14.399963px;}
._2b{margin-left:-11.519970px;}
._2e{margin-left:-10.216889px;}
._17{margin-left:-8.999977px;}
._47{margin-left:-7.750093px;}
._4b{margin-left:-6.686074px;}
._14{margin-left:-5.471986px;}
._5{margin-left:-3.599991px;}
._4c{margin-left:-2.587057px;}
._8{margin-left:-1.583996px;}
._11{width:1.079997px;}
._3{width:2.159994px;}
._b{width:3.311991px;}
._1{width:4.319989px;}
._e{width:5.471986px;}
._a{width:6.839982px;}
._0{width:8.279979px;}
._4{width:9.287976px;}
._16{width:11.339971px;}
._9{width:12.527968px;}
._f{width:13.607965px;}
._19{width:15.618275px;}
._12{width:17.135956px;}
._18{width:18.383093px;}
._15{width:20.375947px;}
._31{width:21.887943px;}
._2{width:23.183940px;}
._10{width:24.263937px;}
._6{width:26.207932px;}
._d{width:27.503929px;}
._13{width:28.871925px;}
._7{width:30.023922px;}
._c{width:32.975915px;}
._4f{width:33.986676px;}
._53{width:35.579959px;}
._55{width:36.929747px;}
._56{width:38.385819px;}
._40{width:40.547941px;}
._20{width:41.858788px;}
._43{width:42.998748px;}
._44{width:44.035623px;}
._42{width:45.964511px;}
._50{width:47.041850px;}
._41{width:48.106249px;}
._46{width:49.927226px;}
._45{width:51.021269px;}
._33{width:52.332417px;}
._34{width:54.181677px;}
._52{width:55.800128px;}
._57{width:57.361724px;}
._39{width:63.676183px;}
._58{width:66.362221px;}
._5b{width:69.951666px;}
._21{width:71.331812px;}
._4e{width:74.609467px;}
._4d{width:76.347109px;}
._3b{width:77.890329px;}
._7c{width:79.483572px;}
._3a{width:81.152545px;}
._7d{width:82.619787px;}
._37{width:87.512493px;}
._3e{width:89.908486px;}
._51{width:91.727027px;}
._59{width:93.447473px;}
._32{width:95.759399px;}
._49{width:100.022676px;}
._35{width:101.197034px;}
._3f{width:105.016376px;}
._74{width:106.024865px;}
._60{width:107.323195px;}
._7f{width:108.539720px;}
._3c{width:110.804238px;}
._75{width:111.853959px;}
._78{width:113.260531px;}
._61{width:114.360697px;}
._65{width:115.438645px;}
._48{width:116.582722px;}
._3d{width:118.055196px;}
._69{width:120.458703px;}
._66{width:122.270435px;}
._5c{width:127.041801px;}
._6b{width:129.812959px;}
._30{width:131.759660px;}
._4a{width:133.028283px;}
._68{width:135.141780px;}
._5a{width:137.119711px;}
._7b{width:141.479635px;}
._77{width:142.625692px;}
._6e{width:143.948878px;}
._5e{width:147.827787px;}
._71{width:148.883687px;}
._73{width:151.508858px;}
._63{width:155.179470px;}
._64{width:157.737115px;}
._7a{width:163.756105px;}
._7e{width:170.597488px;}
._1b{width:172.366918px;}
._5f{width:174.809825px;}
._67{width:178.232723px;}
._70{width:184.444574px;}
._5d{width:191.890856px;}
._76{width:198.370839px;}
._6f{width:199.553616px;}
._62{width:205.450392px;}
._72{width:212.053731px;}
._79{width:219.054585px;}
._6a{width:225.918544px;}
._6c{width:227.484883px;}
._6d{width:239.972326px;}
._1f{width:274.393826px;}
._38{width:1062.642137px;}
._36{width:1077.037523px;}
._54{width:1398.350126px;}
._1a{width:2387.081838px;}
.fc1{color:rgb(68,84,105);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240229px;}
.fs4{font-size:53.999861px;}
.fs5{font-size:66.240183px;}
.fs2{font-size:69.119999px;}
.fs0{font-size:71.999814px;}
.fs7{font-size:84.240136px;}
.fs3{font-size:95.759399px;}
.fs1{font-size:107.999721px;}
.y0{bottom:0.000000px;}
.y9b{bottom:2.337078px;}
.y8b{bottom:2.337815px;}
.y99{bottom:2.344446px;}
.y8d{bottom:2.514468px;}
.y95{bottom:2.520345px;}
.y8f{bottom:2.520363px;}
.y92{bottom:2.520381px;}
.yfb{bottom:117.183400px;}
.y30{bottom:118.080140px;}
.ye3{bottom:119.346327px;}
.y134{bottom:123.301395px;}
.y10{bottom:133.741089px;}
.y44{bottom:134.641987px;}
.yfd{bottom:135.183095px;}
.ydf{bottom:135.726885px;}
.y43{bottom:146.704923px;}
.y133{bottom:147.958772px;}
.y9{bottom:157.861490px;}
.yde{bottom:158.942310px;}
.yf{bottom:164.706040px;}
.y132{bottom:172.805647px;}
.yfa{bottom:174.777737px;}
.y5c{bottom:181.987469px;}
.ydd{bottom:182.165943px;}
.y6b{bottom:184.320663px;}
.y131{bottom:197.463024px;}
.yf9{bottom:200.880227px;}
.yf7{bottom:203.215008px;}
.ydc{bottom:205.381368px;}
.y5a{bottom:218.709177px;}
.y2f{bottom:220.862448px;}
.y130{bottom:222.301691px;}
.yf8{bottom:227.159597px;}
.yac{bottom:227.163156px;}
.ydb{bottom:228.605081px;}
.y5b{bottom:230.766641px;}
.y59{bottom:244.439113px;}
.y12f{bottom:246.963172px;}
.yda{bottom:251.820506px;}
.y2e{bottom:252.546981px;}
.yf6{bottom:255.238073px;}
.yfc{bottom:267.842667px;}
.y12e{bottom:271.797735px;}
.y88{bottom:273.245105px;}
.yea{bottom:274.681639px;}
.yd9{bottom:275.221325px;}
.yf5{bottom:282.240066px;}
.y57{bottom:282.962509px;}
.y2d{bottom:284.220462px;}
.y42{bottom:292.322858px;}
.y58{bottom:295.019973px;}
.y12d{bottom:296.459216px;}
.yab{bottom:296.644610px;}
.yd8{bottom:298.444958px;}
.yf4{bottom:308.155608px;}
.y56{bottom:308.708968px;}
.y8{bottom:318.058266px;}
.yaa{bottom:319.860035px;}
.y2c{bottom:320.942170px;}
.y12c{bottom:321.301987px;}
.yd7{bottom:321.660383px;}
.yf0{bottom:321.836002px;}
.y2a{bottom:332.999634px;}
.yf3{bottom:334.076183px;}
.y65{bottom:339.120392px;}
.ya9{bottom:343.083668px;}
.yd6{bottom:344.884096px;}
.y12b{bottom:345.963468px;}
.y2b{bottom:346.683049px;}
.y7{bottom:358.020932px;}
.yf2{bottom:359.991625px;}
.y41{bottom:360.185255px;}
.ya8{bottom:366.121987px;}
.yd5{bottom:367.922335px;}
.y12a{bottom:370.624949px;}
.y40{bottom:372.055930px;}
.yf1{bottom:385.563474px;}
.ya7{bottom:389.522806px;}
.yd4{bottom:391.141864px;}
.y129{bottom:395.282326px;}
.y6{bottom:397.983598px;}
.yef{bottom:410.402532px;}
.ya6{bottom:412.746439px;}
.yd3{bottom:414.542683px;}
.y128{bottom:420.120993px;}
.yfe{bottom:429.304183px;}
.yee{bottom:435.954905px;}
.ya5{bottom:435.961864px;}
.yd2{bottom:437.762212px;}
.y127{bottom:444.782474px;}
.y67{bottom:448.741646px;}
.y55{bottom:449.102831px;}
.y3f{bottom:457.556810px;}
.y29{bottom:458.100654px;}
.ya4{bottom:459.185497px;}
.yd1{bottom:460.981821px;}
.y87{bottom:462.782169px;}
.y11a{bottom:465.474757px;}
.y63{bottom:466.384313px;}
.y126{bottom:469.625245px;}
.y54{bottom:474.843764px;}
.y5{bottom:478.079197px;}
.y64{bottom:478.441777px;}
.ya3{bottom:482.400922px;}
.yd0{bottom:484.201350px;}
.y86{bottom:487.081150px;}
.y3e{bottom:489.241289px;}
.ye5{bottom:491.768182px;}
.y62{bottom:492.125192px;}
.y125{bottom:494.286726px;}
.ya2{bottom:505.624635px;}
.ycf{bottom:507.420879px;}
.y85{bottom:511.384155px;}
.y124{bottom:519.121289px;}
.y3d{bottom:520.920295px;}
.ya1{bottom:529.025454px;}
.yce{bottom:530.640408px;}
.y84{bottom:535.860322px;}
.yc{bottom:542.162317px;}
.y123{bottom:543.782770px;}
.y53{bottom:546.661175px;}
.y3c{bottom:552.604774px;}
.ya0{bottom:552.958047px;}
.ycd{bottom:554.041227px;}
.y83{bottom:560.163327px;}
.y122{bottom:568.621437px;}
.ycc{bottom:577.260756px;}
.y52{bottom:578.345707px;}
.y82{bottom:584.639494px;}
.yb1{bottom:586.442578px;}
.y3b{bottom:589.321010px;}
.y121{bottom:593.278814px;}
.ycb{bottom:600.480325px;}
.y3a{bottom:601.383946px;}
.y106{bottom:608.040984px;}
.y81{bottom:608.942539px;}
.yb0{bottom:617.402004px;}
.ye4{bottom:617.586003px;}
.y120{bottom:618.125689px;}
.y51{bottom:618.659903px;}
.yca{bottom:623.699895px;}
.y108{bottom:626.580324px;}
.y80{bottom:633.422770px;}
.y4{bottom:638.275974px;}
.y11f{bottom:642.783066px;}
.y50{bottom:644.406307px;}
.yc9{bottom:646.923527px;}
.y7f{bottom:657.721711px;}
.y11e{bottom:667.621733px;}
.yc8{bottom:670.138953px;}
.y7e{bottom:682.020652px;}
.y69{bottom:690.125784px;}
.y39{bottom:691.916583px;}
.y11d{bottom:692.283214px;}
.yc7{bottom:693.539772px;}
.y60{bottom:694.987222px;}
.y6d{bottom:703.262699px;}
.y38{bottom:703.984991px;}
.y102{bottom:706.500883px;}
.y61{bottom:707.044686px;}
.y7d{bottom:707.580295px;}
.y4f{bottom:716.403909px;}
.yc6{bottom:716.763445px;}
.y11c{bottom:717.121881px;}
.y9f{bottom:719.462531px;}
.y5f{bottom:720.719357px;}
.ye9{bottom:721.979215px;}
.y7c{bottom:731.702090px;}
.yc5{bottom:739.801724px;}
.yaf{bottom:741.417536px;}
.y11b{bottom:742.141798px;}
.y20{bottom:745.380034px;}
.y3{bottom:747.903852px;}
.y1d{bottom:748.624559px;}
.y7b{bottom:755.102909px;}
.yeb{bottom:761.220905px;}
.yc4{bottom:763.017149px;}
.y37{bottom:763.557130px;}
.y119{bottom:769.143392px;}
.yed{bottom:776.882392px;}
.y7a{bottom:778.318334px;}
.y2{bottom:778.322706px;}
.y1c{bottom:782.998482px;}
.y4e{bottom:784.439897px;}
.yc3{bottom:786.240822px;}
.yae{bottom:786.245596px;}
.y9e{bottom:790.381297px;}
.y118{bottom:795.601157px;}
.y4d{bottom:796.498435px;}
.y79{bottom:801.541967px;}
.yc2{bottom:809.464495px;}
.y9d{bottom:817.017131px;}
.y1b{bottom:817.381202px;}
.yec{bottom:818.286191px;}
.y117{bottom:821.519196px;}
.y6a{bottom:823.858720px;}
.y78{bottom:824.765640px;}
.yc1{bottom:832.857066px;}
.y36{bottom:836.462201px;}
.y9c{bottom:840.237026px;}
.y116{bottom:847.441379px;}
.y77{bottom:847.981065px;}
.y34{bottom:848.520764px;}
.y1a{bottom:851.763922px;}
.yc0{bottom:856.081544px;}
.ye2{bottom:858.598743px;}
.ye1{bottom:860.043210px;}
.y66{bottom:861.124271px;}
.y35{bottom:862.205306px;}
.y9a{bottom:863.637240px;}
.y6c{bottom:863.822486px;}
.y28{bottom:866.705290px;}
.y75{bottom:871.559030px;}
.y115{bottom:873.180623px;}
.y4c{bottom:875.881050px;}
.y74{bottom:879.297814px;}
.y18{bottom:885.962080px;}
.y19{bottom:886.322871px;}
.y98{bottom:886.857135px;}
.y76{bottom:887.043155px;}
.y114{bottom:899.099506px;}
.ybf{bottom:902.520642px;}
.ye0{bottom:904.857737px;}
.y73{bottom:906.119432px;}
.y1{bottom:908.277466px;}
.y97{bottom:909.899621px;}
.y4b{bottom:916.380962px;}
.y101{bottom:918.718849px;}
.y17{bottom:920.344800px;}
.y21{bottom:920.346165px;}
.y113{bottom:925.018390px;}
.ybe{bottom:925.743470px;}
.y96{bottom:933.118760px;}
.y33{bottom:934.020545px;}
.y4a{bottom:942.124040px;}
.y27{bottom:944.998074px;}
.ybd{bottom:948.959720px;}
.y100{bottom:949.858412px;}
.y112{bottom:951.477785px;}
.y16{bottom:954.718750px;}
.y94{bottom:956.337900px;}
.y5e{bottom:963.358364px;}
.y32{bottom:970.741153px;}
.ybc{bottom:972.360539px;}
.y111{bottom:977.943777px;}
.y93{bottom:979.557040px;}
.yff{bottom:981.542890px;}
.y1f{bottom:982.440146px;}
.y49{bottom:982.799717px;}
.y107{bottom:984.240321px;}
.y26{bottom:986.579020px;}
.y13c{bottom:988.378576px;}
.y15{bottom:989.101470px;}
.y10d{bottom:992.155460px;}
.y25{bottom:995.578988px;}
.ybb{bottom:995.583387px;}
.y31{bottom:996.484258px;}
.y68{bottom:996.660050px;}
.y91{bottom:1002.958728px;}
.y110{bottom:1003.678092px;}
.y23{bottom:1004.042838px;}
.y72{bottom:1008.718614px;}
.y6f{bottom:1012.497890px;}
.y13b{bottom:1013.578938px;}
.y24{bottom:1016.101402px;}
.yba{bottom:1018.799637px;}
.y14{bottom:1023.299628px;}
.y90{bottom:1026.177886px;}
.y103{bottom:1026.540819px;}
.y10f{bottom:1029.603554px;}
.y22{bottom:1029.777146px;}
.y13a{bottom:1038.423359px;}
.y1e{bottom:1042.020917px;}
.yb6{bottom:1042.022485px;}
.y6e{bottom:1043.637466px;}
.y8e{bottom:1049.397026px;}
.yb9{bottom:1049.756228px;}
.yb8{bottom:1049.761228px;}
.y48{bottom:1054.623766px;}
.y10e{bottom:1056.062968px;}
.yb4{bottom:1057.499972px;}
.y13{bottom:1057.682348px;}
.y139{bottom:1063.083210px;}
.yb7{bottom:1065.238735px;}
.y8c{bottom:1072.622060px;}
.y109{bottom:1072.986091px;}
.yb5{bottom:1073.162047px;}
.ye7{bottom:1074.236846px;}
.y10c{bottom:1076.939145px;}
.y105{bottom:1079.999719px;}
.y11{bottom:1081.263344px;}
.y10b{bottom:1084.862457px;}
.y138{bottom:1087.743062px;}
.yb3{bottom:1089.897130px;}
.ye{bottom:1090.078750px;}
.y12{bottom:1091.880506px;}
.y46{bottom:1094.763310px;}
.y8a{bottom:1095.841200px;}
.yad{bottom:1103.761089px;}
.y45{bottom:1106.821874px;}
.y71{bottom:1110.776942px;}
.y137{bottom:1112.402913px;}
.y10a{bottom:1113.123614px;}
.ye8{bottom:1114.202839px;}
.ye6{bottom:1115.465294px;}
.y47{bottom:1120.497618px;}
.yd{bottom:1121.042534px;}
.yb2{bottom:1124.999805px;}
.y89{bottom:1127.698993px;}
.y5d{bottom:1129.682162px;}
.ya{bottom:1134.538111px;}
.y136{bottom:1137.240735px;}
.yb{bottom:1152.546849px;}
.y70{bottom:1155.594938px;}
.y104{bottom:1158.299722px;}
.y135{bottom:1161.900587px;}
.h24{height:13.137688px;}
.h2a{height:13.139162px;}
.h2b{height:13.142828px;}
.h2c{height:13.142864px;}
.h29{height:13.143583px;}
.h26{height:13.314342px;}
.h27{height:13.320236px;}
.h28{height:13.320254px;}
.h25{height:43.246612px;}
.h6{height:48.410031px;}
.h21{height:59.383289px;}
.h7{height:61.488123px;}
.h4{height:61.964999px;}
.h2{height:64.546708px;}
.h1e{height:67.425248px;}
.h1c{height:67.447349px;}
.h2e{height:75.519966px;}
.h2d{height:79.365004px;}
.h22{height:79.391397px;}
.h30{height:80.103281px;}
.h2f{height:81.527128px;}
.h5{height:85.846805px;}
.h3{height:96.820063px;}
.ha{height:97.487996px;}
.h9{height:107.050493px;}
.h23{height:110.346531px;}
.h13{height:112.029411px;}
.hb{height:112.776565px;}
.h19{height:112.780857px;}
.hd{height:112.780964px;}
.h11{height:112.798452px;}
.hf{height:112.820339px;}
.h20{height:115.654890px;}
.h1d{height:115.663795px;}
.h10{height:116.178010px;}
.he{height:116.191099px;}
.h18{height:116.226289px;}
.h12{height:116.243885px;}
.h8{height:119.249685px;}
.h14{height:119.258482px;}
.h1f{height:119.280369px;}
.h15{height:164.425355px;}
.h16{height:164.460438px;}
.hc{height:164.460545px;}
.h1a{height:164.473742px;}
.h17{height:167.519024px;}
.h1b{height:167.532327px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w1b{width:2.159794px;}
.w12{width:2.159830px;}
.wb{width:3.237894px;}
.w10{width:3.241595px;}
.wc{width:3.598506px;}
.w14{width:3.602136px;}
.w17{width:3.602171px;}
.w11{width:3.959047px;}
.w6{width:4.138599px;}
.wa{width:4.315958px;}
.w1e{width:4.856841px;}
.w20{width:4.862734px;}
.wd{width:5.037111px;}
.w3{width:5.039339px;}
.w16{width:5.040812px;}
.w9{width:5.044477px;}
.w21{width:5.215944px;}
.wf{width:5.217417px;}
.w1d{width:5.221837px;}
.w19{width:5.224783px;}
.w23{width:5.398442px;}
.w24{width:5.575048px;}
.w5{width:5.757546px;}
.w22{width:5.757581px;}
.w7{width:5.758300px;}
.w1a{width:5.762001px;}
.w1f{width:5.763438px;}
.w1c{width:5.763474px;}
.w13{width:6.115212px;}
.we{width:6.122542px;}
.w18{width:6.122578px;}
.w4{width:6.481681px;}
.w8{width:8.275005px;}
.w15{width:8.278706px;}
.w2{width:8.459731px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.376909px;}
.x22{left:112.322689px;}
.xf{left:114.299737px;}
.x11{left:133.378021px;}
.x7{left:139.500502px;}
.x2{left:143.823645px;}
.x26{left:145.080176px;}
.x1d{left:147.241755px;}
.x30{left:148.498272px;}
.x21{left:149.579055px;}
.x55{left:157.320300px;}
.x5f{left:158.401086px;}
.xb{left:159.479694px;}
.x5e{left:161.821381px;}
.x6{left:163.444750px;}
.x9d{left:179.282515px;}
.xd{left:192.959890px;}
.x95{left:195.839794px;}
.x1{left:204.664007px;}
.x8{left:209.883416px;}
.x99{left:213.302003px;}
.x2c{left:220.858234px;}
.x86{left:222.839680px;}
.x85{left:226.259954px;}
.xa5{left:230.042720px;}
.x27{left:242.465169px;}
.x41{left:245.523013px;}
.xa3{left:249.121221px;}
.xa0{left:251.640617px;}
.x9e{left:255.601674px;}
.x8c{left:259.204178px;}
.x9f{left:262.254650px;}
.x8b{left:263.342798px;}
.x8d{left:270.723765px;}
.xe{left:275.222656px;}
.x3b{left:276.479174px;}
.x46{left:278.640739px;}
.x29{left:280.081800px;}
.x2b{left:283.139644px;}
.x23{left:292.146196px;}
.xa4{left:295.562079px;}
.x56{left:300.959422px;}
.x47{left:303.305517px;}
.x48{left:306.178844px;}
.x4{left:308.340409px;}
.x53{left:310.141709px;}
.x57{left:316.083847px;}
.xa6{left:320.222467px;}
.x61{left:324.537071px;}
.x33{left:325.984453px;}
.x4c{left:327.785779px;}
.x32{left:329.947344px;}
.x83{left:331.554460px;}
.x3c{left:332.820644px;}
.x24{left:334.806488px;}
.x38{left:337.679788px;}
.x43{left:340.201645px;}
.x8a{left:341.459707px;}
.x1a{left:342.538931px;}
.x62{left:349.015523px;}
.x2d{left:351.000701px;}
.x1b{left:352.802027px;}
.x81{left:355.314706px;}
.x63{left:356.397945px;}
.x3d{left:357.485423px;}
.x3e{left:358.926484px;}
.x1c{left:360.007253px;}
.x82{left:361.437284px;}
.x64{left:362.514629px;}
.x44{left:364.681880px;}
.x3{left:365.762675px;}
.x34{left:367.739723px;}
.x2a{left:369.180758px;}
.x4d{left:370.806336px;}
.x28{left:372.062853px;}
.x20{left:374.224445px;}
.x31{left:377.106541px;}
.x1e{left:379.619576px;}
.x39{left:380.700371px;}
.x49{left:382.686188px;}
.x4a{left:384.127249px;}
.x13{left:385.559515px;}
.x14{left:387.000549px;}
.x65{left:390.596727px;}
.x42{left:392.219958px;}
.x58{left:393.485285px;}
.x60{left:394.917880px;}
.x9{left:400.145741px;}
.x25{left:401.947041px;}
.x45{left:403.027837px;}
.x66{left:404.637398px;}
.x2e{left:405.901137px;}
.x4b{left:408.422967px;}
.x3f{left:410.224267px;}
.x15{left:411.305063px;}
.x67{left:412.735834px;}
.x68{left:417.416034px;}
.x84{left:419.573495px;}
.x69{left:421.375117px;}
.x35{left:424.986241px;}
.x6a{left:426.772841px;}
.x16{left:429.845385px;}
.x87{left:431.634511px;}
.x6b{left:433.436265px;}
.x6c{left:438.653682px;}
.x5{left:440.284203px;}
.x6d{left:441.895277px;}
.x8e{left:444.428018px;}
.x1f{left:445.863877px;}
.x10{left:449.460236px;}
.x17{left:451.628041px;}
.x6e{left:455.034490px;}
.x6f{left:461.694249px;}
.x70{left:464.755538px;}
.x2f{left:466.926029px;}
.x71{left:471.415297px;}
.x3a{left:474.843017px;}
.x40{left:476.644316px;}
.x50{left:481.683016px;}
.x36{left:491.221720px;}
.x8f{left:496.984544px;}
.x72{left:501.472498px;}
.xc{left:505.087443px;}
.x18{left:506.168212px;}
.x73{left:510.115482px;}
.x74{left:515.513206px;}
.x75{left:521.632082px;}
.x76{left:525.414524px;}
.x77{left:531.533401px;}
.x37{left:534.242304px;}
.x78{left:538.189495px;}
.x79{left:543.594584px;}
.x7a{left:546.832478px;}
.x90{left:548.820271px;}
.x98{left:550.628462px;}
.x59{left:553.684657px;}
.x7b{left:556.012644px;}
.x7c{left:559.791385px;}
.x7d{left:566.454845px;}
.x88{left:567.544601px;}
.x7e{left:569.508768px;}
.x52{left:572.046482px;}
.x7f{left:576.175893px;}
.x80{left:579.229816px;}
.x91{left:601.022592px;}
.x51{left:608.766030px;}
.x5a{left:612.547126px;}
.x89{left:619.562887px;}
.x9a{left:623.705107px;}
.x5b{left:627.667449px;}
.x12{left:633.248491px;}
.x9c{left:634.863047px;}
.x96{left:654.304046px;}
.x54{left:660.059442px;}
.x92{left:664.741202px;}
.x97{left:667.252657px;}
.x93{left:669.232216px;}
.x4e{left:671.405493px;}
.x9b{left:678.963623px;}
.x5c{left:681.303081px;}
.x4f{left:688.144475px;}
.xa1{left:701.827343px;}
.x94{left:703.268941px;}
.x5d{left:705.068846px;}
.x19{left:729.365958px;}
.xa2{left:765.368810px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.578347pt;}
.v8{vertical-align:27.538992pt;}
.va{vertical-align:29.437419pt;}
.v3{vertical-align:31.999888pt;}
.v2{vertical-align:37.781142pt;}
.v4{vertical-align:42.870984pt;}
.v7{vertical-align:45.429495pt;}
.v1{vertical-align:48.624868pt;}
.v9{vertical-align:55.054667pt;}
.v5{vertical-align:91.531042pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:1.937516pt;}
.ls4a{letter-spacing:2.562487pt;}
.ls1a{letter-spacing:2.593737pt;}
.ls1b{letter-spacing:3.023019pt;}
.ls23{letter-spacing:3.187523pt;}
.ls16{letter-spacing:3.218678pt;}
.ls42{letter-spacing:3.218708pt;}
.ls2f{letter-spacing:3.218804pt;}
.ls39{letter-spacing:4.507757pt;}
.ls1d{letter-spacing:5.562910pt;}
.ls4c{letter-spacing:5.563005pt;}
.ls1f{letter-spacing:5.563101pt;}
.ls3f{letter-spacing:5.594190pt;}
.ls45{letter-spacing:5.594381pt;}
.ls40{letter-spacing:5.781099pt;}
.ls3c{letter-spacing:6.406231pt;}
.ls1e{letter-spacing:7.671894pt;}
.ls2{letter-spacing:7.687534pt;}
.ls41{letter-spacing:7.691540pt;}
.ls35{letter-spacing:8.312571pt;}
.ls38{letter-spacing:8.343616pt;}
.ls46{letter-spacing:8.343660pt;}
.ls3e{letter-spacing:8.968748pt;}
.ls18{letter-spacing:12.812522pt;}
.ls11{letter-spacing:13.468648pt;}
.ls32{letter-spacing:13.468743pt;}
.ls4{letter-spacing:14.062434pt;}
.ls2a{letter-spacing:14.093715pt;}
.ls2d{letter-spacing:14.749841pt;}
.ls6{letter-spacing:14.749906pt;}
.lsc{letter-spacing:15.374943pt;}
.ls49{letter-spacing:16.656201pt;}
.ls1c{letter-spacing:17.116669pt;}
.ls43{letter-spacing:17.312423pt;}
.ls19{letter-spacing:19.843563pt;}
.ls3b{letter-spacing:22.437455pt;}
.ls27{letter-spacing:23.062397pt;}
.ls29{letter-spacing:23.062492pt;}
.ls13{letter-spacing:23.718713pt;}
.ls2c{letter-spacing:23.865682pt;}
.ls8{letter-spacing:24.968596pt;}
.ls14{letter-spacing:25.405352pt;}
.ls3d{letter-spacing:25.436727pt;}
.lse{letter-spacing:25.593632pt;}
.ls9{letter-spacing:26.061669pt;}
.lsf{letter-spacing:26.092949pt;}
.ls2e{letter-spacing:28.156149pt;}
.lsb{letter-spacing:29.249126pt;}
.ls12{letter-spacing:29.249222pt;}
.ls21{letter-spacing:29.280407pt;}
.lsd{letter-spacing:29.280502pt;}
.ls17{letter-spacing:29.905348pt;}
.ls5{letter-spacing:29.905443pt;}
.ls7{letter-spacing:29.905539pt;}
.ls34{letter-spacing:33.937308pt;}
.ls15{letter-spacing:33.941313pt;}
.ls33{letter-spacing:34.562535pt;}
.ls44{letter-spacing:39.687377pt;}
.ls3{letter-spacing:45.468566pt;}
.ls4e{letter-spacing:46.740376pt;}
.ls47{letter-spacing:47.180197pt;}
.ls37{letter-spacing:47.374926pt;}
.ls36{letter-spacing:47.844143pt;}
.ls25{letter-spacing:50.374103pt;}
.ls10{letter-spacing:50.562288pt;}
.lsa{letter-spacing:50.593568pt;}
.ls26{letter-spacing:53.781026pt;}
.ls30{letter-spacing:53.781121pt;}
.ls48{letter-spacing:55.499135pt;}
.ls2b{letter-spacing:62.124797pt;}
.ls22{letter-spacing:71.718545pt;}
.ls1{letter-spacing:91.342798pt;}
.ls24{letter-spacing:104.374749pt;}
.ls31{letter-spacing:141.499670pt;}
.ls28{letter-spacing:142.163807pt;}
.ls4d{letter-spacing:160.500067pt;}
.ls4b{letter-spacing:168.374620pt;}
.ls3a{letter-spacing:216.187447pt;}
.wse{word-spacing:-63.999835pt;}
.ws6{word-spacing:-54.047860pt;}
.ws26{word-spacing:-48.619876pt;}
.ws44{word-spacing:-47.922259pt;}
.ws27{word-spacing:-47.323656pt;}
.ws47{word-spacing:-42.157508pt;}
.ws1f{word-spacing:-39.656132pt;}
.ws1c{word-spacing:-38.999959pt;}
.ws1b{word-spacing:-38.406202pt;}
.ws4{word-spacing:-36.031907pt;}
.ws38{word-spacing:-33.149532pt;}
.wsa{word-spacing:-30.047922pt;}
.ws7{word-spacing:-29.375924pt;}
.ws1d{word-spacing:-28.771192pt;}
.ws19{word-spacing:-27.506253pt;}
.ws11{word-spacing:-27.494899pt;}
.ws2f{word-spacing:-27.493587pt;}
.ws56{word-spacing:-27.408468pt;}
.wsc{word-spacing:-27.023930pt;}
.ws51{word-spacing:-26.897751pt;}
.ws1e{word-spacing:-26.869958pt;}
.ws16{word-spacing:-26.838678pt;}
.ws22{word-spacing:-26.823716pt;}
.ws20{word-spacing:-26.823621pt;}
.ws3d{word-spacing:-26.642393pt;}
.ws2c{word-spacing:-26.557273pt;}
.ws58{word-spacing:-26.046557pt;}
.ws46{word-spacing:-25.791198pt;}
.ws2{word-spacing:-24.447937pt;}
.ws40{word-spacing:-24.141555pt;}
.ws8{word-spacing:-22.487040pt;}
.wsd{word-spacing:-21.790583pt;}
.ws30{word-spacing:-21.247945pt;}
.ws50{word-spacing:-20.684030pt;}
.ws2b{word-spacing:-20.607947pt;}
.ws1a{word-spacing:-20.468683pt;}
.ws18{word-spacing:-20.437451pt;}
.ws10{word-spacing:-20.031948pt;}
.ws2a{word-spacing:-19.967948pt;}
.ws59{word-spacing:-19.391950pt;}
.ws3f{word-spacing:-18.959412pt;}
.ws5{word-spacing:-18.943951pt;}
.ws32{word-spacing:-18.017330pt;}
.ws3{word-spacing:-17.663954pt;}
.ws2d{word-spacing:-17.471955pt;}
.ws55{word-spacing:-16.683415pt;}
.ws9{word-spacing:-16.383958pt;}
.ws5b{word-spacing:-15.935959pt;}
.ws2e{word-spacing:-15.679960pt;}
.ws52{word-spacing:-15.491743pt;}
.ws31{word-spacing:-15.103961pt;}
.ws3e{word-spacing:-15.023961pt;}
.ws4d{word-spacing:-14.543962pt;}
.ws0{word-spacing:-11.263971pt;}
.ws1{word-spacing:-11.071971pt;}
.ws42{word-spacing:-10.469694pt;}
.ws54{word-spacing:-5.617885pt;}
.ws17{word-spacing:-5.088665pt;}
.ws43{word-spacing:-4.766690pt;}
.ws49{word-spacing:-4.062731pt;}
.ws4c{word-spacing:-3.120649pt;}
.ws45{word-spacing:-3.064301pt;}
.ws28{word-spacing:-2.303994pt;}
.ws53{word-spacing:-1.957748pt;}
.ws15{word-spacing:0.000000pt;}
.ws4f{word-spacing:9.215976pt;}
.ws33{word-spacing:9.987879pt;}
.ws4b{word-spacing:10.304028pt;}
.ws35{word-spacing:10.623597pt;}
.ws39{word-spacing:11.240125pt;}
.ws3c{word-spacing:19.736883pt;}
.ws24{word-spacing:30.079922pt;}
.ws57{word-spacing:31.238844pt;}
.ws4a{word-spacing:32.678490pt;}
.ws5c{word-spacing:33.935912pt;}
.ws5d{word-spacing:33.972457pt;}
.ws37{word-spacing:38.449052pt;}
.ws36{word-spacing:39.090600pt;}
.ws5e{word-spacing:46.136494pt;}
.ws61{word-spacing:46.288357pt;}
.ws5f{word-spacing:46.415880pt;}
.ws63{word-spacing:51.439259pt;}
.ws60{word-spacing:58.415849pt;}
.ws62{word-spacing:58.452394pt;}
.ws41{word-spacing:60.590383pt;}
.ws5a{word-spacing:64.710061pt;}
.ws48{word-spacing:69.301951pt;}
.ws64{word-spacing:73.775810pt;}
.wsb{word-spacing:104.441584pt;}
.ws34{word-spacing:131.937563pt;}
.ws3b{word-spacing:188.413951pt;}
.ws3a{word-spacing:201.209921pt;}
.ws13{word-spacing:224.749347pt;}
.wsf{word-spacing:247.780618pt;}
.ws4e{word-spacing:306.960244pt;}
.ws29{word-spacing:631.579586pt;}
.ws23{word-spacing:710.005921pt;}
.ws14{word-spacing:722.775492pt;}
.ws25{word-spacing:758.623112pt;}
.ws21{word-spacing:1102.403370pt;}
.ws12{word-spacing:1245.778018pt;}
._23{margin-left:-44.799884pt;}
._26{margin-left:-43.519888pt;}
._27{margin-left:-39.586083pt;}
._1e{margin-left:-38.399901pt;}
._25{margin-left:-34.559911pt;}
._22{margin-left:-33.262177pt;}
._29{margin-left:-31.999917pt;}
._2d{margin-left:-30.702184pt;}
._28{margin-left:-28.771192pt;}
._1c{margin-left:-26.879931pt;}
._2f{margin-left:-24.824874pt;}
._1d{margin-left:-23.697676pt;}
._2a{margin-left:-17.308689pt;}
._2c{margin-left:-13.882554pt;}
._24{margin-left:-12.799967pt;}
._2b{margin-left:-10.239974pt;}
._2e{margin-left:-9.081680pt;}
._17{margin-left:-7.999979pt;}
._47{margin-left:-6.888971pt;}
._4b{margin-left:-5.943177pt;}
._14{margin-left:-4.863987pt;}
._5{margin-left:-3.199992pt;}
._4c{margin-left:-2.299606pt;}
._8{margin-left:-1.407996pt;}
._11{width:0.959998pt;}
._3{width:1.919995pt;}
._b{width:2.943992pt;}
._1{width:3.839990pt;}
._e{width:4.863987pt;}
._a{width:6.079984pt;}
._0{width:7.359981pt;}
._4{width:8.255979pt;}
._16{width:10.079974pt;}
._9{width:11.135971pt;}
._f{width:12.095969pt;}
._19{width:13.882911pt;}
._12{width:15.231961pt;}
._18{width:16.340527pt;}
._15{width:18.111953pt;}
._31{width:19.455950pt;}
._2{width:20.607947pt;}
._10{width:21.567944pt;}
._6{width:23.295940pt;}
._d{width:24.447937pt;}
._13{width:25.663934pt;}
._7{width:26.687931pt;}
._c{width:29.311924pt;}
._4f{width:30.210379pt;}
._53{width:31.626631pt;}
._55{width:32.826442pt;}
._56{width:34.120728pt;}
._40{width:36.042614pt;}
._20{width:37.207812pt;}
._43{width:38.221109pt;}
._44{width:39.142776pt;}
._42{width:40.857344pt;}
._50{width:41.814978pt;}
._41{width:42.761111pt;}
._46{width:44.379757pt;}
._45{width:45.352239pt;}
._33{width:46.517704pt;}
._34{width:48.161491pt;}
._52{width:49.600114pt;}
._57{width:50.988199pt;}
._39{width:56.601052pt;}
._58{width:58.988641pt;}
._5b{width:62.179258pt;}
._21{width:63.406055pt;}
._4e{width:66.319526pt;}
._4d{width:67.864097pt;}
._3b{width:69.235848pt;}
._7c{width:70.652064pt;}
._3a{width:72.135596pt;}
._7d{width:73.439810pt;}
._37{width:77.788882pt;}
._3e{width:79.918654pt;}
._51{width:81.535135pt;}
._59{width:83.064421pt;}
._32{width:85.119466pt;}
._49{width:88.909045pt;}
._35{width:89.952920pt;}
._3f{width:93.347890pt;}
._74{width:94.244325pt;}
._60{width:95.398396pt;}
._7f{width:96.479751pt;}
._3c{width:98.492656pt;}
._75{width:99.425741pt;}
._78{width:100.676028pt;}
._61{width:101.653953pt;}
._65{width:102.612129pt;}
._48{width:103.629086pt;}
._3d{width:104.937952pt;}
._69{width:107.074403pt;}
._66{width:108.684831pt;}
._5c{width:112.926045pt;}
._6b{width:115.389297pt;}
._30{width:117.119698pt;}
._4a{width:118.247362pt;}
._68{width:120.126027pt;}
._5a{width:121.884188pt;}
._7b{width:125.759675pt;}
._77{width:126.778393pt;}
._6e{width:127.954558pt;}
._5e{width:131.402477pt;}
._71{width:132.341055pt;}
._73{width:134.674540pt;}
._63{width:137.937307pt;}
._64{width:140.210769pt;}
._7a{width:145.560982pt;}
._7e{width:151.642212pt;}
._1b{width:153.215038pt;}
._5f{width:155.386511pt;}
._67{width:158.429087pt;}
._70{width:163.950733pt;}
._5d{width:170.569650pt;}
._76{width:176.329635pt;}
._6f{width:177.380992pt;}
._62{width:182.622571pt;}
._72{width:188.492206pt;}
._79{width:194.715187pt;}
._6a{width:200.816483pt;}
._6c{width:202.208785pt;}
._6d{width:213.308734pt;}
._1f{width:243.905623pt;}
._38{width:944.570789pt;}
._36{width:957.366687pt;}
._54{width:1242.977890pt;}
._1a{width:2121.850523pt;}
.fs6{font-size:42.880204pt;}
.fs4{font-size:47.999876pt;}
.fs5{font-size:58.880163pt;}
.fs2{font-size:61.439999pt;}
.fs0{font-size:63.999835pt;}
.fs7{font-size:74.880121pt;}
.fs3{font-size:85.119466pt;}
.fs1{font-size:95.999752pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:2.077403pt;}
.y8b{bottom:2.078057pt;}
.y99{bottom:2.083952pt;}
.y8d{bottom:2.235083pt;}
.y95{bottom:2.240307pt;}
.y8f{bottom:2.240323pt;}
.y92{bottom:2.240339pt;}
.yfb{bottom:104.163022pt;}
.y30{bottom:104.960125pt;}
.ye3{bottom:106.085624pt;}
.y134{bottom:109.601240pt;}
.y10{bottom:118.880968pt;}
.y44{bottom:119.681767pt;}
.yfd{bottom:120.162751pt;}
.ydf{bottom:120.646120pt;}
.y43{bottom:130.404376pt;}
.y133{bottom:131.518909pt;}
.y9{bottom:140.321324pt;}
.yde{bottom:141.282053pt;}
.yf{bottom:146.405369pt;}
.y132{bottom:153.605020pt;}
.yfa{bottom:155.357988pt;}
.y5c{bottom:161.766639pt;}
.ydd{bottom:161.925282pt;}
.y6b{bottom:163.840589pt;}
.y131{bottom:175.522688pt;}
.yf9{bottom:178.560201pt;}
.yf7{bottom:180.635563pt;}
.ydc{bottom:182.561216pt;}
.y5a{bottom:194.408157pt;}
.y2f{bottom:196.322176pt;}
.y130{bottom:197.601503pt;}
.yf8{bottom:201.919641pt;}
.yac{bottom:201.922805pt;}
.ydb{bottom:203.204516pt;}
.y5b{bottom:205.125903pt;}
.y59{bottom:217.279211pt;}
.y12f{bottom:219.522820pt;}
.yda{bottom:223.840450pt;}
.y2e{bottom:224.486205pt;}
.yf6{bottom:226.878287pt;}
.yfc{bottom:238.082371pt;}
.y12e{bottom:241.597987pt;}
.y88{bottom:242.884538pt;}
.yea{bottom:244.161457pt;}
.yd9{bottom:244.641178pt;}
.yf5{bottom:250.880059pt;}
.y57{bottom:251.522230pt;}
.y2d{bottom:252.640411pt;}
.y42{bottom:259.842541pt;}
.y58{bottom:262.239976pt;}
.y12d{bottom:263.519303pt;}
.yab{bottom:263.684098pt;}
.yd8{bottom:265.284407pt;}
.yf4{bottom:273.916096pt;}
.y56{bottom:274.407971pt;}
.y8{bottom:282.718459pt;}
.yaa{bottom:284.320031pt;}
.y2c{bottom:285.281929pt;}
.y12c{bottom:285.601766pt;}
.yd7{bottom:285.920340pt;}
.yf0{bottom:286.076446pt;}
.y2a{bottom:295.999675pt;}
.yf3{bottom:296.956607pt;}
.y65{bottom:301.440349pt;}
.ya9{bottom:304.963260pt;}
.yd6{bottom:306.563641pt;}
.y12b{bottom:307.523083pt;}
.y2b{bottom:308.162710pt;}
.y7{bottom:318.240829pt;}
.yf2{bottom:319.992556pt;}
.y41{bottom:320.164671pt;}
.ya8{bottom:325.441767pt;}
.yd5{bottom:327.042076pt;}
.y12a{bottom:329.444399pt;}
.y40{bottom:330.716383pt;}
.yf1{bottom:342.723088pt;}
.ya7{bottom:346.242495pt;}
.yd4{bottom:347.681657pt;}
.y129{bottom:351.362067pt;}
.y6{bottom:353.763199pt;}
.yef{bottom:364.802251pt;}
.ya6{bottom:366.885724pt;}
.yd3{bottom:368.482385pt;}
.y128{bottom:373.440883pt;}
.yfe{bottom:381.603718pt;}
.yee{bottom:387.515471pt;}
.ya5{bottom:387.521657pt;}
.yd2{bottom:389.121966pt;}
.y127{bottom:395.362199pt;}
.y67{bottom:398.881463pt;}
.y55{bottom:399.202516pt;}
.y3f{bottom:406.717165pt;}
.y29{bottom:407.200581pt;}
.ya4{bottom:408.164886pt;}
.yd1{bottom:409.761619pt;}
.y87{bottom:411.361928pt;}
.y11a{bottom:413.755340pt;}
.y63{bottom:414.563834pt;}
.y126{bottom:417.444662pt;}
.y54{bottom:422.083346pt;}
.y5{bottom:424.959286pt;}
.y64{bottom:425.281580pt;}
.ya3{bottom:428.800820pt;}
.yd0{bottom:430.401200pt;}
.y86{bottom:432.961023pt;}
.y3e{bottom:434.881146pt;}
.ye5{bottom:437.127273pt;}
.y62{bottom:437.444616pt;}
.y125{bottom:439.365978pt;}
.ya2{bottom:449.444120pt;}
.ycf{bottom:451.040782pt;}
.y85{bottom:454.563693pt;}
.y124{bottom:461.441146pt;}
.y3d{bottom:463.040263pt;}
.ya1{bottom:470.244848pt;}
.yce{bottom:471.680363pt;}
.y84{bottom:476.320287pt;}
.yc{bottom:481.922060pt;}
.y123{bottom:483.362462pt;}
.y53{bottom:485.921044pt;}
.y3c{bottom:491.204244pt;}
.ya0{bottom:491.518264pt;}
.ycd{bottom:492.481091pt;}
.y83{bottom:497.922957pt;}
.y122{bottom:505.441277pt;}
.ycc{bottom:513.120672pt;}
.y52{bottom:514.085073pt;}
.y82{bottom:519.679551pt;}
.yb1{bottom:521.282292pt;}
.y3b{bottom:523.840898pt;}
.y121{bottom:527.358946pt;}
.ycb{bottom:533.760289pt;}
.y3a{bottom:534.563508pt;}
.y106{bottom:540.480875pt;}
.y81{bottom:541.282257pt;}
.yb0{bottom:548.801781pt;}
.ye4{bottom:548.965336pt;}
.y120{bottom:549.445056pt;}
.y51{bottom:549.919914pt;}
.yca{bottom:554.399906pt;}
.y108{bottom:556.960288pt;}
.y80{bottom:563.042462pt;}
.y4{bottom:567.356421pt;}
.y11f{bottom:571.362725pt;}
.y50{bottom:572.805607pt;}
.yc9{bottom:575.043135pt;}
.y7f{bottom:584.641521pt;}
.y11e{bottom:593.441540pt;}
.yc8{bottom:595.679069pt;}
.y7e{bottom:606.240580pt;}
.y69{bottom:613.445142pt;}
.y39{bottom:615.036963pt;}
.y11d{bottom:615.362856pt;}
.yc7{bottom:616.479797pt;}
.y60{bottom:617.766420pt;}
.y6d{bottom:625.122399pt;}
.y38{bottom:625.764436pt;}
.y102{bottom:628.000785pt;}
.y61{bottom:628.484166pt;}
.y7d{bottom:628.960262pt;}
.y4f{bottom:636.803474pt;}
.yc6{bottom:637.123062pt;}
.y11c{bottom:637.441672pt;}
.y9f{bottom:639.522250pt;}
.y5f{bottom:640.639429pt;}
.ye9{bottom:641.759302pt;}
.y7c{bottom:650.401858pt;}
.yc5{bottom:657.601532pt;}
.yaf{bottom:659.037810pt;}
.y11b{bottom:659.681598pt;}
.y20{bottom:662.560030pt;}
.y3{bottom:664.803424pt;}
.y1d{bottom:665.444053pt;}
.y7b{bottom:671.202586pt;}
.yeb{bottom:676.640804pt;}
.yc4{bottom:678.237466pt;}
.y37{bottom:678.717449pt;}
.y119{bottom:683.683016pt;}
.yed{bottom:690.562126pt;}
.y7a{bottom:691.838519pt;}
.y2{bottom:691.842406pt;}
.y1c{bottom:695.998651pt;}
.y4e{bottom:697.279909pt;}
.yc3{bottom:698.880731pt;}
.yae{bottom:698.884975pt;}
.y9e{bottom:702.561153pt;}
.y118{bottom:707.201029pt;}
.y4d{bottom:707.998609pt;}
.y79{bottom:712.481748pt;}
.yc2{bottom:719.523995pt;}
.y9d{bottom:726.237450pt;}
.y1b{bottom:726.561069pt;}
.yec{bottom:727.365503pt;}
.y117{bottom:730.239286pt;}
.y6a{bottom:732.318863pt;}
.y78{bottom:733.125013pt;}
.yc1{bottom:740.317392pt;}
.y36{bottom:743.521956pt;}
.y9c{bottom:746.877356pt;}
.y116{bottom:753.281226pt;}
.y77{bottom:753.760947pt;}
.y34{bottom:754.240680pt;}
.y1a{bottom:757.123487pt;}
.yc0{bottom:760.961372pt;}
.ye2{bottom:763.198882pt;}
.ye1{bottom:764.482853pt;}
.y66{bottom:765.443797pt;}
.y35{bottom:766.404717pt;}
.y9a{bottom:767.677547pt;}
.y6c{bottom:767.842210pt;}
.y28{bottom:770.404703pt;}
.y75{bottom:774.719138pt;}
.y115{bottom:776.160553pt;}
.y4c{bottom:778.560934pt;}
.y74{bottom:781.598057pt;}
.y18{bottom:787.521849pt;}
.y19{bottom:787.842552pt;}
.y98{bottom:788.317453pt;}
.y76{bottom:788.482805pt;}
.y114{bottom:799.199561pt;}
.ybf{bottom:802.240570pt;}
.ye0{bottom:804.317988pt;}
.y73{bottom:805.439495pt;}
.y1{bottom:807.357747pt;}
.y97{bottom:808.799663pt;}
.y4b{bottom:814.560855pt;}
.y101{bottom:816.638977pt;}
.y17{bottom:818.084267pt;}
.y21{bottom:818.085480pt;}
.y113{bottom:822.238569pt;}
.ybe{bottom:822.883084pt;}
.y96{bottom:829.438898pt;}
.y33{bottom:830.240484pt;}
.y4a{bottom:837.443592pt;}
.y27{bottom:839.998288pt;}
.ybd{bottom:843.519751pt;}
.y100{bottom:844.318588pt;}
.y112{bottom:845.758031pt;}
.y16{bottom:848.638889pt;}
.y94{bottom:850.078134pt;}
.y5e{bottom:856.318546pt;}
.y32{bottom:862.881025pt;}
.ybc{bottom:864.320479pt;}
.y111{bottom:869.283358pt;}
.y93{bottom:870.717369pt;}
.yff{bottom:872.482569pt;}
.y1f{bottom:873.280130pt;}
.y49{bottom:873.599748pt;}
.y107{bottom:874.880285pt;}
.y26{bottom:876.959129pt;}
.y13c{bottom:878.558734pt;}
.y15{bottom:879.201307pt;}
.y10d{bottom:881.915965pt;}
.y25{bottom:884.959101pt;}
.ybb{bottom:884.963011pt;}
.y31{bottom:885.763785pt;}
.y68{bottom:885.920044pt;}
.y91{bottom:891.518869pt;}
.y110{bottom:892.158304pt;}
.y23{bottom:892.482523pt;}
.y72{bottom:896.638768pt;}
.y6f{bottom:899.998125pt;}
.y13b{bottom:900.959056pt;}
.y24{bottom:903.201246pt;}
.yba{bottom:905.599677pt;}
.y14{bottom:909.599669pt;}
.y90{bottom:912.158121pt;}
.y103{bottom:912.480728pt;}
.y10f{bottom:915.203159pt;}
.y22{bottom:915.357463pt;}
.y13a{bottom:923.042986pt;}
.y1e{bottom:926.240815pt;}
.yb6{bottom:926.242209pt;}
.y6e{bottom:927.677747pt;}
.y8e{bottom:932.797356pt;}
.yb9{bottom:933.116647pt;}
.yb8{bottom:933.121092pt;}
.y48{bottom:937.443347pt;}
.y10e{bottom:938.722639pt;}
.yb4{bottom:939.999975pt;}
.y13{bottom:940.162087pt;}
.y139{bottom:944.962853pt;}
.yb7{bottom:946.878876pt;}
.y8c{bottom:953.441831pt;}
.y109{bottom:953.765415pt;}
.yb5{bottom:953.921820pt;}
.ye7{bottom:954.877196pt;}
.y10c{bottom:957.279240pt;}
.y105{bottom:959.999751pt;}
.y11{bottom:961.122972pt;}
.y10b{bottom:964.322184pt;}
.y138{bottom:966.882721pt;}
.yb3{bottom:968.797449pt;}
.ye{bottom:968.958889pt;}
.y12{bottom:970.560450pt;}
.y46{bottom:973.122942pt;}
.y8a{bottom:974.081066pt;}
.yad{bottom:981.120968pt;}
.y45{bottom:983.841666pt;}
.y71{bottom:987.357282pt;}
.y137{bottom:988.802589pt;}
.y10a{bottom:989.443212pt;}
.ye8{bottom:990.402523pt;}
.ye6{bottom:991.524706pt;}
.y47{bottom:995.997883pt;}
.yd{bottom:996.482253pt;}
.yb2{bottom:999.999827pt;}
.y89{bottom:1002.399105pt;}
.y5d{bottom:1004.161922pt;}
.ya{bottom:1008.478321pt;}
.y136{bottom:1010.880653pt;}
.yb{bottom:1024.486088pt;}
.y70{bottom:1027.195500pt;}
.y104{bottom:1029.599753pt;}
.y135{bottom:1032.800521pt;}
.h24{height:11.677945pt;}
.h2a{height:11.679255pt;}
.h2b{height:11.682514pt;}
.h2c{height:11.682546pt;}
.h29{height:11.683185pt;}
.h26{height:11.834971pt;}
.h27{height:11.840210pt;}
.h28{height:11.840226pt;}
.h25{height:38.441433pt;}
.h6{height:43.031139pt;}
.h21{height:52.785146pt;}
.h7{height:54.656109pt;}
.h4{height:55.079999pt;}
.h2{height:57.374852pt;}
.h1e{height:59.933554pt;}
.h1c{height:59.953199pt;}
.h2e{height:67.128859pt;}
.h2d{height:70.546671pt;}
.h22{height:70.570131pt;}
.h30{height:71.202916pt;}
.h2f{height:72.468558pt;}
.h5{height:76.308271pt;}
.h3{height:86.062278pt;}
.ha{height:86.655997pt;}
.h9{height:95.155994pt;}
.h23{height:98.085806pt;}
.h13{height:99.581699pt;}
.hb{height:100.245836pt;}
.h19{height:100.249651pt;}
.hd{height:100.249746pt;}
.h11{height:100.265291pt;}
.hf{height:100.284746pt;}
.h20{height:102.804347pt;}
.h1d{height:102.812262pt;}
.h10{height:103.269342pt;}
.he{height:103.280977pt;}
.h18{height:103.312257pt;}
.h12{height:103.327897pt;}
.h8{height:105.999720pt;}
.h14{height:106.007540pt;}
.h1f{height:106.026995pt;}
.h15{height:146.155871pt;}
.h16{height:146.187056pt;}
.hc{height:146.187151pt;}
.h1a{height:146.198881pt;}
.h17{height:148.905799pt;}
.h1b{height:148.917624pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w1b{width:1.919817pt;}
.w12{width:1.919849pt;}
.wb{width:2.878128pt;}
.w10{width:2.881418pt;}
.wc{width:3.198672pt;}
.w14{width:3.201898pt;}
.w17{width:3.201930pt;}
.w11{width:3.519153pt;}
.w6{width:3.678754pt;}
.wa{width:3.836407pt;}
.w1e{width:4.317192pt;}
.w20{width:4.322430pt;}
.wd{width:4.477432pt;}
.w3{width:4.479412pt;}
.w16{width:4.480722pt;}
.w9{width:4.483980pt;}
.w21{width:4.636395pt;}
.wf{width:4.637704pt;}
.w1d{width:4.641633pt;}
.w19{width:4.644252pt;}
.w23{width:4.798615pt;}
.w24{width:4.955598pt;}
.w5{width:5.117818pt;}
.w22{width:5.117850pt;}
.w7{width:5.118489pt;}
.w1a{width:5.121779pt;}
.w1f{width:5.123056pt;}
.w1c{width:5.123088pt;}
.w13{width:5.435744pt;}
.we{width:5.442259pt;}
.w18{width:5.442291pt;}
.w4{width:5.761494pt;}
.w8{width:7.355560pt;}
.w15{width:7.358850pt;}
.w2{width:7.519761pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.557252pt;}
.x22{left:99.842390pt;}
.xf{left:101.599766pt;}
.x11{left:118.558241pt;}
.x7{left:124.000446pt;}
.x2{left:127.843240pt;}
.x26{left:128.960157pt;}
.x1d{left:130.881560pt;}
.x30{left:131.998464pt;}
.x21{left:132.959160pt;}
.x55{left:139.840267pt;}
.x5f{left:140.800965pt;}
.xb{left:141.759728pt;}
.x5e{left:143.841227pt;}
.x6{left:145.284222pt;}
.x9d{left:159.362236pt;}
.xd{left:171.519902pt;}
.x95{left:174.079817pt;}
.x1{left:181.923562pt;}
.x8{left:186.563037pt;}
.x99{left:189.601780pt;}
.x2c{left:196.318430pt;}
.x86{left:198.079715pt;}
.x85{left:201.119959pt;}
.xa5{left:204.482418pt;}
.x27{left:215.524595pt;}
.x41{left:218.242678pt;}
.xa3{left:221.441085pt;}
.xa0{left:223.680549pt;}
.x9e{left:227.201488pt;}
.x8c{left:230.403714pt;}
.x9f{left:233.115245pt;}
.x8b{left:234.082487pt;}
.x8d{left:240.643346pt;}
.xe{left:244.642361pt;}
.x3b{left:245.759266pt;}
.x46{left:247.680657pt;}
.x29{left:248.961600pt;}
.x2b{left:251.679683pt;}
.x23{left:259.685507pt;}
.xa4{left:262.721848pt;}
.x56{left:267.519486pt;}
.x47{left:269.604904pt;}
.x48{left:272.158973pt;}
.x4{left:274.080364pt;}
.x53{left:275.681519pt;}
.x57{left:280.963420pt;}
.xa6{left:284.642193pt;}
.x61{left:288.477396pt;}
.x33{left:289.763958pt;}
.x4c{left:291.365137pt;}
.x32{left:293.286528pt;}
.x83{left:294.715076pt;}
.x3c{left:295.840573pt;}
.x24{left:297.605767pt;}
.x38{left:300.159811pt;}
.x43{left:302.401462pt;}
.x8a{left:303.519740pt;}
.x1a{left:304.479050pt;}
.x62{left:310.236021pt;}
.x2d{left:312.000623pt;}
.x1b{left:313.601802pt;}
.x81{left:315.835294pt;}
.x63{left:316.798173pt;}
.x3d{left:317.764820pt;}
.x3e{left:319.045763pt;}
.x1c{left:320.006447pt;}
.x82{left:321.277586pt;}
.x64{left:322.235226pt;}
.x44{left:324.161671pt;}
.x3{left:325.122378pt;}
.x34{left:326.879754pt;}
.x2a{left:328.160674pt;}
.x4d{left:329.605632pt;}
.x28{left:330.722536pt;}
.x20{left:332.643951pt;}
.x31{left:335.205814pt;}
.x1e{left:337.439623pt;}
.x39{left:338.400330pt;}
.x49{left:340.165501pt;}
.x4a{left:341.446444pt;}
.x13{left:342.719569pt;}
.x14{left:344.000488pt;}
.x65{left:347.197091pt;}
.x42{left:348.639963pt;}
.x58{left:349.764697pt;}
.x60{left:351.038116pt;}
.x9{left:355.685103pt;}
.x25{left:357.286259pt;}
.x45{left:358.246966pt;}
.x66{left:359.677687pt;}
.x2e{left:360.801011pt;}
.x4b{left:363.042637pt;}
.x3f{left:364.643793pt;}
.x15{left:365.604500pt;}
.x67{left:366.876297pt;}
.x68{left:371.036475pt;}
.x84{left:372.954218pt;}
.x69{left:374.555660pt;}
.x35{left:377.765548pt;}
.x6a{left:379.353636pt;}
.x16{left:382.084787pt;}
.x87{left:383.675121pt;}
.x6b{left:385.276680pt;}
.x6c{left:389.914384pt;}
.x5{left:391.363736pt;}
.x6d{left:392.795802pt;}
.x8e{left:395.047127pt;}
.x1f{left:396.323446pt;}
.x10{left:399.520209pt;}
.x17{left:401.447148pt;}
.x6e{left:404.475102pt;}
.x6f{left:410.394888pt;}
.x70{left:413.116034pt;}
.x2f{left:415.045359pt;}
.x71{left:419.035820pt;}
.x3a{left:422.082681pt;}
.x40{left:423.683837pt;}
.x50{left:428.162681pt;}
.x36{left:436.641529pt;}
.x8f{left:441.764039pt;}
.x72{left:445.753332pt;}
.xc{left:448.966616pt;}
.x18{left:449.927299pt;}
.x73{left:453.435984pt;}
.x74{left:458.233961pt;}
.x75{left:463.672962pt;}
.x76{left:467.035132pt;}
.x77{left:472.474134pt;}
.x37{left:474.882048pt;}
.x78{left:478.390662pt;}
.x79{left:483.195186pt;}
.x7a{left:486.073314pt;}
.x90{left:487.840241pt;}
.x98{left:489.447522pt;}
.x59{left:492.164140pt;}
.x7b{left:494.233461pt;}
.x7c{left:497.592342pt;}
.x7d{left:503.515418pt;}
.x88{left:504.484089pt;}
.x7e{left:506.230016pt;}
.x52{left:508.485762pt;}
.x7f{left:512.156349pt;}
.x80{left:514.870947pt;}
.x91{left:534.242304pt;}
.x51{left:541.125360pt;}
.x5a{left:544.486334pt;}
.x89{left:550.722567pt;}
.x9a{left:554.404540pt;}
.x5b{left:557.926621pt;}
.x12{left:562.887547pt;}
.x9c{left:564.322709pt;}
.x96{left:581.603597pt;}
.x54{left:586.719504pt;}
.x92{left:590.881068pt;}
.x97{left:593.113473pt;}
.x93{left:594.873081pt;}
.x4e{left:596.804882pt;}
.x9b{left:603.523220pt;}
.x5c{left:605.602739pt;}
.x4f{left:611.683978pt;}
.xa1{left:623.846527pt;}
.x94{left:625.127947pt;}
.x5d{left:626.727863pt;}
.x19{left:648.325296pt;}
.xa2{left:680.327831pt;}
}




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