
    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_25c20dbe321ce439b80d192e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_0eb9671b9d35fe8f6fd79619.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740723;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_b4c67fe9309a385d2c47dbaa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.892578;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_a6ed2ebfe863fc008139b6fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.330078;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_5a003c11f063b1cc609bb3d8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.339355;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_2c4be415d7c3696604f17746.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.693359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7f0fd783b831bc57ba5adc65.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e250e2d8288d8a9795b9be97.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_aed5918de0149dfd1d0ab425.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-115.200000px;}
.v4{vertical-align:-6.779160px;}
.v2{vertical-align:-1.355862px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.355862px;}
.v5{vertical-align:6.779160px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.033024px;}
.ls5{letter-spacing:0.033098px;}
.ls4{letter-spacing:0.284602px;}
.ls3{letter-spacing:0.809460px;}
.ls6{letter-spacing:10.693320px;}
.ls7{letter-spacing:10.719720px;}
.ls8{letter-spacing:29.450302px;}
.ls9{letter-spacing:29.483422px;}
.ls1{letter-spacing:32.838779px;}
.ls0{letter-spacing:505.926678px;}
.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;}
}
.ws4{word-spacing:-60.979274px;}
.ws16{word-spacing:-43.251806px;}
.wsc{word-spacing:-42.255914px;}
.ws5{word-spacing:-42.181115px;}
.ws17{word-spacing:-39.862166px;}
.ws3{word-spacing:-38.875385px;}
.ws9{word-spacing:-38.054531px;}
.ws15{word-spacing:-36.673207px;}
.wsb{word-spacing:-35.072201px;}
.ws7b{word-spacing:-26.270524px;}
.ws6a{word-spacing:-26.270456px;}
.ws76{word-spacing:-26.270388px;}
.ws37{word-spacing:-26.029859px;}
.ws5d{word-spacing:-25.946881px;}
.ws25{word-spacing:-25.930068px;}
.ws1d{word-spacing:-25.930000px;}
.ws46{word-spacing:-25.929932px;}
.ws49{word-spacing:-25.929865px;}
.ws56{word-spacing:-25.896782px;}
.ws57{word-spacing:-25.893460px;}
.ws40{word-spacing:-25.851700px;}
.ws5b{word-spacing:-25.252140px;}
.ws42{word-spacing:-25.252072px;}
.ws3c{word-spacing:-25.251937px;}
.ws71{word-spacing:-25.251869px;}
.ws51{word-spacing:-25.108962px;}
.ws45{word-spacing:-24.574144px;}
.ws3f{word-spacing:-24.574076px;}
.ws38{word-spacing:-24.573941px;}
.ws21{word-spacing:-23.896216px;}
.ws1c{word-spacing:-23.896148px;}
.ws24{word-spacing:-23.218220px;}
.ws35{word-spacing:-22.914102px;}
.ws4f{word-spacing:-22.913966px;}
.ws4a{word-spacing:-22.913695px;}
.ws29{word-spacing:-22.540360px;}
.ws3a{word-spacing:-22.236038px;}
.ws5c{word-spacing:-22.235903px;}
.ws33{word-spacing:-21.862500px;}
.ws2d{word-spacing:-21.862364px;}
.ws30{word-spacing:-21.558110px;}
.ws60{word-spacing:-21.558043px;}
.ws3b{word-spacing:-20.880182px;}
.ws5f{word-spacing:-20.506441px;}
.ws43{word-spacing:-19.828445px;}
.ws6f{word-spacing:-19.795430px;}
.ws8{word-spacing:-19.564085px;}
.ws63{word-spacing:-19.363793px;}
.ws12{word-spacing:-19.337859px;}
.ws6e{word-spacing:-19.313965px;}
.ws48{word-spacing:-19.150652px;}
.ws74{word-spacing:-19.117434px;}
.ws75{word-spacing:-19.014118px;}
.ws78{word-spacing:-18.647901px;}
.ws47{word-spacing:-18.472792px;}
.ws3d{word-spacing:-18.472724px;}
.ws4d{word-spacing:-18.472657px;}
.ws3e{word-spacing:-18.135523px;}
.ws34{word-spacing:-18.135455px;}
.ws19{word-spacing:-18.135388px;}
.ws61{word-spacing:-18.135116px;}
.ws64{word-spacing:-17.794864px;}
.ws1e{word-spacing:-17.490610px;}
.ws22{word-spacing:-17.490542px;}
.ws2e{word-spacing:-17.490407px;}
.ws2c{word-spacing:-17.490339px;}
.ws2f{word-spacing:-17.490271px;}
.ws5a{word-spacing:-17.457595px;}
.ws52{word-spacing:-17.457527px;}
.ws1a{word-spacing:-17.457460px;}
.ws20{word-spacing:-17.457392px;}
.ws28{word-spacing:-17.457324px;}
.ws26{word-spacing:-17.457256px;}
.ws62{word-spacing:-17.457121px;}
.ws54{word-spacing:-17.453528px;}
.ws55{word-spacing:-17.453053px;}
.ws2a{word-spacing:-17.366617px;}
.ws79{word-spacing:-17.333466px;}
.ws68{word-spacing:-17.117140px;}
.ws66{word-spacing:-17.116868px;}
.wsd{word-spacing:-17.057633px;}
.ws11{word-spacing:-17.025171px;}
.ws4c{word-spacing:-16.812750px;}
.ws18{word-spacing:-16.812614px;}
.ws59{word-spacing:-16.812547px;}
.ws41{word-spacing:-16.812479px;}
.ws67{word-spacing:-16.779735px;}
.ws2b{word-spacing:-16.779667px;}
.ws27{word-spacing:-16.779599px;}
.ws1b{word-spacing:-16.779532px;}
.ws31{word-spacing:-16.779464px;}
.ws32{word-spacing:-16.779396px;}
.ws23{word-spacing:-16.779260px;}
.ws50{word-spacing:-16.760075px;}
.ws4b{word-spacing:-16.741432px;}
.ws7a{word-spacing:-16.608897px;}
.ws0{word-spacing:-16.528650px;}
.wsf{word-spacing:-16.396553px;}
.wse{word-spacing:-16.396421px;}
.ws10{word-spacing:-16.364223px;}
.ws39{word-spacing:-16.134686px;}
.ws44{word-spacing:-16.134551px;}
.ws65{word-spacing:-16.101604px;}
.ws5e{word-spacing:-16.101536px;}
.ws13{word-spacing:-15.702945px;}
.ws1f{word-spacing:-15.592350px;}
.ws4e{word-spacing:-15.456758px;}
.ws70{word-spacing:-15.083152px;}
.ws69{word-spacing:-15.083084px;}
.ws53{word-spacing:-14.605145px;}
.ws77{word-spacing:-14.405089px;}
.ws36{word-spacing:-13.910066px;}
.wsa{word-spacing:-1.937739px;}
.ws58{word-spacing:-0.067793px;}
.ws1{word-spacing:-0.059647px;}
.ws14{word-spacing:0.000000px;}
.ws7{word-spacing:57.589389px;}
.ws6b{word-spacing:147.327313px;}
.ws6c{word-spacing:147.652718px;}
.ws72{word-spacing:148.330646px;}
.ws6{word-spacing:161.403700px;}
.ws6d{word-spacing:202.871988px;}
.ws73{word-spacing:203.920742px;}
.ws2{word-spacing:1301.796474px;}
._1e{margin-left:-25.721593px;}
._21{margin-left:-24.558070px;}
._d{margin-left:-23.153836px;}
._9{margin-left:-21.867587px;}
._26{margin-left:-20.616857px;}
._4{margin-left:-17.937538px;}
._18{margin-left:-12.749865px;}
._11{margin-left:-11.478830px;}
._20{margin-left:-10.230963px;}
._25{margin-left:-9.133151px;}
._14{margin-left:-8.084140px;}
._e{margin-left:-6.917977px;}
._7{margin-left:-5.526129px;}
._13{margin-left:-3.914847px;}
._a{margin-left:-2.717507px;}
._0{margin-left:-1.233689px;}
._1{width:1.364082px;}
._2{width:2.494512px;}
._c{width:3.642399px;}
._6{width:5.125185px;}
._16{width:6.142649px;}
._8{width:7.157592px;}
._10{width:8.950159px;}
._f{width:10.241419px;}
._17{width:11.337062px;}
._12{width:12.594038px;}
._1c{width:13.723518px;}
._1b{width:15.557593px;}
._22{width:16.638173px;}
._15{width:17.915406px;}
._1d{width:19.474856px;}
._27{width:20.514161px;}
._23{width:21.810464px;}
._b{width:23.306367px;}
._24{width:24.418032px;}
._1f{width:25.985590px;}
._19{width:52.376516px;}
._5{width:64.971889px;}
._3{width:89.634667px;}
._1a{width:187.731894px;}
.fc3{color:transparent;}
.fc2{color:rgb(31,73,124);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.148620px;}
.fs1{font-size:59.646600px;}
.fs6{font-size:62.369400px;}
.fs0{font-size:66.114600px;}
.fs7{font-size:67.792800px;}
.fs4{font-size:71.863800px;}
.fs5{font-size:84.080400px;}
.fs3{font-size:95.578800px;}
.y0{bottom:0.000000px;}
.y35{bottom:3.784500px;}
.y4f{bottom:4.318500px;}
.yea{bottom:4.318950px;}
.y46{bottom:4.320000px;}
.y64{bottom:4.323000px;}
.y4b{bottom:4.324500px;}
.y70{bottom:4.330500px;}
.y2{bottom:83.340300px;}
.y1{bottom:102.240300px;}
.y7a{bottom:111.599400px;}
.y5a{bottom:111.600450px;}
.y11e{bottom:118.081050px;}
.y164{bottom:118.081200px;}
.ye9{bottom:127.980450px;}
.yc9{bottom:132.298950px;}
.yfd{bottom:132.299250px;}
.yb2{bottom:132.299400px;}
.y96{bottom:132.299434px;}
.ye0{bottom:132.299550px;}
.y144{bottom:133.555650px;}
.y154{bottom:137.874600px;}
.y157{bottom:137.874900px;}
.y143{bottom:137.875200px;}
.y79{bottom:145.440750px;}
.y59{bottom:145.441800px;}
.y1e{bottom:151.020450px;}
.y129{bottom:151.921950px;}
.y11d{bottom:151.922400px;}
.y163{bottom:151.922550px;}
.yb1{bottom:161.635500px;}
.yc8{bottom:165.954000px;}
.yf1{bottom:165.954300px;}
.ye8{bottom:165.954450px;}
.y95{bottom:165.954484px;}
.ydf{bottom:165.954600px;}
.yb0{bottom:165.954900px;}
.y116{bottom:165.955200px;}
.y156{bottom:171.716250px;}
.y142{bottom:171.716550px;}
.y153{bottom:171.721650px;}
.y31{bottom:175.499850px;}
.y78{bottom:179.277450px;}
.y58{bottom:179.278500px;}
.y1d{bottom:183.960750px;}
.y128{bottom:185.758050px;}
.y11c{bottom:185.758500px;}
.y162{bottom:185.758650px;}
.ydb{bottom:195.658500px;}
.yc7{bottom:199.976400px;}
.ybb{bottom:199.976700px;}
.ye7{bottom:199.976850px;}
.y94{bottom:199.976884px;}
.yde{bottom:199.977000px;}
.yda{bottom:199.977150px;}
.yaf{bottom:199.977300px;}
.y152{bottom:205.563000px;}
.y141{bottom:205.563300px;}
.y30{bottom:208.440150px;}
.y57{bottom:208.614000px;}
.y77{bottom:212.932500px;}
.y56{bottom:212.933550px;}
.y71{bottom:212.944500px;}
.y1c{bottom:217.620450px;}
.y127{bottom:219.594150px;}
.y11b{bottom:219.594600px;}
.y161{bottom:219.594750px;}
.y16c{bottom:229.318500px;}
.yc6{bottom:233.642100px;}
.yba{bottom:233.642400px;}
.ye6{bottom:233.642550px;}
.y93{bottom:233.642584px;}
.yd9{bottom:233.642850px;}
.yae{bottom:233.643000px;}
.y115{bottom:233.643300px;}
.y151{bottom:234.900000px;}
.y150{bottom:239.218500px;}
.y140{bottom:239.218950px;}
.y2f{bottom:241.199850px;}
.y6f{bottom:246.955500px;}
.y55{bottom:246.955950px;}
.y126{bottom:253.435500px;}
.y11a{bottom:253.435950px;}
.y160{bottom:253.436100px;}
.yad{bottom:263.160000px;}
.yac{bottom:267.478050px;}
.yc5{bottom:267.478200px;}
.yb9{bottom:267.478500px;}
.ye5{bottom:267.478650px;}
.y92{bottom:267.478684px;}
.yd8{bottom:267.478950px;}
.ydd{bottom:267.479100px;}
.y114{bottom:267.479400px;}
.y1b{bottom:270.900300px;}
.y155{bottom:273.240750px;}
.y14f{bottom:273.240900px;}
.y13f{bottom:273.241350px;}
.y2e{bottom:274.140150px;}
.y6e{bottom:276.303000px;}
.y6d{bottom:280.621500px;}
.y54{bottom:280.621650px;}
.y125{bottom:282.964500px;}
.y119{bottom:287.282700px;}
.y124{bottom:287.282850px;}
.yf0{bottom:296.997000px;}
.yef{bottom:301.314150px;}
.yc4{bottom:301.314300px;}
.ye4{bottom:301.314750px;}
.y91{bottom:301.314784px;}
.y109{bottom:301.314900px;}
.yd7{bottom:301.315050px;}
.ydc{bottom:301.315200px;}
.y113{bottom:301.315500px;}
.y2d{bottom:307.079850px;}
.y6c{bottom:310.138500px;}
.y76{bottom:314.457000px;}
.y6b{bottom:314.457600px;}
.y53{bottom:314.457750px;}
.y130{bottom:321.119100px;}
.y118{bottom:321.119400px;}
.y123{bottom:321.119550px;}
.y13e{bottom:321.120000px;}
.y1a{bottom:326.160000px;}
.y16b{bottom:330.838500px;}
.yab{bottom:335.156100px;}
.yc3{bottom:335.156250px;}
.ye3{bottom:335.156700px;}
.y90{bottom:335.156734px;}
.y108{bottom:335.156850px;}
.yd6{bottom:335.157000px;}
.y112{bottom:335.157150px;}
.y2c{bottom:340.020150px;}
.y6a{bottom:348.298950px;}
.y52{bottom:348.299100px;}
.y12f{bottom:354.774150px;}
.y117{bottom:354.774450px;}
.y122{bottom:354.774600px;}
.y13d{bottom:354.775050px;}
.y16a{bottom:364.684500px;}
.yaa{bottom:369.002850px;}
.yc2{bottom:369.003000px;}
.ye2{bottom:369.003450px;}
.y8f{bottom:369.003484px;}
.y107{bottom:369.003600px;}
.y111{bottom:369.003900px;}
.y2b{bottom:372.960450px;}
.y69{bottom:382.135650px;}
.y51{bottom:382.135800px;}
.y75{bottom:382.136100px;}
.y19{bottom:383.040450px;}
.y168{bottom:388.796850px;}
.y14e{bottom:388.797000px;}
.y13c{bottom:388.797450px;}
.yc1{bottom:398.520000px;}
.ya9{bottom:402.838950px;}
.yfc{bottom:402.839100px;}
.yc0{bottom:402.839550px;}
.y8e{bottom:402.839585px;}
.y106{bottom:402.839700px;}
.yd5{bottom:402.840000px;}
.y2a{bottom:405.900150px;}
.y68{bottom:415.801350px;}
.y50{bottom:415.801500px;}
.y74{bottom:415.801800px;}
.y14d{bottom:418.144500px;}
.y15f{bottom:422.462700px;}
.y14c{bottom:422.463000px;}
.y13b{bottom:422.463150px;}
.yd4{bottom:432.175500px;}
.ya8{bottom:436.494000px;}
.yfb{bottom:436.494150px;}
.ybf{bottom:436.494600px;}
.y8d{bottom:436.494634px;}
.y105{bottom:436.494750px;}
.y110{bottom:436.495050px;}
.y29{bottom:438.840450px;}
.y18{bottom:440.100150px;}
.y4e{bottom:445.500000px;}
.y67{bottom:449.818500px;}
.y4d{bottom:449.818650px;}
.y73{bottom:449.818950px;}
.y14b{bottom:451.980000px;}
.y15e{bottom:456.298800px;}
.y13a{bottom:456.299250px;}
.y14a{bottom:456.299550px;}
.ya7{bottom:466.198500px;}
.ya6{bottom:470.516250px;}
.yd3{bottom:470.516400px;}
.yfa{bottom:470.516550px;}
.y12e{bottom:470.516700px;}
.ybe{bottom:470.517000px;}
.y8c{bottom:470.517034px;}
.y104{bottom:470.517150px;}
.y121{bottom:470.517300px;}
.y10f{bottom:470.517450px;}
.y28{bottom:471.780150px;}
.y4c{bottom:483.660000px;}
.y66{bottom:483.660300px;}
.y167{bottom:490.140600px;}
.y15d{bottom:490.140750px;}
.y139{bottom:490.141200px;}
.y149{bottom:490.141500px;}
.y17{bottom:496.980000px;}
.y169{bottom:499.864500px;}
.yd2{bottom:504.182100px;}
.yf9{bottom:504.182250px;}
.y12d{bottom:504.182400px;}
.ybd{bottom:504.182700px;}
.y8b{bottom:504.182734px;}
.y103{bottom:504.182850px;}
.y120{bottom:504.183000px;}
.y10e{bottom:504.183150px;}
.y27{bottom:504.720450px;}
.y4a{bottom:513.001500px;}
.y49{bottom:517.325700px;}
.y65{bottom:517.326000px;}
.y148{bottom:519.658500px;}
.y166{bottom:523.976700px;}
.y15c{bottom:523.976850px;}
.y147{bottom:523.977150px;}
.y138{bottom:523.977300px;}
.y11f{bottom:533.700000px;}
.y26{bottom:537.480150px;}
.ya5{bottom:538.018050px;}
.yd1{bottom:538.018200px;}
.yf8{bottom:538.018350px;}
.y12c{bottom:538.018500px;}
.yb8{bottom:538.018800px;}
.y8a{bottom:538.018834px;}
.y102{bottom:538.018950px;}
.y10d{bottom:538.019250px;}
.y16{bottom:540.900150px;}
.y63{bottom:547.014000px;}
.y48{bottom:551.337600px;}
.y62{bottom:551.337750px;}
.y165{bottom:557.642400px;}
.y15b{bottom:557.642550px;}
.y146{bottom:557.642850px;}
.y137{bottom:557.643000px;}
.y25{bottom:570.420450px;}
.y15{bottom:570.600150px;}
.ya4{bottom:571.860000px;}
.yee{bottom:571.860150px;}
.yf7{bottom:571.860300px;}
.yb7{bottom:571.860750px;}
.y89{bottom:571.860785px;}
.y12b{bottom:571.860900px;}
.y72{bottom:584.998350px;}
.y47{bottom:584.998500px;}
.y61{bottom:584.998650px;}
.y136{bottom:587.341500px;}
.y14{bottom:590.759850px;}
.y135{bottom:591.659700px;}
.y145{bottom:591.660000px;}
.y24{bottom:603.360150px;}
.ya3{bottom:605.696100px;}
.yd0{bottom:605.696250px;}
.yf6{bottom:605.696400px;}
.yb6{bottom:605.696850px;}
.y88{bottom:605.696885px;}
.y101{bottom:605.697000px;}
.y10c{bottom:605.697300px;}
.y13{bottom:610.740300px;}
.y45{bottom:614.520000px;}
.y44{bottom:618.839700px;}
.y60{bottom:618.840000px;}
.y134{bottom:625.320000px;}
.y12{bottom:631.800000px;}
.y100{bottom:635.044500px;}
.y23{bottom:636.300450px;}
.ya2{bottom:639.361800px;}
.ycf{bottom:639.361950px;}
.yb5{bottom:639.362550px;}
.y87{bottom:639.362585px;}
.y12a{bottom:639.362700px;}
.y10b{bottom:639.363000px;}
.y43{bottom:652.675800px;}
.y133{bottom:659.156700px;}
.y11{bottom:661.500150px;}
.y170{bottom:669.061500px;}
.y22{bottom:669.240750px;}
.ya1{bottom:673.381350px;}
.yce{bottom:673.381500px;}
.yb4{bottom:673.382100px;}
.y86{bottom:673.382135px;}
.y10a{bottom:673.382250px;}
.y42{bottom:686.523600px;}
.y10{bottom:691.380000px;}
.y132{bottom:693.002850px;}
.y21{bottom:702.180450px;}
.ycd{bottom:702.900000px;}
.ya0{bottom:707.219850px;}
.yed{bottom:707.220000px;}
.yb3{bottom:707.220600px;}
.y85{bottom:707.220635px;}
.ycc{bottom:707.220750px;}
.y41{bottom:720.179850px;}
.yf{bottom:721.440300px;}
.y131{bottom:726.841350px;}
.y20{bottom:735.120750px;}
.yec{bottom:736.557000px;}
.y9f{bottom:740.876100px;}
.ybc{bottom:740.876850px;}
.y84{bottom:740.876885px;}
.ycb{bottom:740.877000px;}
.y40{bottom:754.200000px;}
.y15a{bottom:760.497600px;}
.ye{bottom:768.059850px;}
.y1f{bottom:768.060450px;}
.yca{bottom:770.577000px;}
.y9e{bottom:774.896250px;}
.y83{bottom:774.897000px;}
.yf5{bottom:774.897150px;}
.y3f{bottom:787.856850px;}
.y159{bottom:794.518350px;}
.y16f{bottom:804.241500px;}
.y9d{bottom:808.560750px;}
.y82{bottom:808.561500px;}
.yf4{bottom:808.561650px;}
.y3e{bottom:821.703000px;}
.yd{bottom:821.880000px;}
.y158{bottom:828.182850px;}
.y16e{bottom:838.080000px;}
.y9c{bottom:842.399250px;}
.y81{bottom:842.400000px;}
.yf3{bottom:842.400150px;}
.y3d{bottom:855.541500px;}
.yc{bottom:867.959850px;}
.ye1{bottom:871.918500px;}
.y9b{bottom:876.237750px;}
.y80{bottom:876.238500px;}
.yf2{bottom:876.238650px;}
.y5f{bottom:885.060000px;}
.y5e{bottom:889.379250px;}
.y3c{bottom:889.380000px;}
.yb{bottom:892.980000px;}
.yfe{bottom:905.757000px;}
.y9a{bottom:910.076250px;}
.y7f{bottom:910.077000px;}
.yeb{bottom:910.077150px;}
.ya{bottom:916.559850px;}
.y5d{bottom:923.035500px;}
.y3b{bottom:923.036250px;}
.yff{bottom:939.421500px;}
.y9{bottom:940.680000px;}
.y99{bottom:943.740750px;}
.y7e{bottom:943.741500px;}
.y5c{bottom:952.737000px;}
.y3a{bottom:957.057000px;}
.y8{bottom:964.080000px;}
.y16d{bottom:973.441500px;}
.y98{bottom:977.761500px;}
.y7d{bottom:977.762250px;}
.y39{bottom:990.721500px;}
.y97{bottom:1007.098500px;}
.y7c{bottom:1011.418500px;}
.y7{bottom:1020.600150px;}
.y38{bottom:1024.560000px;}
.y7b{bottom:1045.257000px;}
.y37{bottom:1046.877000px;}
.y6{bottom:1056.780150px;}
.y36{bottom:1067.038500px;}
.y5{bottom:1078.560000px;}
.y34{bottom:1081.260000px;}
.y5b{bottom:1085.044500px;}
.y4{bottom:1100.520300px;}
.y33{bottom:1103.581650px;}
.y32{bottom:1122.303000px;}
.y3{bottom:1122.480000px;}
.ha{height:17.640300px;}
.he{height:22.493550px;}
.hd{height:22.498800px;}
.h12{height:22.499400px;}
.h11{height:22.500600px;}
.h10{height:22.501200px;}
.h13{height:22.501800px;}
.hf{height:22.504050px;}
.h9{height:43.335770px;}
.h1{height:45.938025px;}
.h4{height:48.704568px;}
.h5{height:49.932709px;}
.h3{height:51.957251px;}
.h8{height:55.997546px;}
.h6{height:64.364739px;}
.hb{height:67.302917px;}
.h2{height:71.344368px;}
.hc{height:73.155316px;}
.h7{height:77.548339px;}
.h0{height:1188.000000px;}
.w1e{width:0.181641px;}
.w44{width:0.363282px;}
.w18{width:0.536720px;}
.w2{width:0.718359px;}
.w2b{width:1.253907px;}
.w5e{width:1.437304px;}
.w38{width:1.801170px;}
.w34{width:1.802340px;}
.w4{width:1.982220px;}
.w33{width:1.983405px;}
.w13{width:2.163870px;}
.w22{width:2.337885px;}
.w5f{width:2.700585px;}
.w23{width:2.875200px;}
.w3{width:3.418950px;}
.w37{width:3.421875px;}
.w5d{width:3.600585px;}
.w5{width:3.782220px;}
.w54{width:3.964455px;}
.w56{width:4.137300px;}
.w28{width:4.319535px;}
.w1a{width:4.320120px;}
.w24{width:4.323045px;}
.w1f{width:4.501170px;}
.w1d{width:5.583405px;}
.w46{width:5.756250px;}
.w2c{width:6.120120px;}
.w25{width:6.306450px;}
.w2e{width:6.478125px;}
.wc{width:6.656835px;}
.w8{width:6.658590px;}
.w49{width:6.838470px;}
.w20{width:7.020120px;}
.wd{width:7.201755px;}
.w7{width:7.204095px;}
.w1c{width:8.279295px;}
.w1b{width:8.459760px;}
.w5c{width:8.639070px;}
.w4e{width:9.002340px;}
.w9{width:9.177540px;}
.w64{width:9.178125px;}
.w60{width:9.539070px;}
.wa{width:11.884575px;}
.wb{width:12.238470px;}
.w53{width:12.421290px;}
.w19{width:12.960945px;}
.w36{width:13.139655px;}
.w43{width:13.140240px;}
.w57{width:14.038470px;}
.w59{width:14.395320px;}
.w48{width:15.122400px;}
.w50{width:16.740750px;}
.wf{width:17.276400px;}
.w47{width:17.278200px;}
.w35{width:17.643150px;}
.w45{width:17.996550px;}
.w21{width:20.162100px;}
.w51{width:21.060300px;}
.w52{width:21.241950px;}
.w12{width:22.323600px;}
.w55{width:23.224200px;}
.w5a{width:23.943150px;}
.w2a{width:25.556250px;}
.w5b{width:25.561500px;}
.w3e{width:26.098200px;}
.w3d{width:26.815500px;}
.w41{width:30.599400px;}
.w61{width:31.499400px;}
.w26{width:32.037900px;}
.w17{width:32.766150px;}
.w4a{width:33.837300px;}
.w2f{width:34.018350px;}
.we{width:34.021350px;}
.w4b{width:34.919550px;}
.w16{width:34.920150px;}
.w63{width:35.275800px;}
.w4d{width:36.354450px;}
.w6{width:38.165700px;}
.w58{width:41.039700px;}
.w29{width:41.402400px;}
.w11{width:41.759250px;}
.w31{width:43.741350px;}
.w4f{width:44.458650px;}
.w62{width:48.604050px;}
.w30{width:49.858050px;}
.w3c{width:53.823600px;}
.w3a{width:61.381650px;}
.w39{width:61.566150px;}
.w27{width:67.675200px;}
.w42{width:72.366150px;}
.w14{width:72.541350px;}
.w15{width:72.722400px;}
.w3b{width:75.421950px;}
.w32{width:124.735500px;}
.w10{width:134.463900px;}
.w3f{width:140.040300px;}
.w4c{width:156.598500px;}
.w1{width:194.580000px;}
.w2d{width:196.021500px;}
.w40{width:275.940000px;}
.w0{width:918.000000px;}
.xa1{left:-275.769000px;}
.x76{left:-195.844500px;}
.x14{left:-194.400000px;}
.x9f{left:-139.683000px;}
.x89{left:-124.560000px;}
.x99{left:-75.066000px;}
.x64{left:-67.683000px;}
.x94{left:-61.026000px;}
.x82{left:-49.509000px;}
.xc2{left:-44.460000px;}
.x84{left:-43.389000px;}
.x38{left:-41.766000px;}
.xc0{left:-36.537000px;}
.x34{left:-34.024500px;}
.x9e{left:-26.463000px;}
.x70{left:-25.389000px;}
.xc9{left:-23.943000px;}
.x60{left:-19.981500px;}
.x36{left:-17.281500px;}
.xbd{left:-14.941500px;}
.xc8{left:-13.867500px;}
.x31{left:-12.069000px;}
.x2c{left:-8.824500px;}
.x28{left:-7.375500px;}
.xbb{left:-5.583000px;}
.x4c{left:-4.498500px;}
.x1f{left:-3.238500px;}
.x20{left:-1.983000px;}
.x0{left:0.000000px;}
.x95{left:1.608000px;}
.x1{left:81.000000px;}
.xc{left:109.432650px;}
.xb{left:134.992350px;}
.x10{left:165.957000px;}
.xf{left:167.218500px;}
.xd{left:178.020000px;}
.x51{left:180.531833px;}
.x18{left:189.888833px;}
.x8c{left:191.507885px;}
.x8d{left:199.427997px;}
.x1c{left:213.295872px;}
.xb4{left:214.745182px;}
.x68{left:219.769833px;}
.x8e{left:222.835345px;}
.x7b{left:226.435979px;}
.xa3{left:232.191527px;}
.x7e{left:233.810238px;}
.x62{left:235.074000px;}
.x3e{left:236.692500px;}
.x1b{left:237.949440px;}
.xa6{left:240.657836px;}
.x9{left:246.059850px;}
.x3f{left:252.533802px;}
.x7{left:257.580000px;}
.x97{left:260.634042px;}
.x3c{left:262.255404px;}
.xa2{left:263.509310px;}
.xb6{left:265.310641px;}
.x7d{left:267.828168px;}
.x6a{left:273.410648px;}
.x69{left:276.830704px;}
.xa5{left:277.913787px;}
.xb3{left:280.258589px;}
.x55{left:281.869500px;}
.x63{left:282.952695px;}
.x93{left:286.377000px;}
.x7f{left:287.988478px;}
.x54{left:290.872891px;}
.x4f{left:293.034715px;}
.x61{left:294.123000px;}
.x79{left:295.910554px;}
.x19{left:299.518500px;}
.x3d{left:301.676024px;}
.x26{left:309.411959px;}
.x81{left:311.577000px;}
.x23{left:313.368000px;}
.x8f{left:319.134651px;}
.xe{left:320.392443px;}
.xb7{left:322.908195px;}
.x78{left:324.353640px;}
.x3b{left:326.509233px;}
.xb2{left:327.961500px;}
.x50{left:330.473301px;}
.x17{left:331.909500px;}
.x6c{left:334.256231px;}
.x3a{left:335.329500px;}
.xc5{left:337.855500px;}
.x66{left:340.012877px;}
.x8b{left:343.251132px;}
.xb1{left:344.520000px;}
.xa4{left:345.767761px;}
.xc4{left:347.403000px;}
.xb0{left:348.658500px;}
.xb5{left:349.737562px;}
.xc6{left:353.160000px;}
.x4e{left:355.497228px;}
.x12{left:358.380000px;}
.x13{left:359.817000px;}
.x11{left:361.080000px;}
.xc7{left:362.518500px;}
.xbe{left:365.400000px;}
.x8{left:368.640300px;}
.xba{left:370.257000px;}
.x1d{left:373.684500px;}
.x6f{left:377.990886px;}
.xab{left:379.075135px;}
.xbc{left:382.860000px;}
.x46{left:385.561304px;}
.xcb{left:386.824500px;}
.x86{left:388.255715px;}
.x9a{left:392.209500px;}
.x77{left:395.463000px;}
.x6{left:397.259850px;}
.x15{left:399.780000px;}
.x4a{left:401.394053px;}
.x65{left:403.020000px;}
.x98{left:408.958500px;}
.xca{left:410.221500px;}
.x48{left:413.814864px;}
.x5b{left:415.972385px;}
.xae{left:420.833558px;}
.x9d{left:431.277278px;}
.x45{left:433.070784px;}
.x43{left:434.690173px;}
.x30{left:437.574712px;}
.x37{left:439.194000px;}
.x5a{left:451.433284px;}
.x5d{left:456.292500px;}
.xa{left:458.999850px;}
.x47{left:462.233274px;}
.x59{left:468.721401px;}
.x9c{left:480.587993px;}
.x2{left:485.460000px;}
.x83{left:492.109341px;}
.x24{left:495.718500px;}
.xbf{left:496.794214px;}
.x6d{left:508.313313px;}
.x4b{left:511.016057px;}
.x57{left:512.272805px;}
.x71{left:513.891104px;}
.xaf{left:517.323463px;}
.xb8{left:518.389500px;}
.x74{left:521.807543px;}
.xa8{left:524.514340px;}
.x44{left:527.403101px;}
.x91{left:530.809677px;}
.x49{left:535.312510px;}
.x5{left:537.120300px;}
.x96{left:544.858500px;}
.xac{left:549.718427px;}
.xa7{left:556.016115px;}
.x73{left:558.716320px;}
.x80{left:560.163000px;}
.x2a{left:562.311000px;}
.x2d{left:573.477000px;}
.x88{left:574.557398px;}
.x75{left:578.152319px;}
.xa9{left:580.673165px;}
.xad{left:584.824036px;}
.x5e{left:586.786737px;}
.x5f{left:589.854709px;}
.x42{left:593.811548px;}
.x3{left:596.160000px;}
.xc1{left:609.472030px;}
.x33{left:613.246956px;}
.x87{left:618.107604px;}
.xaa{left:619.192944px;}
.x72{left:622.428392px;}
.x4{left:624.060000px;}
.x6e{left:631.974838px;}
.x2f{left:633.410886px;}
.x7a{left:635.040000px;}
.x32{left:637.200169px;}
.x7c{left:641.157000px;}
.x25{left:643.138500px;}
.x56{left:646.551000px;}
.xb9{left:648.544500px;}
.xa0{left:649.794786px;}
.x21{left:650.877000px;}
.x58{left:653.033111px;}
.x90{left:657.356025px;}
.x67{left:659.341500px;}
.x2e{left:662.748182px;}
.x52{left:664.735500px;}
.x22{left:667.621500px;}
.x9b{left:671.213391px;}
.x1e{left:672.660000px;}
.x1a{left:675.720000px;}
.x16{left:677.698500px;}
.x40{left:680.578500px;}
.x53{left:682.560000px;}
.x6b{left:683.644500px;}
.x27{left:684.898500px;}
.x2b{left:686.874000px;}
.x5c{left:689.214000px;}
.x4d{left:690.474000px;}
.x41{left:693.169500px;}
.x8a{left:697.501500px;}
.xc3{left:698.758500px;}
.x85{left:702.175500px;}
.x29{left:707.223000px;}
.x39{left:716.043000px;}
.x35{left:719.818500px;}
.x92{left:746.098500px;}
@media print{
.v1{vertical-align:-102.400000pt;}
.v4{vertical-align:-6.025920pt;}
.v2{vertical-align:-1.205211pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.205211pt;}
.v5{vertical-align:6.025920pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.029355pt;}
.ls5{letter-spacing:0.029420pt;}
.ls4{letter-spacing:0.252979pt;}
.ls3{letter-spacing:0.719520pt;}
.ls6{letter-spacing:9.505173pt;}
.ls7{letter-spacing:9.528640pt;}
.ls8{letter-spacing:26.178046pt;}
.ls9{letter-spacing:26.207486pt;}
.ls1{letter-spacing:29.190026pt;}
.ls0{letter-spacing:449.712603pt;}
.ws4{word-spacing:-54.203799pt;}
.ws16{word-spacing:-38.446050pt;}
.wsc{word-spacing:-37.560813pt;}
.ws5{word-spacing:-37.494324pt;}
.ws17{word-spacing:-35.433037pt;}
.ws3{word-spacing:-34.555898pt;}
.ws9{word-spacing:-33.826250pt;}
.ws15{word-spacing:-32.598406pt;}
.wsb{word-spacing:-31.175290pt;}
.ws7b{word-spacing:-23.351576pt;}
.ws6a{word-spacing:-23.351516pt;}
.ws76{word-spacing:-23.351456pt;}
.ws37{word-spacing:-23.137653pt;}
.ws5d{word-spacing:-23.063894pt;}
.ws25{word-spacing:-23.048949pt;}
.ws1d{word-spacing:-23.048889pt;}
.ws46{word-spacing:-23.048829pt;}
.ws49{word-spacing:-23.048769pt;}
.ws56{word-spacing:-23.019362pt;}
.ws57{word-spacing:-23.016409pt;}
.ws40{word-spacing:-22.979289pt;}
.ws5b{word-spacing:-22.446347pt;}
.ws42{word-spacing:-22.446286pt;}
.ws3c{word-spacing:-22.446166pt;}
.ws71{word-spacing:-22.446106pt;}
.ws51{word-spacing:-22.319077pt;}
.ws45{word-spacing:-21.843684pt;}
.ws3f{word-spacing:-21.843624pt;}
.ws38{word-spacing:-21.843503pt;}
.ws21{word-spacing:-21.241081pt;}
.ws1c{word-spacing:-21.241021pt;}
.ws24{word-spacing:-20.638418pt;}
.ws35{word-spacing:-20.368091pt;}
.ws4f{word-spacing:-20.367970pt;}
.ws4a{word-spacing:-20.367729pt;}
.ws29{word-spacing:-20.035876pt;}
.ws3a{word-spacing:-19.765367pt;}
.ws5c{word-spacing:-19.765247pt;}
.ws33{word-spacing:-19.433333pt;}
.ws2d{word-spacing:-19.433213pt;}
.ws30{word-spacing:-19.162765pt;}
.ws60{word-spacing:-19.162705pt;}
.ws3b{word-spacing:-18.560162pt;}
.ws5f{word-spacing:-18.227947pt;}
.ws43{word-spacing:-17.625284pt;}
.ws6f{word-spacing:-17.595938pt;}
.ws8{word-spacing:-17.390298pt;}
.ws63{word-spacing:-17.212260pt;}
.ws12{word-spacing:-17.189208pt;}
.ws6e{word-spacing:-17.167969pt;}
.ws48{word-spacing:-17.022802pt;}
.ws74{word-spacing:-16.993275pt;}
.ws75{word-spacing:-16.901438pt;}
.ws78{word-spacing:-16.575912pt;}
.ws47{word-spacing:-16.420260pt;}
.ws3d{word-spacing:-16.420200pt;}
.ws4d{word-spacing:-16.420139pt;}
.ws3e{word-spacing:-16.120465pt;}
.ws34{word-spacing:-16.120405pt;}
.ws19{word-spacing:-16.120344pt;}
.ws61{word-spacing:-16.120103pt;}
.ws64{word-spacing:-15.817657pt;}
.ws1e{word-spacing:-15.547209pt;}
.ws22{word-spacing:-15.547149pt;}
.ws2e{word-spacing:-15.547028pt;}
.ws2c{word-spacing:-15.546968pt;}
.ws2f{word-spacing:-15.546908pt;}
.ws5a{word-spacing:-15.517862pt;}
.ws52{word-spacing:-15.517802pt;}
.ws1a{word-spacing:-15.517742pt;}
.ws20{word-spacing:-15.517682pt;}
.ws28{word-spacing:-15.517621pt;}
.ws26{word-spacing:-15.517561pt;}
.ws62{word-spacing:-15.517440pt;}
.ws54{word-spacing:-15.514247pt;}
.ws55{word-spacing:-15.513825pt;}
.ws2a{word-spacing:-15.436993pt;}
.ws79{word-spacing:-15.407526pt;}
.ws68{word-spacing:-15.215235pt;}
.ws66{word-spacing:-15.214994pt;}
.wsd{word-spacing:-15.162340pt;}
.ws11{word-spacing:-15.133485pt;}
.ws4c{word-spacing:-14.944667pt;}
.ws18{word-spacing:-14.944546pt;}
.ws59{word-spacing:-14.944486pt;}
.ws41{word-spacing:-14.944426pt;}
.ws67{word-spacing:-14.915320pt;}
.ws2b{word-spacing:-14.915260pt;}
.ws27{word-spacing:-14.915199pt;}
.ws1b{word-spacing:-14.915139pt;}
.ws31{word-spacing:-14.915079pt;}
.ws32{word-spacing:-14.915019pt;}
.ws23{word-spacing:-14.914898pt;}
.ws50{word-spacing:-14.897844pt;}
.ws4b{word-spacing:-14.881273pt;}
.ws7a{word-spacing:-14.763464pt;}
.ws0{word-spacing:-14.692133pt;}
.wsf{word-spacing:-14.574714pt;}
.wse{word-spacing:-14.574596pt;}
.ws10{word-spacing:-14.545976pt;}
.ws39{word-spacing:-14.341943pt;}
.ws44{word-spacing:-14.341823pt;}
.ws65{word-spacing:-14.312536pt;}
.ws5e{word-spacing:-14.312476pt;}
.ws13{word-spacing:-13.958173pt;}
.ws1f{word-spacing:-13.859867pt;}
.ws4e{word-spacing:-13.739341pt;}
.ws70{word-spacing:-13.407246pt;}
.ws69{word-spacing:-13.407186pt;}
.ws53{word-spacing:-12.982351pt;}
.ws77{word-spacing:-12.804523pt;}
.ws36{word-spacing:-12.364503pt;}
.wsa{word-spacing:-1.722435pt;}
.ws58{word-spacing:-0.060260pt;}
.ws1{word-spacing:-0.053019pt;}
.ws14{word-spacing:0.000000pt;}
.ws7{word-spacing:51.190568pt;}
.ws6b{word-spacing:130.957612pt;}
.ws6c{word-spacing:131.246861pt;}
.ws72{word-spacing:131.849463pt;}
.ws6{word-spacing:143.469955pt;}
.ws6d{word-spacing:180.330656pt;}
.ws73{word-spacing:181.262882pt;}
.ws2{word-spacing:1157.152421pt;}
._1e{margin-left:-22.863638pt;}
._21{margin-left:-21.829395pt;}
._d{margin-left:-20.581188pt;}
._9{margin-left:-19.437855pt;}
._26{margin-left:-18.326095pt;}
._4{margin-left:-15.944478pt;}
._18{margin-left:-11.333213pt;}
._11{margin-left:-10.203404pt;}
._20{margin-left:-9.094189pt;}
._25{margin-left:-8.118356pt;}
._14{margin-left:-7.185902pt;}
._e{margin-left:-6.149313pt;}
._7{margin-left:-4.912115pt;}
._13{margin-left:-3.479864pt;}
._a{margin-left:-2.415561pt;}
._0{margin-left:-1.096613pt;}
._1{width:1.212518pt;}
._2{width:2.217344pt;}
._c{width:3.237688pt;}
._6{width:4.555720pt;}
._16{width:5.460132pt;}
._8{width:6.362304pt;}
._10{width:7.955697pt;}
._f{width:9.103483pt;}
._17{width:10.077389pt;}
._12{width:11.194700pt;}
._1c{width:12.198682pt;}
._1b{width:13.828972pt;}
._22{width:14.789487pt;}
._15{width:15.924805pt;}
._1d{width:17.310983pt;}
._27{width:18.234810pt;}
._23{width:19.387080pt;}
._b{width:20.716771pt;}
._24{width:21.704918pt;}
._1f{width:23.098303pt;}
._19{width:46.556903pt;}
._5{width:57.752790pt;}
._3{width:79.675259pt;}
._1a{width:166.872795pt;}
.fs2{font-size:42.798773pt;}
.fs1{font-size:53.019200pt;}
.fs6{font-size:55.439467pt;}
.fs0{font-size:58.768533pt;}
.fs7{font-size:60.260267pt;}
.fs4{font-size:63.878933pt;}
.fs5{font-size:74.738133pt;}
.fs3{font-size:84.958933pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:3.364000pt;}
.y4f{bottom:3.838667pt;}
.yea{bottom:3.839067pt;}
.y46{bottom:3.840000pt;}
.y64{bottom:3.842667pt;}
.y4b{bottom:3.844000pt;}
.y70{bottom:3.849333pt;}
.y2{bottom:74.080267pt;}
.y1{bottom:90.880267pt;}
.y7a{bottom:99.199467pt;}
.y5a{bottom:99.200400pt;}
.y11e{bottom:104.960933pt;}
.y164{bottom:104.961067pt;}
.ye9{bottom:113.760400pt;}
.yc9{bottom:117.599067pt;}
.yfd{bottom:117.599333pt;}
.yb2{bottom:117.599467pt;}
.y96{bottom:117.599497pt;}
.ye0{bottom:117.599600pt;}
.y144{bottom:118.716133pt;}
.y154{bottom:122.555200pt;}
.y157{bottom:122.555467pt;}
.y143{bottom:122.555733pt;}
.y79{bottom:129.280667pt;}
.y59{bottom:129.281600pt;}
.y1e{bottom:134.240400pt;}
.y129{bottom:135.041733pt;}
.y11d{bottom:135.042133pt;}
.y163{bottom:135.042267pt;}
.yb1{bottom:143.676000pt;}
.yc8{bottom:147.514667pt;}
.yf1{bottom:147.514933pt;}
.ye8{bottom:147.515067pt;}
.y95{bottom:147.515097pt;}
.ydf{bottom:147.515200pt;}
.yb0{bottom:147.515467pt;}
.y116{bottom:147.515733pt;}
.y156{bottom:152.636667pt;}
.y142{bottom:152.636933pt;}
.y153{bottom:152.641467pt;}
.y31{bottom:155.999867pt;}
.y78{bottom:159.357733pt;}
.y58{bottom:159.358667pt;}
.y1d{bottom:163.520667pt;}
.y128{bottom:165.118267pt;}
.y11c{bottom:165.118667pt;}
.y162{bottom:165.118800pt;}
.ydb{bottom:173.918667pt;}
.yc7{bottom:177.756800pt;}
.ybb{bottom:177.757067pt;}
.ye7{bottom:177.757200pt;}
.y94{bottom:177.757231pt;}
.yde{bottom:177.757333pt;}
.yda{bottom:177.757467pt;}
.yaf{bottom:177.757600pt;}
.y152{bottom:182.722667pt;}
.y141{bottom:182.722933pt;}
.y30{bottom:185.280133pt;}
.y57{bottom:185.434667pt;}
.y77{bottom:189.273333pt;}
.y56{bottom:189.274267pt;}
.y71{bottom:189.284000pt;}
.y1c{bottom:193.440400pt;}
.y127{bottom:195.194800pt;}
.y11b{bottom:195.195200pt;}
.y161{bottom:195.195333pt;}
.y16c{bottom:203.838667pt;}
.yc6{bottom:207.681867pt;}
.yba{bottom:207.682133pt;}
.ye6{bottom:207.682267pt;}
.y93{bottom:207.682297pt;}
.yd9{bottom:207.682533pt;}
.yae{bottom:207.682667pt;}
.y115{bottom:207.682933pt;}
.y151{bottom:208.800000pt;}
.y150{bottom:212.638667pt;}
.y140{bottom:212.639067pt;}
.y2f{bottom:214.399867pt;}
.y6f{bottom:219.516000pt;}
.y55{bottom:219.516400pt;}
.y126{bottom:225.276000pt;}
.y11a{bottom:225.276400pt;}
.y160{bottom:225.276533pt;}
.yad{bottom:233.920000pt;}
.yac{bottom:237.758267pt;}
.yc5{bottom:237.758400pt;}
.yb9{bottom:237.758667pt;}
.ye5{bottom:237.758800pt;}
.y92{bottom:237.758831pt;}
.yd8{bottom:237.759067pt;}
.ydd{bottom:237.759200pt;}
.y114{bottom:237.759467pt;}
.y1b{bottom:240.800267pt;}
.y155{bottom:242.880667pt;}
.y14f{bottom:242.880800pt;}
.y13f{bottom:242.881200pt;}
.y2e{bottom:243.680133pt;}
.y6e{bottom:245.602667pt;}
.y6d{bottom:249.441333pt;}
.y54{bottom:249.441467pt;}
.y125{bottom:251.524000pt;}
.y119{bottom:255.362400pt;}
.y124{bottom:255.362533pt;}
.yf0{bottom:263.997333pt;}
.yef{bottom:267.834800pt;}
.yc4{bottom:267.834933pt;}
.ye4{bottom:267.835333pt;}
.y91{bottom:267.835364pt;}
.y109{bottom:267.835467pt;}
.yd7{bottom:267.835600pt;}
.ydc{bottom:267.835733pt;}
.y113{bottom:267.836000pt;}
.y2d{bottom:272.959867pt;}
.y6c{bottom:275.678667pt;}
.y76{bottom:279.517333pt;}
.y6b{bottom:279.517867pt;}
.y53{bottom:279.518000pt;}
.y130{bottom:285.439200pt;}
.y118{bottom:285.439467pt;}
.y123{bottom:285.439600pt;}
.y13e{bottom:285.440000pt;}
.y1a{bottom:289.920000pt;}
.y16b{bottom:294.078667pt;}
.yab{bottom:297.916533pt;}
.yc3{bottom:297.916667pt;}
.ye3{bottom:297.917067pt;}
.y90{bottom:297.917097pt;}
.y108{bottom:297.917200pt;}
.yd6{bottom:297.917333pt;}
.y112{bottom:297.917467pt;}
.y2c{bottom:302.240133pt;}
.y6a{bottom:309.599067pt;}
.y52{bottom:309.599200pt;}
.y12f{bottom:315.354800pt;}
.y117{bottom:315.355067pt;}
.y122{bottom:315.355200pt;}
.y13d{bottom:315.355600pt;}
.y16a{bottom:324.164000pt;}
.yaa{bottom:328.002533pt;}
.yc2{bottom:328.002667pt;}
.ye2{bottom:328.003067pt;}
.y8f{bottom:328.003097pt;}
.y107{bottom:328.003200pt;}
.y111{bottom:328.003467pt;}
.y2b{bottom:331.520400pt;}
.y69{bottom:339.676133pt;}
.y51{bottom:339.676267pt;}
.y75{bottom:339.676533pt;}
.y19{bottom:340.480400pt;}
.y168{bottom:345.597200pt;}
.y14e{bottom:345.597333pt;}
.y13c{bottom:345.597733pt;}
.yc1{bottom:354.240000pt;}
.ya9{bottom:358.079067pt;}
.yfc{bottom:358.079200pt;}
.yc0{bottom:358.079600pt;}
.y8e{bottom:358.079631pt;}
.y106{bottom:358.079733pt;}
.yd5{bottom:358.080000pt;}
.y2a{bottom:360.800133pt;}
.y68{bottom:369.601200pt;}
.y50{bottom:369.601333pt;}
.y74{bottom:369.601600pt;}
.y14d{bottom:371.684000pt;}
.y15f{bottom:375.522400pt;}
.y14c{bottom:375.522667pt;}
.y13b{bottom:375.522800pt;}
.yd4{bottom:384.156000pt;}
.ya8{bottom:387.994667pt;}
.yfb{bottom:387.994800pt;}
.ybf{bottom:387.995200pt;}
.y8d{bottom:387.995231pt;}
.y105{bottom:387.995333pt;}
.y110{bottom:387.995600pt;}
.y29{bottom:390.080400pt;}
.y18{bottom:391.200133pt;}
.y4e{bottom:396.000000pt;}
.y67{bottom:399.838667pt;}
.y4d{bottom:399.838800pt;}
.y73{bottom:399.839067pt;}
.y14b{bottom:401.760000pt;}
.y15e{bottom:405.598933pt;}
.y13a{bottom:405.599333pt;}
.y14a{bottom:405.599600pt;}
.ya7{bottom:414.398667pt;}
.ya6{bottom:418.236667pt;}
.yd3{bottom:418.236800pt;}
.yfa{bottom:418.236933pt;}
.y12e{bottom:418.237067pt;}
.ybe{bottom:418.237333pt;}
.y8c{bottom:418.237364pt;}
.y104{bottom:418.237467pt;}
.y121{bottom:418.237600pt;}
.y10f{bottom:418.237733pt;}
.y28{bottom:419.360133pt;}
.y4c{bottom:429.920000pt;}
.y66{bottom:429.920267pt;}
.y167{bottom:435.680533pt;}
.y15d{bottom:435.680667pt;}
.y139{bottom:435.681067pt;}
.y149{bottom:435.681333pt;}
.y17{bottom:441.760000pt;}
.y169{bottom:444.324000pt;}
.yd2{bottom:448.161867pt;}
.yf9{bottom:448.162000pt;}
.y12d{bottom:448.162133pt;}
.ybd{bottom:448.162400pt;}
.y8b{bottom:448.162431pt;}
.y103{bottom:448.162533pt;}
.y120{bottom:448.162667pt;}
.y10e{bottom:448.162800pt;}
.y27{bottom:448.640400pt;}
.y4a{bottom:456.001333pt;}
.y49{bottom:459.845067pt;}
.y65{bottom:459.845333pt;}
.y148{bottom:461.918667pt;}
.y166{bottom:465.757067pt;}
.y15c{bottom:465.757200pt;}
.y147{bottom:465.757467pt;}
.y138{bottom:465.757600pt;}
.y11f{bottom:474.400000pt;}
.y26{bottom:477.760133pt;}
.ya5{bottom:478.238267pt;}
.yd1{bottom:478.238400pt;}
.yf8{bottom:478.238533pt;}
.y12c{bottom:478.238667pt;}
.yb8{bottom:478.238933pt;}
.y8a{bottom:478.238964pt;}
.y102{bottom:478.239067pt;}
.y10d{bottom:478.239333pt;}
.y16{bottom:480.800133pt;}
.y63{bottom:486.234667pt;}
.y48{bottom:490.077867pt;}
.y62{bottom:490.078000pt;}
.y165{bottom:495.682133pt;}
.y15b{bottom:495.682267pt;}
.y146{bottom:495.682533pt;}
.y137{bottom:495.682667pt;}
.y25{bottom:507.040400pt;}
.y15{bottom:507.200133pt;}
.ya4{bottom:508.320000pt;}
.yee{bottom:508.320133pt;}
.yf7{bottom:508.320267pt;}
.yb7{bottom:508.320667pt;}
.y89{bottom:508.320697pt;}
.y12b{bottom:508.320800pt;}
.y72{bottom:519.998533pt;}
.y47{bottom:519.998667pt;}
.y61{bottom:519.998800pt;}
.y136{bottom:522.081333pt;}
.y14{bottom:525.119867pt;}
.y135{bottom:525.919733pt;}
.y145{bottom:525.920000pt;}
.y24{bottom:536.320133pt;}
.ya3{bottom:538.396533pt;}
.yd0{bottom:538.396667pt;}
.yf6{bottom:538.396800pt;}
.yb6{bottom:538.397200pt;}
.y88{bottom:538.397231pt;}
.y101{bottom:538.397333pt;}
.y10c{bottom:538.397600pt;}
.y13{bottom:542.880267pt;}
.y45{bottom:546.240000pt;}
.y44{bottom:550.079733pt;}
.y60{bottom:550.080000pt;}
.y134{bottom:555.840000pt;}
.y12{bottom:561.600000pt;}
.y100{bottom:564.484000pt;}
.y23{bottom:565.600400pt;}
.ya2{bottom:568.321600pt;}
.ycf{bottom:568.321733pt;}
.yb5{bottom:568.322267pt;}
.y87{bottom:568.322297pt;}
.y12a{bottom:568.322400pt;}
.y10b{bottom:568.322667pt;}
.y43{bottom:580.156267pt;}
.y133{bottom:585.917067pt;}
.y11{bottom:588.000133pt;}
.y170{bottom:594.721333pt;}
.y22{bottom:594.880667pt;}
.ya1{bottom:598.561200pt;}
.yce{bottom:598.561333pt;}
.yb4{bottom:598.561867pt;}
.y86{bottom:598.561897pt;}
.y10a{bottom:598.562000pt;}
.y42{bottom:610.243200pt;}
.y10{bottom:614.560000pt;}
.y132{bottom:616.002533pt;}
.y21{bottom:624.160400pt;}
.ycd{bottom:624.800000pt;}
.ya0{bottom:628.639867pt;}
.yed{bottom:628.640000pt;}
.yb3{bottom:628.640533pt;}
.y85{bottom:628.640564pt;}
.ycc{bottom:628.640667pt;}
.y41{bottom:640.159867pt;}
.yf{bottom:641.280267pt;}
.y131{bottom:646.081200pt;}
.y20{bottom:653.440667pt;}
.yec{bottom:654.717333pt;}
.y9f{bottom:658.556533pt;}
.ybc{bottom:658.557200pt;}
.y84{bottom:658.557231pt;}
.ycb{bottom:658.557333pt;}
.y40{bottom:670.400000pt;}
.y15a{bottom:675.997867pt;}
.ye{bottom:682.719867pt;}
.y1f{bottom:682.720400pt;}
.yca{bottom:684.957333pt;}
.y9e{bottom:688.796667pt;}
.y83{bottom:688.797333pt;}
.yf5{bottom:688.797467pt;}
.y3f{bottom:700.317200pt;}
.y159{bottom:706.238533pt;}
.y16f{bottom:714.881333pt;}
.y9d{bottom:718.720667pt;}
.y82{bottom:718.721333pt;}
.yf4{bottom:718.721467pt;}
.y3e{bottom:730.402667pt;}
.yd{bottom:730.560000pt;}
.y158{bottom:736.162533pt;}
.y16e{bottom:744.960000pt;}
.y9c{bottom:748.799333pt;}
.y81{bottom:748.800000pt;}
.yf3{bottom:748.800133pt;}
.y3d{bottom:760.481333pt;}
.yc{bottom:771.519867pt;}
.ye1{bottom:775.038667pt;}
.y9b{bottom:778.878000pt;}
.y80{bottom:778.878667pt;}
.yf2{bottom:778.878800pt;}
.y5f{bottom:786.720000pt;}
.y5e{bottom:790.559333pt;}
.y3c{bottom:790.560000pt;}
.yb{bottom:793.760000pt;}
.yfe{bottom:805.117333pt;}
.y9a{bottom:808.956667pt;}
.y7f{bottom:808.957333pt;}
.yeb{bottom:808.957467pt;}
.ya{bottom:814.719867pt;}
.y5d{bottom:820.476000pt;}
.y3b{bottom:820.476667pt;}
.yff{bottom:835.041333pt;}
.y9{bottom:836.160000pt;}
.y99{bottom:838.880667pt;}
.y7e{bottom:838.881333pt;}
.y5c{bottom:846.877333pt;}
.y3a{bottom:850.717333pt;}
.y8{bottom:856.960000pt;}
.y16d{bottom:865.281333pt;}
.y98{bottom:869.121333pt;}
.y7d{bottom:869.122000pt;}
.y39{bottom:880.641333pt;}
.y97{bottom:895.198667pt;}
.y7c{bottom:899.038667pt;}
.y7{bottom:907.200133pt;}
.y38{bottom:910.720000pt;}
.y7b{bottom:929.117333pt;}
.y37{bottom:930.557333pt;}
.y6{bottom:939.360133pt;}
.y36{bottom:948.478667pt;}
.y5{bottom:958.720000pt;}
.y34{bottom:961.120000pt;}
.y5b{bottom:964.484000pt;}
.y4{bottom:978.240267pt;}
.y33{bottom:980.961467pt;}
.y32{bottom:997.602667pt;}
.y3{bottom:997.760000pt;}
.ha{height:15.680267pt;}
.he{height:19.994267pt;}
.hd{height:19.998933pt;}
.h12{height:19.999467pt;}
.h11{height:20.000533pt;}
.h10{height:20.001067pt;}
.h13{height:20.001600pt;}
.hf{height:20.003600pt;}
.h9{height:38.520684pt;}
.h1{height:40.833800pt;}
.h4{height:43.292949pt;}
.h5{height:44.384630pt;}
.h3{height:46.184223pt;}
.h8{height:49.775597pt;}
.h6{height:57.213102pt;}
.hb{height:59.824815pt;}
.h2{height:63.417216pt;}
.hc{height:65.026948pt;}
.h7{height:68.931857pt;}
.h0{height:1056.000000pt;}
.w1e{width:0.161459pt;}
.w44{width:0.322917pt;}
.w18{width:0.477084pt;}
.w2{width:0.638541pt;}
.w2b{width:1.114584pt;}
.w5e{width:1.277604pt;}
.w38{width:1.601040pt;}
.w34{width:1.602080pt;}
.w4{width:1.761973pt;}
.w33{width:1.763027pt;}
.w13{width:1.923440pt;}
.w22{width:2.078120pt;}
.w5f{width:2.400520pt;}
.w23{width:2.555733pt;}
.w3{width:3.039067pt;}
.w37{width:3.041667pt;}
.w5d{width:3.200520pt;}
.w5{width:3.361973pt;}
.w54{width:3.523960pt;}
.w56{width:3.677600pt;}
.w28{width:3.839587pt;}
.w1a{width:3.840107pt;}
.w24{width:3.842707pt;}
.w1f{width:4.001040pt;}
.w1d{width:4.963027pt;}
.w46{width:5.116667pt;}
.w2c{width:5.440107pt;}
.w25{width:5.605733pt;}
.w2e{width:5.758333pt;}
.wc{width:5.917187pt;}
.w8{width:5.918747pt;}
.w49{width:6.078640pt;}
.w20{width:6.240107pt;}
.wd{width:6.401560pt;}
.w7{width:6.403640pt;}
.w1c{width:7.359373pt;}
.w1b{width:7.519787pt;}
.w5c{width:7.679173pt;}
.w4e{width:8.002080pt;}
.w9{width:8.157813pt;}
.w64{width:8.158333pt;}
.w60{width:8.479173pt;}
.wa{width:10.564067pt;}
.wb{width:10.878640pt;}
.w53{width:11.041147pt;}
.w19{width:11.520840pt;}
.w36{width:11.679693pt;}
.w43{width:11.680213pt;}
.w57{width:12.478640pt;}
.w59{width:12.795840pt;}
.w48{width:13.442133pt;}
.w50{width:14.880667pt;}
.wf{width:15.356800pt;}
.w47{width:15.358400pt;}
.w35{width:15.682800pt;}
.w45{width:15.996933pt;}
.w21{width:17.921867pt;}
.w51{width:18.720267pt;}
.w52{width:18.881733pt;}
.w12{width:19.843200pt;}
.w55{width:20.643733pt;}
.w5a{width:21.282800pt;}
.w2a{width:22.716667pt;}
.w5b{width:22.721333pt;}
.w3e{width:23.198400pt;}
.w3d{width:23.836000pt;}
.w41{width:27.199467pt;}
.w61{width:27.999467pt;}
.w26{width:28.478133pt;}
.w17{width:29.125467pt;}
.w4a{width:30.077600pt;}
.w2f{width:30.238533pt;}
.we{width:30.241200pt;}
.w4b{width:31.039600pt;}
.w16{width:31.040133pt;}
.w63{width:31.356267pt;}
.w4d{width:32.315067pt;}
.w6{width:33.925067pt;}
.w58{width:36.479733pt;}
.w29{width:36.802133pt;}
.w11{width:37.119333pt;}
.w31{width:38.881200pt;}
.w4f{width:39.518800pt;}
.w62{width:43.203600pt;}
.w30{width:44.318267pt;}
.w3c{width:47.843200pt;}
.w3a{width:54.561467pt;}
.w39{width:54.725467pt;}
.w27{width:60.155733pt;}
.w42{width:64.325467pt;}
.w14{width:64.481200pt;}
.w15{width:64.642133pt;}
.w3b{width:67.041733pt;}
.w32{width:110.876000pt;}
.w10{width:119.523467pt;}
.w3f{width:124.480267pt;}
.w4c{width:139.198667pt;}
.w1{width:172.960000pt;}
.w2d{width:174.241333pt;}
.w40{width:245.280000pt;}
.w0{width:816.000000pt;}
.xa1{left:-245.128000pt;}
.x76{left:-174.084000pt;}
.x14{left:-172.800000pt;}
.x9f{left:-124.162667pt;}
.x89{left:-110.720000pt;}
.x99{left:-66.725333pt;}
.x64{left:-60.162667pt;}
.x94{left:-54.245333pt;}
.x82{left:-44.008000pt;}
.xc2{left:-39.520000pt;}
.x84{left:-38.568000pt;}
.x38{left:-37.125333pt;}
.xc0{left:-32.477333pt;}
.x34{left:-30.244000pt;}
.x9e{left:-23.522667pt;}
.x70{left:-22.568000pt;}
.xc9{left:-21.282667pt;}
.x60{left:-17.761333pt;}
.x36{left:-15.361333pt;}
.xbd{left:-13.281333pt;}
.xc8{left:-12.326667pt;}
.x31{left:-10.728000pt;}
.x2c{left:-7.844000pt;}
.x28{left:-6.556000pt;}
.xbb{left:-4.962667pt;}
.x4c{left:-3.998667pt;}
.x1f{left:-2.878667pt;}
.x20{left:-1.762667pt;}
.x0{left:0.000000pt;}
.x95{left:1.429333pt;}
.x1{left:72.000000pt;}
.xc{left:97.273467pt;}
.xb{left:119.993200pt;}
.x10{left:147.517333pt;}
.xf{left:148.638667pt;}
.xd{left:158.240000pt;}
.x51{left:160.472740pt;}
.x18{left:168.790074pt;}
.x8c{left:170.229231pt;}
.x8d{left:177.269330pt;}
.x1c{left:189.596331pt;}
.xb4{left:190.884606pt;}
.x68{left:195.350962pt;}
.x8e{left:198.075863pt;}
.x7b{left:201.276426pt;}
.xa3{left:206.392468pt;}
.x7e{left:207.831323pt;}
.x62{left:208.954667pt;}
.x3e{left:210.393333pt;}
.x1b{left:211.510614pt;}
.xa6{left:213.918076pt;}
.x9{left:218.719867pt;}
.x3f{left:224.474490pt;}
.x7{left:228.960000pt;}
.x97{left:231.674704pt;}
.x3c{left:233.115915pt;}
.xa2{left:234.230498pt;}
.xb6{left:235.831681pt;}
.x7d{left:238.069483pt;}
.x6a{left:243.031687pt;}
.x69{left:246.071737pt;}
.xa5{left:247.034477pt;}
.xb3{left:249.118746pt;}
.x55{left:250.550667pt;}
.x63{left:251.513507pt;}
.x93{left:254.557333pt;}
.x7f{left:255.989758pt;}
.x54{left:258.553681pt;}
.x4f{left:260.475302pt;}
.x61{left:261.442667pt;}
.x79{left:263.031604pt;}
.x19{left:266.238667pt;}
.x3d{left:268.156466pt;}
.x26{left:275.032853pt;}
.x81{left:276.957333pt;}
.x23{left:278.549333pt;}
.x8f{left:283.675245pt;}
.xe{left:284.793283pt;}
.xb7{left:287.029506pt;}
.x78{left:288.314346pt;}
.x3b{left:290.230429pt;}
.xb2{left:291.521333pt;}
.x50{left:293.754045pt;}
.x17{left:295.030667pt;}
.x6c{left:297.116650pt;}
.x3a{left:298.070667pt;}
.xc5{left:300.316000pt;}
.x66{left:302.233668pt;}
.x8b{left:305.112117pt;}
.xb1{left:306.240000pt;}
.xa4{left:307.349121pt;}
.xc4{left:308.802667pt;}
.xb0{left:309.918667pt;}
.xb5{left:310.877833pt;}
.xc6{left:313.920000pt;}
.x4e{left:315.997536pt;}
.x12{left:318.560000pt;}
.x13{left:319.837333pt;}
.x11{left:320.960000pt;}
.xc7{left:322.238667pt;}
.xbe{left:324.800000pt;}
.x8{left:327.680267pt;}
.xba{left:329.117333pt;}
.x1d{left:332.164000pt;}
.x6f{left:335.991899pt;}
.xab{left:336.955676pt;}
.xbc{left:340.320000pt;}
.x46{left:342.721159pt;}
.xcb{left:343.844000pt;}
.x86{left:345.116191pt;}
.x9a{left:348.630667pt;}
.x77{left:351.522667pt;}
.x6{left:353.119867pt;}
.x15{left:355.360000pt;}
.x4a{left:356.794714pt;}
.x65{left:358.240000pt;}
.x98{left:363.518667pt;}
.xca{left:364.641333pt;}
.x48{left:367.835435pt;}
.x5b{left:369.753231pt;}
.xae{left:374.074274pt;}
.x9d{left:383.357581pt;}
.x45{left:384.951808pt;}
.x43{left:386.391265pt;}
.x30{left:388.955300pt;}
.x37{left:390.394667pt;}
.x5a{left:401.274030pt;}
.x5d{left:405.593333pt;}
.xa{left:407.999867pt;}
.x47{left:410.874022pt;}
.x59{left:416.641245pt;}
.x9c{left:427.189327pt;}
.x2{left:431.520000pt;}
.x83{left:437.430525pt;}
.x24{left:440.638667pt;}
.xbf{left:441.594857pt;}
.x6d{left:451.834056pt;}
.x4b{left:454.236495pt;}
.x57{left:455.353605pt;}
.x71{left:456.792093pt;}
.xaf{left:459.843078pt;}
.xb8{left:460.790667pt;}
.x74{left:463.828927pt;}
.xa8{left:466.234969pt;}
.x44{left:468.802756pt;}
.x91{left:471.830824pt;}
.x49{left:475.833342pt;}
.x5{left:477.440267pt;}
.x96{left:484.318667pt;}
.xac{left:488.638601pt;}
.xa7{left:494.236547pt;}
.x73{left:496.636729pt;}
.x80{left:497.922667pt;}
.x2a{left:499.832000pt;}
.x2d{left:509.757333pt;}
.x88{left:510.717687pt;}
.x75{left:513.913172pt;}
.xa9{left:516.153925pt;}
.xad{left:519.843588pt;}
.x5e{left:521.588211pt;}
.x5f{left:524.315297pt;}
.x42{left:527.832487pt;}
.x3{left:529.920000pt;}
.xc1{left:541.752915pt;}
.x33{left:545.108406pt;}
.x87{left:549.428982pt;}
.xaa{left:550.393728pt;}
.x72{left:553.269682pt;}
.x4{left:554.720000pt;}
.x6e{left:561.755412pt;}
.x2f{left:563.031898pt;}
.x7a{left:564.480000pt;}
.x32{left:566.400150pt;}
.x7c{left:569.917333pt;}
.x25{left:571.678667pt;}
.x56{left:574.712000pt;}
.xb9{left:576.484000pt;}
.xa0{left:577.595365pt;}
.x21{left:578.557333pt;}
.x58{left:580.473877pt;}
.x90{left:584.316466pt;}
.x67{left:586.081333pt;}
.x2e{left:589.109495pt;}
.x52{left:590.876000pt;}
.x22{left:593.441333pt;}
.x9b{left:596.634125pt;}
.x1e{left:597.920000pt;}
.x1a{left:600.640000pt;}
.x16{left:602.398667pt;}
.x40{left:604.958667pt;}
.x53{left:606.720000pt;}
.x6b{left:607.684000pt;}
.x27{left:608.798667pt;}
.x2b{left:610.554667pt;}
.x5c{left:612.634667pt;}
.x4d{left:613.754667pt;}
.x41{left:616.150667pt;}
.x8a{left:620.001333pt;}
.xc3{left:621.118667pt;}
.x85{left:624.156000pt;}
.x29{left:628.642667pt;}
.x39{left:636.482667pt;}
.x35{left:639.838667pt;}
.x92{left:663.198667pt;}
}




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