
    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_6a49a8d8106e5c7f68bc041c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_ef830a15ab56e4573cf195b6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.437000;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_e387a39f73b9eaa9d495ee97.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_d1009cfb63f47c3ec3d04343.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_a2816982d4812d4096d9987b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_2e07a939fbea1fd5bb375bb0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.142090;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_7c272fd9b62437212d98ff8a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.682129;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_abbf7a93167bac9692e1b580.woff')format("woff");}.ff9{font-family:ff9;line-height:0.667000;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:ffa;src:url('chunks/assets/font_edcf8d3ba116031f97868b94.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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;}
.m4{transform:matrix(0.000000,-0.249550,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249550,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249550,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.195425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195425,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.241056,0.000000,-0.064581,0.241515,0,0);-ms-transform:matrix(0.241056,0.000000,-0.064581,0.241515,0,0);-webkit-transform:matrix(0.241056,0.000000,-0.064581,0.241515,0,0);}
.m0{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-83.520000px;}
.v4{vertical-align:-76.320000px;}
.v3{vertical-align:-74.880000px;}
.vd{vertical-align:-72.000000px;}
.vf{vertical-align:-70.560000px;}
.v14{vertical-align:-69.120000px;}
.v15{vertical-align:-63.360000px;}
.v16{vertical-align:-61.920000px;}
.v12{vertical-align:-54.720000px;}
.v6{vertical-align:-53.280000px;}
.ve{vertical-align:-46.080000px;}
.v13{vertical-align:-34.560000px;}
.vc{vertical-align:-33.120000px;}
.v2{vertical-align:-31.680000px;}
.va{vertical-align:-8.640000px;}
.v8{vertical-align:-7.200000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:7.200000px;}
.vb{vertical-align:8.640000px;}
.v10{vertical-align:27.360000px;}
.v11{vertical-align:28.800000px;}
.v1{vertical-align:33.120000px;}
.v5{vertical-align:34.560000px;}
.lsa{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.003058px;}
.ls1{letter-spacing:0.099321px;}
.ls8{letter-spacing:0.212648px;}
.ls0{letter-spacing:0.235090px;}
.ls5{letter-spacing:0.299636px;}
.ls6{letter-spacing:0.303753px;}
.ls4{letter-spacing:0.392894px;}
.ls2{letter-spacing:0.482186px;}
.ls1b{letter-spacing:0.571177px;}
.ls14{letter-spacing:0.607507px;}
.ls12{letter-spacing:0.629206px;}
.ls3{letter-spacing:0.838601px;}
.lsc{letter-spacing:0.841966px;}
.ls11{letter-spacing:0.909731px;}
.ls1d{letter-spacing:0.910236px;}
.ls16{letter-spacing:1.016055px;}
.ls25{letter-spacing:1.026295px;}
.ls21{letter-spacing:1.074085px;}
.ls1a{letter-spacing:2.013918px;}
.lsb{letter-spacing:2.469036px;}
.ls15{letter-spacing:2.527065px;}
.ls22{letter-spacing:11.544987px;}
.ls19{letter-spacing:33.186105px;}
.ls24{letter-spacing:47.539483px;}
.ls1f{letter-spacing:50.499000px;}
.ls9{letter-spacing:56.269965px;}
.ls7{letter-spacing:85.425485px;}
.ls17{letter-spacing:100.994942px;}
.ls18{letter-spacing:137.364168px;}
.ls10{letter-spacing:187.860110px;}
.lse{letter-spacing:188.342146px;}
.lsd{letter-spacing:205.655041px;}
.ls1e{letter-spacing:206.615746px;}
.ls20{letter-spacing:211.014946px;}
.lsf{letter-spacing:235.521768px;}
.ls1c{letter-spacing:327.975851px;}
.ls23{letter-spacing:770.727559px;}
.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;}
}
.ws2f{word-spacing:-34.183814px;}
.ws0{word-spacing:-28.087050px;}
.ws13{word-spacing:-20.804969px;}
.ws3{word-spacing:-19.627200px;}
.ws30{word-spacing:-16.920000px;}
.ws10{word-spacing:-16.887150px;}
.ws4{word-spacing:-15.566400px;}
.ws2{word-spacing:-14.889600px;}
.ws15{word-spacing:-12.674100px;}
.ws6{word-spacing:-11.280000px;}
.ws1{word-spacing:-11.167200px;}
.wsa{word-spacing:-9.813600px;}
.ws5{word-spacing:0.000000px;}
.ws9{word-spacing:9.339840px;}
.ws1e{word-spacing:11.168410px;}
.ws25{word-spacing:12.752640px;}
.ws2a{word-spacing:14.542416px;}
.ws19{word-spacing:15.123888px;}
.ws24{word-spacing:30.046464px;}
.ws28{word-spacing:30.735936px;}
.wsf{word-spacing:31.516800px;}
.ws22{word-spacing:34.203254px;}
.ws18{word-spacing:37.111694px;}
.ws1a{word-spacing:38.565914px;}
.ws21{word-spacing:45.778846px;}
.ws1d{word-spacing:46.186027px;}
.ws1c{word-spacing:47.582078px;}
.ws1f{word-spacing:48.687286px;}
.ws20{word-spacing:53.398958px;}
.ws1b{word-spacing:54.795010px;}
.ws27{word-spacing:59.614112px;}
.ws16{word-spacing:68.845711px;}
.ws23{word-spacing:76.126632px;}
.ws12{word-spacing:79.707348px;}
.wsd{word-spacing:79.900800px;}
.ws7{word-spacing:80.471520px;}
.wsb{word-spacing:83.731200px;}
.ws11{word-spacing:88.353569px;}
.ws8{word-spacing:133.871040px;}
.ws17{word-spacing:162.177784px;}
.ws14{word-spacing:169.704609px;}
.ws26{word-spacing:294.617088px;}
.ws2e{word-spacing:400.613453px;}
.ws2d{word-spacing:412.140960px;}
.wsc{word-spacing:420.668244px;}
.ws2b{word-spacing:420.904512px;}
.ws29{word-spacing:434.240352px;}
.ws2c{word-spacing:448.338240px;}
.wse{word-spacing:489.848679px;}
._27{margin-left:-188.358235px;}
._28{margin-left:-187.299720px;}
._26{margin-left:-164.472498px;}
._42{margin-left:-150.045086px;}
._2a{margin-left:-126.961226px;}
._33{margin-left:-86.564472px;}
._36{margin-left:-76.465284px;}
._22{margin-left:-44.724977px;}
._2b{margin-left:-10.024692px;}
._4{margin-left:-5.665006px;}
._d{margin-left:-4.033728px;}
._0{margin-left:-2.468966px;}
._2{margin-left:-1.337357px;}
._1{width:1.543104px;}
._3{width:3.343392px;}
._c{width:4.472529px;}
._8{width:5.491157px;}
._6{width:6.525392px;}
._5{width:7.617980px;}
._7{width:9.079889px;}
._10{width:10.460621px;}
._9{width:11.597522px;}
._11{width:12.797117px;}
._14{width:14.375232px;}
._b{width:15.804467px;}
._a{width:17.845686px;}
._12{width:19.302336px;}
._13{width:20.647814px;}
._f{width:22.121194px;}
._e{width:23.225069px;}
._29{width:24.477575px;}
._2f{width:27.513842px;}
._3d{width:33.466608px;}
._2d{width:40.252810px;}
._2c{width:43.161250px;}
._43{width:46.460777px;}
._39{width:69.727392px;}
._1e{width:71.299200px;}
._16{width:75.326296px;}
._3a{width:76.903344px;}
._20{width:85.680000px;}
._2e{width:88.474745px;}
._3c{width:91.132013px;}
._1d{width:93.343296px;}
._34{width:106.576231px;}
._23{width:124.611751px;}
._24{width:128.718160px;}
._31{width:130.033613px;}
._30{width:136.960493px;}
._3b{width:184.714846px;}
._17{width:187.860110px;}
._19{width:195.016896px;}
._1b{width:196.896000px;}
._32{width:217.609481px;}
._15{width:228.334572px;}
._25{width:236.543047px;}
._35{width:245.037312px;}
._1a{width:262.436206px;}
._1f{width:336.739200px;}
._1c{width:349.576896px;}
._18{width:368.256000px;}
._21{width:381.631625px;}
._3e{width:406.997136px;}
._41{width:447.004656px;}
._38{width:480.824587px;}
._37{width:518.312384px;}
._3f{width:567.281232px;}
._40{width:635.402016px;}
.fc0{color:rgb(0,0,0);}
.fs19{font-size:17.596800px;}
.fs18{font-size:39.250475px;}
.fsc{font-size:39.254400px;}
.fs6{font-size:44.668800px;}
.fsd{font-size:44.799600px;}
.fsb{font-size:45.120000px;}
.fs5{font-size:47.376000px;}
.fs12{font-size:50.696400px;}
.fs0{font-size:51.436800px;}
.fs1{font-size:56.850600px;}
.fs13{font-size:58.168800px;}
.fs8{font-size:59.558400px;}
.fs15{font-size:62.208000px;}
.fsa{font-size:62.265600px;}
.fs17{font-size:63.504000px;}
.fse{font-size:67.200000px;}
.fs10{font-size:67.548600px;}
.fs7{font-size:67.680000px;}
.fsf{font-size:69.561017px;}
.fs4{font-size:73.093800px;}
.fs14{font-size:77.559000px;}
.fs9{font-size:78.508800px;}
.fs11{font-size:85.374000px;}
.fs3{font-size:90.690600px;}
.fs2{font-size:112.348200px;}
.fs16{font-size:135.607200px;}
.y0{bottom:0.000000px;}
.y15e{bottom:0.360000px;}
.y6e{bottom:2.520000px;}
.ya8{bottom:2.880000px;}
.ye7{bottom:3.240000px;}
.y75{bottom:3.600000px;}
.y92{bottom:3.960000px;}
.y2{bottom:96.840000px;}
.y33{bottom:116.280000px;}
.y31{bottom:125.280000px;}
.y14b{bottom:135.720000px;}
.y8f{bottom:142.560000px;}
.y57{bottom:142.920000px;}
.y30{bottom:144.360000px;}
.yc5{bottom:146.880000px;}
.y14a{bottom:153.360000px;}
.y8e{bottom:160.200000px;}
.y56{bottom:160.920000px;}
.y18e{bottom:161.280000px;}
.yc4{bottom:164.520000px;}
.y149{bottom:171.000000px;}
.y121{bottom:173.160000px;}
.y16b{bottom:174.600000px;}
.y18d{bottom:177.480000px;}
.y8d{bottom:178.200000px;}
.y55{bottom:178.920000px;}
.yc3{bottom:181.080000px;}
.y2f{bottom:182.160000px;}
.y148{bottom:189.000000px;}
.y16a{bottom:192.240000px;}
.y18c{bottom:193.680000px;}
.yc2{bottom:195.120000px;}
.y8c{bottom:196.200000px;}
.y54{bottom:196.560000px;}
.y2e{bottom:200.160000px;}
.y147{bottom:207.000000px;}
.y120{bottom:209.880000px;}
.y8b{bottom:213.840000px;}
.y53{bottom:214.560000px;}
.y2d{bottom:218.160000px;}
.y146{bottom:224.640000px;}
.y18b{bottom:226.080000px;}
.y11f{bottom:227.520000px;}
.y169{bottom:227.880000px;}
.yc1{bottom:229.680000px;}
.y8a{bottom:231.840000px;}
.y52{bottom:232.200000px;}
.y2c{bottom:235.800000px;}
.y18a{bottom:242.280000px;}
.y145{bottom:242.640000px;}
.y11e{bottom:245.520000px;}
.y168{bottom:245.880000px;}
.y89{bottom:249.480000px;}
.y51{bottom:250.200000px;}
.y2b{bottom:253.800000px;}
.y189{bottom:258.480000px;}
.y144{bottom:260.280000px;}
.y167{bottom:262.800000px;}
.y11d{bottom:263.520000px;}
.yc0{bottom:265.320000px;}
.y88{bottom:267.120000px;}
.y50{bottom:267.840000px;}
.y2a{bottom:271.440000px;}
.y188{bottom:274.680000px;}
.y143{bottom:278.280000px;}
.y166{bottom:280.800000px;}
.y11c{bottom:281.160000px;}
.ybf{bottom:282.960000px;}
.y87{bottom:285.120000px;}
.yf6{bottom:285.480000px;}
.y4f{bottom:285.840000px;}
.y29{bottom:289.080000px;}
.y187{bottom:290.880000px;}
.y142{bottom:295.920000px;}
.y165{bottom:298.800000px;}
.ybe{bottom:300.960000px;}
.y86{bottom:303.120000px;}
.y4e{bottom:303.840000px;}
.yf5{bottom:304.920000px;}
.y28{bottom:307.080000px;}
.y164{bottom:313.560000px;}
.y141{bottom:313.920000px;}
.y11b{bottom:317.880000px;}
.ybd{bottom:318.600000px;}
.y85{bottom:321.120000px;}
.y4d{bottom:321.480000px;}
.y186{bottom:323.280000px;}
.yf4{bottom:324.360000px;}
.y27{bottom:325.080000px;}
.y163{bottom:329.760000px;}
.y140{bottom:331.920000px;}
.y11a{bottom:335.880000px;}
.ybc{bottom:336.600000px;}
.y84{bottom:338.760000px;}
.y4c{bottom:339.120000px;}
.y185{bottom:339.480000px;}
.y26{bottom:342.720000px;}
.y162{bottom:344.880000px;}
.y13f{bottom:349.560000px;}
.yf3{bottom:352.440000px;}
.y119{bottom:353.880000px;}
.ybb{bottom:354.600000px;}
.y161{bottom:356.040000px;}
.y83{bottom:356.400000px;}
.y4b{bottom:357.120000px;}
.yf1{bottom:357.480000px;}
.yf0{bottom:360.360000px;}
.y25{bottom:360.720000px;}
.ye0{bottom:361.440000px;}
.y13e{bottom:367.200000px;}
.y118{bottom:371.520000px;}
.yba{bottom:372.240000px;}
.y82{bottom:374.400000px;}
.y4a{bottom:374.760000px;}
.y160{bottom:375.480000px;}
.yef{bottom:376.560000px;}
.y24{bottom:378.360000px;}
.ye5{bottom:379.080000px;}
.y15c{bottom:380.880000px;}
.y13d{bottom:385.200000px;}
.y184{bottom:388.440000px;}
.y117{bottom:389.520000px;}
.yb9{bottom:389.880000px;}
.ye4{bottom:390.240000px;}
.ye8{bottom:390.600000px;}
.y81{bottom:392.040000px;}
.y49{bottom:392.400000px;}
.ydf{bottom:393.840000px;}
.yee{bottom:395.280000px;}
.y23{bottom:396.360000px;}
.y13c{bottom:402.840000px;}
.y183{bottom:404.640000px;}
.y116{bottom:407.160000px;}
.y80{bottom:410.040000px;}
.yed{bottom:413.640000px;}
.y22{bottom:414.000000px;}
.yde{bottom:417.240000px;}
.y182{bottom:420.480000px;}
.y13b{bottom:420.840000px;}
.yf2{bottom:421.200000px;}
.y48{bottom:422.280000px;}
.ye3{bottom:423.360000px;}
.y115{bottom:424.800000px;}
.yb8{bottom:425.880000px;}
.y7f{bottom:428.040000px;}
.yec{bottom:428.400000px;}
.y21{bottom:432.000000px;}
.yeb{bottom:432.720000px;}
.ye2{bottom:434.520000px;}
.ye6{bottom:434.880000px;}
.y181{bottom:436.680000px;}
.ydd{bottom:438.120000px;}
.y13a{bottom:438.840000px;}
.y15d{bottom:440.280000px;}
.y114{bottom:442.800000px;}
.yb7{bottom:443.520000px;}
.y7e{bottom:446.040000px;}
.ye1{bottom:450.000000px;}
.y20{bottom:450.360000px;}
.yea{bottom:451.440000px;}
.y180{bottom:452.880000px;}
.y139{bottom:456.840000px;}
.y113{bottom:460.800000px;}
.yb6{bottom:461.520000px;}
.y7d{bottom:463.320000px;}
.y17f{bottom:469.440000px;}
.ye9{bottom:469.800000px;}
.ydc{bottom:471.960000px;}
.y1f{bottom:473.040000px;}
.y138{bottom:474.480000px;}
.y112{bottom:477.720000px;}
.yb5{bottom:479.520000px;}
.y7c{bottom:481.320000px;}
.y15f{bottom:489.600000px;}
.y137{bottom:492.120000px;}
.y111{bottom:493.560000px;}
.ydb{bottom:495.000000px;}
.y1e{bottom:495.360000px;}
.yb4{bottom:496.800000px;}
.y7b{bottom:499.320000px;}
.y136{bottom:508.320000px;}
.y17e{bottom:511.920000px;}
.yda{bottom:513.000000px;}
.y1d{bottom:514.440000px;}
.yb3{bottom:515.160000px;}
.y7a{bottom:516.960000px;}
.y135{bottom:523.440000px;}
.y17d{bottom:529.560000px;}
.y1c{bottom:530.640000px;}
.y79{bottom:534.960000px;}
.yb2{bottom:537.840000px;}
.y10d{bottom:544.320000px;}
.y134{bottom:545.400000px;}
.y110{bottom:546.840000px;}
.y17c{bottom:547.560000px;}
.yd9{bottom:548.280000px;}
.y1b{bottom:550.440000px;}
.y10c{bottom:552.600000px;}
.y78{bottom:552.960000px;}
.y10b{bottom:553.320000px;}
.y10f{bottom:556.560000px;}
.yb1{bottom:560.160000px;}
.y17b{bottom:565.200000px;}
.yd8{bottom:566.280000px;}
.y10e{bottom:568.080000px;}
.y15b{bottom:569.520000px;}
.y77{bottom:570.240000px;}
.y1a{bottom:570.960000px;}
.yb0{bottom:578.160000px;}
.y17a{bottom:582.840000px;}
.yd7{bottom:584.280000px;}
.y19{bottom:587.160000px;}
.y76{bottom:588.240000px;}
.y15a{bottom:588.960000px;}
.y10a{bottom:591.840000px;}
.yaf{bottom:596.160000px;}
.y179{bottom:600.840000px;}
.yd6{bottom:601.920000px;}
.y18{bottom:603.720000px;}
.y159{bottom:606.960000px;}
.y72{bottom:608.760000px;}
.y109{bottom:609.840000px;}
.y6f{bottom:611.280000px;}
.yae{bottom:613.800000px;}
.y178{bottom:618.840000px;}
.y17{bottom:619.920000px;}
.y71{bottom:624.240000px;}
.y158{bottom:624.600000px;}
.y108{bottom:627.480000px;}
.y70{bottom:628.920000px;}
.yad{bottom:631.800000px;}
.y6d{bottom:635.040000px;}
.y16{bottom:636.120000px;}
.y177{bottom:636.840000px;}
.yd5{bottom:637.920000px;}
.y74{bottom:638.280000px;}
.y73{bottom:641.880000px;}
.y107{bottom:645.120000px;}
.yac{bottom:649.080000px;}
.y133{bottom:649.440000px;}
.y15{bottom:652.320000px;}
.y176{bottom:654.480000px;}
.yd4{bottom:655.200000px;}
.y6c{bottom:662.040000px;}
.y132{bottom:667.080000px;}
.y105{bottom:667.800000px;}
.y14{bottom:668.520000px;}
.ya7{bottom:669.960000px;}
.y175{bottom:672.120000px;}
.yab{bottom:672.840000px;}
.yd3{bottom:673.200000px;}
.y157{bottom:675.360000px;}
.ya5{bottom:676.440000px;}
.y106{bottom:676.800000px;}
.ya6{bottom:677.160000px;}
.y6b{bottom:679.680000px;}
.yaa{bottom:682.200000px;}
.y47{bottom:682.920000px;}
.y13{bottom:684.720000px;}
.y131{bottom:685.080000px;}
.y174{bottom:690.120000px;}
.yd2{bottom:691.200000px;}
.y6a{bottom:697.680000px;}
.y104{bottom:699.120000px;}
.ya9{bottom:699.840000px;}
.y46{bottom:700.560000px;}
.y12{bottom:700.920000px;}
.y130{bottom:703.080000px;}
.y173{bottom:707.760000px;}
.yd1{bottom:709.200000px;}
.y69{bottom:715.680000px;}
.y156{bottom:716.400000px;}
.y11{bottom:716.760000px;}
.y45{bottom:718.560000px;}
.ya4{bottom:720.360000px;}
.y12f{bottom:721.080000px;}
.y172{bottom:725.760000px;}
.yd0{bottom:726.840000px;}
.y10{bottom:733.320000px;}
.y155{bottom:733.680000px;}
.y44{bottom:736.200000px;}
.y103{bottom:736.560000px;}
.ya3{bottom:738.000000px;}
.y12e{bottom:738.720000px;}
.y171{bottom:744.120000px;}
.ycf{bottom:744.840000px;}
.yf{bottom:749.520000px;}
.y68{bottom:750.960000px;}
.y154{bottom:751.680000px;}
.y153{bottom:753.480000px;}
.y43{bottom:754.200000px;}
.y102{bottom:754.560000px;}
.y12d{bottom:755.280000px;}
.ya2{bottom:756.000000px;}
.yce{bottom:762.480000px;}
.ye{bottom:765.720000px;}
.y170{bottom:766.800000px;}
.y67{bottom:768.960000px;}
.y12c{bottom:769.320000px;}
.y42{bottom:772.200000px;}
.ya1{bottom:773.640000px;}
.ycd{bottom:780.120000px;}
.yd{bottom:782.280000px;}
.y66{bottom:787.320000px;}
.y16f{bottom:789.480000px;}
.y41{bottom:789.840000px;}
.y101{bottom:790.200000px;}
.ya0{bottom:791.640000px;}
.ycc{bottom:798.120000px;}
.yc{bottom:801.720000px;}
.y12b{bottom:805.320000px;}
.y40{bottom:807.480000px;}
.y100{bottom:807.840000px;}
.y9f{bottom:809.280000px;}
.y65{bottom:810.000000px;}
.y16e{bottom:811.440000px;}
.ycb{bottom:816.120000px;}
.yb{bottom:822.960000px;}
.y3f{bottom:825.480000px;}
.y9e{bottom:827.280000px;}
.y64{bottom:832.320000px;}
.yca{bottom:834.120000px;}
.y12a{bottom:840.960000px;}
.y3e{bottom:843.480000px;}
.y9d{bottom:845.280000px;}
.y63{bottom:849.960000px;}
.ya{bottom:851.760000px;}
.y129{bottom:858.600000px;}
.y3d{bottom:861.120000px;}
.yff{bottom:861.480000px;}
.y9c{bottom:862.920000px;}
.y9{bottom:863.640000px;}
.y16d{bottom:864.360000px;}
.y62{bottom:867.960000px;}
.y128{bottom:876.600000px;}
.y3c{bottom:879.120000px;}
.yfe{bottom:879.480000px;}
.y9b{bottom:880.560000px;}
.y8{bottom:884.880000px;}
.y61{bottom:885.960000px;}
.yc9{bottom:887.400000px;}
.y16c{bottom:891.360000px;}
.y127{bottom:894.240000px;}
.yfd{bottom:897.120000px;}
.y9a{bottom:898.200000px;}
.y198{bottom:901.800000px;}
.y60{bottom:903.240000px;}
.yc8{bottom:905.040000px;}
.y7{bottom:909.360000px;}
.y126{bottom:912.240000px;}
.yfc{bottom:914.760000px;}
.y3b{bottom:916.920000px;}
.y197{bottom:918.000000px;}
.y5f{bottom:921.240000px;}
.yc7{bottom:923.040000px;}
.y99{bottom:923.400000px;}
.y125{bottom:930.240000px;}
.yfb{bottom:932.760000px;}
.y98{bottom:933.120000px;}
.y196{bottom:934.200000px;}
.y3a{bottom:934.920000px;}
.y152{bottom:936.000000px;}
.y5e{bottom:939.240000px;}
.yc6{bottom:941.040000px;}
.y6{bottom:941.400000px;}
.y124{bottom:947.880000px;}
.yfa{bottom:950.040000px;}
.y195{bottom:950.400000px;}
.y39{bottom:952.560000px;}
.y151{bottom:953.640000px;}
.y5d{bottom:957.240000px;}
.y97{bottom:964.080000px;}
.y123{bottom:964.440000px;}
.y194{bottom:966.600000px;}
.yf9{bottom:969.840000px;}
.y38{bottom:970.560000px;}
.y150{bottom:971.640000px;}
.y5{bottom:973.080000px;}
.y5c{bottom:974.880000px;}
.y96{bottom:982.080000px;}
.y193{bottom:982.440000px;}
.y37{bottom:988.200000px;}
.y14f{bottom:988.560000px;}
.yf8{bottom:988.920000px;}
.y5b{bottom:992.880000px;}
.y122{bottom:996.120000px;}
.y192{bottom:999.000000px;}
.y95{bottom:999.360000px;}
.y4{bottom:1004.400000px;}
.y14e{bottom:1006.560000px;}
.y36{bottom:1007.280000px;}
.yf7{bottom:1008.720000px;}
.y5a{bottom:1010.520000px;}
.y191{bottom:1015.200000px;}
.y94{bottom:1017.360000px;}
.y14d{bottom:1024.920000px;}
.y35{bottom:1026.360000px;}
.y59{bottom:1028.160000px;}
.y190{bottom:1031.400000px;}
.y3{bottom:1036.440000px;}
.y90{bottom:1039.320000px;}
.y91{bottom:1039.680000px;}
.y93{bottom:1043.640000px;}
.y14c{bottom:1044.000000px;}
.y34{bottom:1045.080000px;}
.y58{bottom:1046.160000px;}
.y18f{bottom:1047.600000px;}
.y32{bottom:1067.040000px;}
.y1{bottom:1081.800000px;}
.h41{height:5.760000px;}
.hd{height:12.600000px;}
.h11{height:12.960000px;}
.h23{height:14.400000px;}
.h2b{height:16.920000px;}
.h3f{height:17.270297px;}
.h2d{height:17.640000px;}
.h37{height:18.360000px;}
.h1f{height:18.720000px;}
.h16{height:19.080000px;}
.h13{height:20.160000px;}
.h3e{height:38.522194px;}
.h32{height:38.526047px;}
.h2f{height:38.798590px;}
.h1b{height:41.496504px;}
.h6{height:43.839984px;}
.h18{height:43.946483px;}
.h15{height:43.968357px;}
.h10{height:44.260781px;}
.he{height:44.282812px;}
.h27{height:45.017775px;}
.h1a{height:46.362689px;}
.h25{height:46.958531px;}
.h40{height:49.680000px;}
.h24{height:49.730990px;}
.h22{height:49.755744px;}
.h1{height:50.482406px;}
.h3b{height:51.838650px;}
.h2c{height:53.879987px;}
.h9{height:55.767996px;}
.h2{height:55.795755px;}
.h2a{height:57.061093px;}
.h29{height:57.089496px;}
.h35{height:57.621375px;}
.h3a{height:58.821820px;}
.h34{height:61.023375px;}
.h33{height:61.053750px;}
.h28{height:61.079878px;}
.hb{height:61.110281px;}
.h1c{height:62.245312px;}
.h39{height:62.294695px;}
.h38{height:62.325703px;}
.h20{height:62.568210px;}
.h14{height:62.689922px;}
.h3d{height:62.752050px;}
.hc{height:64.941075px;}
.h30{height:65.886047px;}
.h19{height:65.920312px;}
.h17{height:65.953125px;}
.h1e{height:66.262274px;}
.h1d{height:66.295257px;}
.h12{height:66.391172px;}
.h8{height:66.424219px;}
.h31{height:67.326047px;}
.h26{height:68.208750px;}
.h3c{height:70.588125px;}
.h7{height:71.701877px;}
.h5{height:71.737567px;}
.h2e{height:71.840539px;}
.hf{height:78.820781px;}
.h21{height:79.079335px;}
.ha{height:79.122150px;}
.h4{height:79.616953px;}
.h3{height:117.740914px;}
.h36{height:125.608818px;}
.h0{height:1188.000000px;}
.w13{width:7.560000px;}
.w15{width:7.920000px;}
.w14{width:11.160000px;}
.w2{width:28.800000px;}
.w1{width:32.400000px;}
.w9{width:33.119850px;}
.w3{width:33.840000px;}
.w6{width:42.120000px;}
.wc{width:47.160000px;}
.wd{width:48.239850px;}
.w8{width:57.960000px;}
.wa{width:59.040000px;}
.wb{width:59.400000px;}
.w7{width:68.760000px;}
.we{width:77.400000px;}
.w10{width:106.920000px;}
.wf{width:118.080000px;}
.w12{width:310.320000px;}
.w11{width:325.800000px;}
.w4{width:327.240000px;}
.w5{width:352.800000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:1.080000px;}
.x3f{left:9.000000px;}
.x2{left:158.760000px;}
.x19{left:161.280000px;}
.x36{left:162.360000px;}
.x14{left:163.440000px;}
.x31{left:165.240000px;}
.x26{left:169.560000px;}
.x4{left:171.720000px;}
.x1{left:173.160000px;}
.x35{left:174.960000px;}
.x30{left:176.040000px;}
.x28{left:178.920000px;}
.xd{left:182.880000px;}
.x9{left:183.960000px;}
.x17{left:186.840000px;}
.x8{left:187.920000px;}
.x33{left:189.000000px;}
.x37{left:190.440000px;}
.x10{left:195.120000px;}
.x27{left:196.920000px;}
.x25{left:202.320000px;}
.x1e{left:203.760000px;}
.x24{left:204.840000px;}
.x39{left:208.080000px;}
.xb{left:209.520000px;}
.x5{left:214.920000px;}
.x18{left:222.840000px;}
.x13{left:227.520000px;}
.x1c{left:232.560000px;}
.x3a{left:239.400000px;}
.x29{left:241.200000px;}
.x1a{left:244.440000px;}
.xf{left:246.600000px;}
.x23{left:250.920000px;}
.x7{left:252.000000px;}
.x38{left:253.080000px;}
.x2c{left:262.800000px;}
.x15{left:266.400000px;}
.x6{left:268.200000px;}
.x2e{left:273.240000px;}
.x21{left:275.040000px;}
.x34{left:283.320000px;}
.x2a{left:285.480000px;}
.x3e{left:300.240000px;}
.x3b{left:302.400000px;}
.x1f{left:304.200000px;}
.xe{left:306.720000px;}
.x11{left:310.320000px;}
.x20{left:315.000000px;}
.x2b{left:323.640000px;}
.x42{left:329.760000px;}
.x1d{left:330.840000px;}
.x2d{left:334.800000px;}
.x2f{left:336.240000px;}
.x1b{left:338.040000px;}
.x16{left:343.440000px;}
.x3d{left:360.000000px;}
.x41{left:362.880000px;}
.x44{left:371.160000px;}
.x22{left:372.960000px;}
.x32{left:383.400000px;}
.x3{left:463.680000px;}
.x43{left:616.320000px;}
.x3c{left:633.960000px;}
.x40{left:636.120000px;}
.xc{left:747.360000px;}
.xa{left:754.200000px;}
@media print{
.v7{vertical-align:-74.240000pt;}
.v4{vertical-align:-67.840000pt;}
.v3{vertical-align:-66.560000pt;}
.vd{vertical-align:-64.000000pt;}
.vf{vertical-align:-62.720000pt;}
.v14{vertical-align:-61.440000pt;}
.v15{vertical-align:-56.320000pt;}
.v16{vertical-align:-55.040000pt;}
.v12{vertical-align:-48.640000pt;}
.v6{vertical-align:-47.360000pt;}
.ve{vertical-align:-40.960000pt;}
.v13{vertical-align:-30.720000pt;}
.vc{vertical-align:-29.440000pt;}
.v2{vertical-align:-28.160000pt;}
.va{vertical-align:-7.680000pt;}
.v8{vertical-align:-6.400000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:6.400000pt;}
.vb{vertical-align:7.680000pt;}
.v10{vertical-align:24.320000pt;}
.v11{vertical-align:25.600000pt;}
.v1{vertical-align:29.440000pt;}
.v5{vertical-align:30.720000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.002718pt;}
.ls1{letter-spacing:0.088285pt;}
.ls8{letter-spacing:0.189021pt;}
.ls0{letter-spacing:0.208969pt;}
.ls5{letter-spacing:0.266344pt;}
.ls6{letter-spacing:0.270003pt;}
.ls4{letter-spacing:0.349240pt;}
.ls2{letter-spacing:0.428610pt;}
.ls1b{letter-spacing:0.507713pt;}
.ls14{letter-spacing:0.540006pt;}
.ls12{letter-spacing:0.559295pt;}
.ls3{letter-spacing:0.745423pt;}
.lsc{letter-spacing:0.748415pt;}
.ls11{letter-spacing:0.808650pt;}
.ls1d{letter-spacing:0.809098pt;}
.ls16{letter-spacing:0.903160pt;}
.ls25{letter-spacing:0.912262pt;}
.ls21{letter-spacing:0.954742pt;}
.ls1a{letter-spacing:1.790149pt;}
.lsb{letter-spacing:2.194699pt;}
.ls15{letter-spacing:2.246280pt;}
.ls22{letter-spacing:10.262211pt;}
.ls19{letter-spacing:29.498760pt;}
.ls24{letter-spacing:42.257319pt;}
.ls1f{letter-spacing:44.888000pt;}
.ls9{letter-spacing:50.017747pt;}
.ls7{letter-spacing:75.933764pt;}
.ls17{letter-spacing:89.773282pt;}
.ls18{letter-spacing:122.101483pt;}
.ls10{letter-spacing:166.986765pt;}
.lse{letter-spacing:167.415241pt;}
.lsd{letter-spacing:182.804481pt;}
.ls1e{letter-spacing:183.658441pt;}
.ls20{letter-spacing:187.568841pt;}
.lsf{letter-spacing:209.352683pt;}
.ls1c{letter-spacing:291.534090pt;}
.ls23{letter-spacing:685.091163pt;}
.ws2f{word-spacing:-30.385613pt;}
.ws0{word-spacing:-24.966267pt;}
.ws13{word-spacing:-18.493306pt;}
.ws3{word-spacing:-17.446400pt;}
.ws30{word-spacing:-15.040000pt;}
.ws10{word-spacing:-15.010800pt;}
.ws4{word-spacing:-13.836800pt;}
.ws2{word-spacing:-13.235200pt;}
.ws15{word-spacing:-11.265867pt;}
.ws6{word-spacing:-10.026667pt;}
.ws1{word-spacing:-9.926400pt;}
.wsa{word-spacing:-8.723200pt;}
.ws5{word-spacing:0.000000pt;}
.ws9{word-spacing:8.302080pt;}
.ws1e{word-spacing:9.927475pt;}
.ws25{word-spacing:11.335680pt;}
.ws2a{word-spacing:12.926592pt;}
.ws19{word-spacing:13.443456pt;}
.ws24{word-spacing:26.707968pt;}
.ws28{word-spacing:27.320832pt;}
.wsf{word-spacing:28.014933pt;}
.ws22{word-spacing:30.402893pt;}
.ws18{word-spacing:32.988173pt;}
.ws1a{word-spacing:34.280813pt;}
.ws21{word-spacing:40.692307pt;}
.ws1d{word-spacing:41.054246pt;}
.ws1c{word-spacing:42.295181pt;}
.ws1f{word-spacing:43.277587pt;}
.ws20{word-spacing:47.465741pt;}
.ws1b{word-spacing:48.706675pt;}
.ws27{word-spacing:52.990322pt;}
.ws16{word-spacing:61.196188pt;}
.ws23{word-spacing:67.668117pt;}
.ws12{word-spacing:70.850976pt;}
.wsd{word-spacing:71.022933pt;}
.ws7{word-spacing:71.530240pt;}
.wsb{word-spacing:74.427733pt;}
.ws11{word-spacing:78.536506pt;}
.ws8{word-spacing:118.996480pt;}
.ws17{word-spacing:144.158030pt;}
.ws14{word-spacing:150.848542pt;}
.ws26{word-spacing:261.881856pt;}
.ws2e{word-spacing:356.100848pt;}
.ws2d{word-spacing:366.347520pt;}
.wsc{word-spacing:373.927328pt;}
.ws2b{word-spacing:374.137344pt;}
.ws29{word-spacing:385.991424pt;}
.ws2c{word-spacing:398.522880pt;}
.wse{word-spacing:435.421048pt;}
._27{margin-left:-167.429542pt;}
._28{margin-left:-166.488640pt;}
._26{margin-left:-146.197776pt;}
._42{margin-left:-133.373409pt;}
._2a{margin-left:-112.854423pt;}
._33{margin-left:-76.946198pt;}
._36{margin-left:-67.969141pt;}
._22{margin-left:-39.755536pt;}
._2b{margin-left:-8.910837pt;}
._4{margin-left:-5.035561pt;}
._d{margin-left:-3.585536pt;}
._0{margin-left:-2.194637pt;}
._2{margin-left:-1.188762pt;}
._1{width:1.371648pt;}
._3{width:2.971904pt;}
._c{width:3.975581pt;}
._8{width:4.881028pt;}
._6{width:5.800349pt;}
._5{width:6.771538pt;}
._7{width:8.071012pt;}
._10{width:9.298330pt;}
._9{width:10.308909pt;}
._11{width:11.375215pt;}
._14{width:12.777984pt;}
._b{width:14.048415pt;}
._a{width:15.862832pt;}
._12{width:17.157632pt;}
._13{width:18.353613pt;}
._f{width:19.663283pt;}
._e{width:20.644506pt;}
._29{width:21.757844pt;}
._2f{width:24.456749pt;}
._3d{width:29.748096pt;}
._2d{width:35.780275pt;}
._2c{width:38.365555pt;}
._43{width:41.298468pt;}
._39{width:61.979904pt;}
._1e{width:63.377067pt;}
._16{width:66.956708pt;}
._3a{width:68.358528pt;}
._20{width:76.160000pt;}
._2e{width:78.644218pt;}
._3c{width:81.006234pt;}
._1d{width:82.971819pt;}
._34{width:94.734428pt;}
._23{width:110.766001pt;}
._24{width:114.416142pt;}
._31{width:115.585433pt;}
._30{width:121.742660pt;}
._3b{width:164.190974pt;}
._17{width:166.986765pt;}
._19{width:173.348352pt;}
._1b{width:175.018667pt;}
._32{width:193.430650pt;}
._15{width:202.964064pt;}
._25{width:210.260486pt;}
._35{width:217.810944pt;}
._1a{width:233.276628pt;}
._1f{width:299.323733pt;}
._1c{width:310.735019pt;}
._18{width:327.338667pt;}
._21{width:339.228111pt;}
._3e{width:361.775232pt;}
._41{width:397.337472pt;}
._38{width:427.399633pt;}
._37{width:460.722119pt;}
._3f{width:504.249984pt;}
._40{width:564.801792pt;}
.fs19{font-size:15.641600pt;}
.fs18{font-size:34.889311pt;}
.fsc{font-size:34.892800pt;}
.fs6{font-size:39.705600pt;}
.fsd{font-size:39.821867pt;}
.fsb{font-size:40.106667pt;}
.fs5{font-size:42.112000pt;}
.fs12{font-size:45.063467pt;}
.fs0{font-size:45.721600pt;}
.fs1{font-size:50.533867pt;}
.fs13{font-size:51.705600pt;}
.fs8{font-size:52.940800pt;}
.fs15{font-size:55.296000pt;}
.fsa{font-size:55.347200pt;}
.fs17{font-size:56.448000pt;}
.fse{font-size:59.733333pt;}
.fs10{font-size:60.043200pt;}
.fs7{font-size:60.160000pt;}
.fsf{font-size:61.832015pt;}
.fs4{font-size:64.972267pt;}
.fs14{font-size:68.941333pt;}
.fs9{font-size:69.785600pt;}
.fs11{font-size:75.888000pt;}
.fs3{font-size:80.613867pt;}
.fs2{font-size:99.865067pt;}
.fs16{font-size:120.539733pt;}
.y0{bottom:0.000000pt;}
.y15e{bottom:0.320000pt;}
.y6e{bottom:2.240000pt;}
.ya8{bottom:2.560000pt;}
.ye7{bottom:2.880000pt;}
.y75{bottom:3.200000pt;}
.y92{bottom:3.520000pt;}
.y2{bottom:86.080000pt;}
.y33{bottom:103.360000pt;}
.y31{bottom:111.360000pt;}
.y14b{bottom:120.640000pt;}
.y8f{bottom:126.720000pt;}
.y57{bottom:127.040000pt;}
.y30{bottom:128.320000pt;}
.yc5{bottom:130.560000pt;}
.y14a{bottom:136.320000pt;}
.y8e{bottom:142.400000pt;}
.y56{bottom:143.040000pt;}
.y18e{bottom:143.360000pt;}
.yc4{bottom:146.240000pt;}
.y149{bottom:152.000000pt;}
.y121{bottom:153.920000pt;}
.y16b{bottom:155.200000pt;}
.y18d{bottom:157.760000pt;}
.y8d{bottom:158.400000pt;}
.y55{bottom:159.040000pt;}
.yc3{bottom:160.960000pt;}
.y2f{bottom:161.920000pt;}
.y148{bottom:168.000000pt;}
.y16a{bottom:170.880000pt;}
.y18c{bottom:172.160000pt;}
.yc2{bottom:173.440000pt;}
.y8c{bottom:174.400000pt;}
.y54{bottom:174.720000pt;}
.y2e{bottom:177.920000pt;}
.y147{bottom:184.000000pt;}
.y120{bottom:186.560000pt;}
.y8b{bottom:190.080000pt;}
.y53{bottom:190.720000pt;}
.y2d{bottom:193.920000pt;}
.y146{bottom:199.680000pt;}
.y18b{bottom:200.960000pt;}
.y11f{bottom:202.240000pt;}
.y169{bottom:202.560000pt;}
.yc1{bottom:204.160000pt;}
.y8a{bottom:206.080000pt;}
.y52{bottom:206.400000pt;}
.y2c{bottom:209.600000pt;}
.y18a{bottom:215.360000pt;}
.y145{bottom:215.680000pt;}
.y11e{bottom:218.240000pt;}
.y168{bottom:218.560000pt;}
.y89{bottom:221.760000pt;}
.y51{bottom:222.400000pt;}
.y2b{bottom:225.600000pt;}
.y189{bottom:229.760000pt;}
.y144{bottom:231.360000pt;}
.y167{bottom:233.600000pt;}
.y11d{bottom:234.240000pt;}
.yc0{bottom:235.840000pt;}
.y88{bottom:237.440000pt;}
.y50{bottom:238.080000pt;}
.y2a{bottom:241.280000pt;}
.y188{bottom:244.160000pt;}
.y143{bottom:247.360000pt;}
.y166{bottom:249.600000pt;}
.y11c{bottom:249.920000pt;}
.ybf{bottom:251.520000pt;}
.y87{bottom:253.440000pt;}
.yf6{bottom:253.760000pt;}
.y4f{bottom:254.080000pt;}
.y29{bottom:256.960000pt;}
.y187{bottom:258.560000pt;}
.y142{bottom:263.040000pt;}
.y165{bottom:265.600000pt;}
.ybe{bottom:267.520000pt;}
.y86{bottom:269.440000pt;}
.y4e{bottom:270.080000pt;}
.yf5{bottom:271.040000pt;}
.y28{bottom:272.960000pt;}
.y164{bottom:278.720000pt;}
.y141{bottom:279.040000pt;}
.y11b{bottom:282.560000pt;}
.ybd{bottom:283.200000pt;}
.y85{bottom:285.440000pt;}
.y4d{bottom:285.760000pt;}
.y186{bottom:287.360000pt;}
.yf4{bottom:288.320000pt;}
.y27{bottom:288.960000pt;}
.y163{bottom:293.120000pt;}
.y140{bottom:295.040000pt;}
.y11a{bottom:298.560000pt;}
.ybc{bottom:299.200000pt;}
.y84{bottom:301.120000pt;}
.y4c{bottom:301.440000pt;}
.y185{bottom:301.760000pt;}
.y26{bottom:304.640000pt;}
.y162{bottom:306.560000pt;}
.y13f{bottom:310.720000pt;}
.yf3{bottom:313.280000pt;}
.y119{bottom:314.560000pt;}
.ybb{bottom:315.200000pt;}
.y161{bottom:316.480000pt;}
.y83{bottom:316.800000pt;}
.y4b{bottom:317.440000pt;}
.yf1{bottom:317.760000pt;}
.yf0{bottom:320.320000pt;}
.y25{bottom:320.640000pt;}
.ye0{bottom:321.280000pt;}
.y13e{bottom:326.400000pt;}
.y118{bottom:330.240000pt;}
.yba{bottom:330.880000pt;}
.y82{bottom:332.800000pt;}
.y4a{bottom:333.120000pt;}
.y160{bottom:333.760000pt;}
.yef{bottom:334.720000pt;}
.y24{bottom:336.320000pt;}
.ye5{bottom:336.960000pt;}
.y15c{bottom:338.560000pt;}
.y13d{bottom:342.400000pt;}
.y184{bottom:345.280000pt;}
.y117{bottom:346.240000pt;}
.yb9{bottom:346.560000pt;}
.ye4{bottom:346.880000pt;}
.ye8{bottom:347.200000pt;}
.y81{bottom:348.480000pt;}
.y49{bottom:348.800000pt;}
.ydf{bottom:350.080000pt;}
.yee{bottom:351.360000pt;}
.y23{bottom:352.320000pt;}
.y13c{bottom:358.080000pt;}
.y183{bottom:359.680000pt;}
.y116{bottom:361.920000pt;}
.y80{bottom:364.480000pt;}
.yed{bottom:367.680000pt;}
.y22{bottom:368.000000pt;}
.yde{bottom:370.880000pt;}
.y182{bottom:373.760000pt;}
.y13b{bottom:374.080000pt;}
.yf2{bottom:374.400000pt;}
.y48{bottom:375.360000pt;}
.ye3{bottom:376.320000pt;}
.y115{bottom:377.600000pt;}
.yb8{bottom:378.560000pt;}
.y7f{bottom:380.480000pt;}
.yec{bottom:380.800000pt;}
.y21{bottom:384.000000pt;}
.yeb{bottom:384.640000pt;}
.ye2{bottom:386.240000pt;}
.ye6{bottom:386.560000pt;}
.y181{bottom:388.160000pt;}
.ydd{bottom:389.440000pt;}
.y13a{bottom:390.080000pt;}
.y15d{bottom:391.360000pt;}
.y114{bottom:393.600000pt;}
.yb7{bottom:394.240000pt;}
.y7e{bottom:396.480000pt;}
.ye1{bottom:400.000000pt;}
.y20{bottom:400.320000pt;}
.yea{bottom:401.280000pt;}
.y180{bottom:402.560000pt;}
.y139{bottom:406.080000pt;}
.y113{bottom:409.600000pt;}
.yb6{bottom:410.240000pt;}
.y7d{bottom:411.840000pt;}
.y17f{bottom:417.280000pt;}
.ye9{bottom:417.600000pt;}
.ydc{bottom:419.520000pt;}
.y1f{bottom:420.480000pt;}
.y138{bottom:421.760000pt;}
.y112{bottom:424.640000pt;}
.yb5{bottom:426.240000pt;}
.y7c{bottom:427.840000pt;}
.y15f{bottom:435.200000pt;}
.y137{bottom:437.440000pt;}
.y111{bottom:438.720000pt;}
.ydb{bottom:440.000000pt;}
.y1e{bottom:440.320000pt;}
.yb4{bottom:441.600000pt;}
.y7b{bottom:443.840000pt;}
.y136{bottom:451.840000pt;}
.y17e{bottom:455.040000pt;}
.yda{bottom:456.000000pt;}
.y1d{bottom:457.280000pt;}
.yb3{bottom:457.920000pt;}
.y7a{bottom:459.520000pt;}
.y135{bottom:465.280000pt;}
.y17d{bottom:470.720000pt;}
.y1c{bottom:471.680000pt;}
.y79{bottom:475.520000pt;}
.yb2{bottom:478.080000pt;}
.y10d{bottom:483.840000pt;}
.y134{bottom:484.800000pt;}
.y110{bottom:486.080000pt;}
.y17c{bottom:486.720000pt;}
.yd9{bottom:487.360000pt;}
.y1b{bottom:489.280000pt;}
.y10c{bottom:491.200000pt;}
.y78{bottom:491.520000pt;}
.y10b{bottom:491.840000pt;}
.y10f{bottom:494.720000pt;}
.yb1{bottom:497.920000pt;}
.y17b{bottom:502.400000pt;}
.yd8{bottom:503.360000pt;}
.y10e{bottom:504.960000pt;}
.y15b{bottom:506.240000pt;}
.y77{bottom:506.880000pt;}
.y1a{bottom:507.520000pt;}
.yb0{bottom:513.920000pt;}
.y17a{bottom:518.080000pt;}
.yd7{bottom:519.360000pt;}
.y19{bottom:521.920000pt;}
.y76{bottom:522.880000pt;}
.y15a{bottom:523.520000pt;}
.y10a{bottom:526.080000pt;}
.yaf{bottom:529.920000pt;}
.y179{bottom:534.080000pt;}
.yd6{bottom:535.040000pt;}
.y18{bottom:536.640000pt;}
.y159{bottom:539.520000pt;}
.y72{bottom:541.120000pt;}
.y109{bottom:542.080000pt;}
.y6f{bottom:543.360000pt;}
.yae{bottom:545.600000pt;}
.y178{bottom:550.080000pt;}
.y17{bottom:551.040000pt;}
.y71{bottom:554.880000pt;}
.y158{bottom:555.200000pt;}
.y108{bottom:557.760000pt;}
.y70{bottom:559.040000pt;}
.yad{bottom:561.600000pt;}
.y6d{bottom:564.480000pt;}
.y16{bottom:565.440000pt;}
.y177{bottom:566.080000pt;}
.yd5{bottom:567.040000pt;}
.y74{bottom:567.360000pt;}
.y73{bottom:570.560000pt;}
.y107{bottom:573.440000pt;}
.yac{bottom:576.960000pt;}
.y133{bottom:577.280000pt;}
.y15{bottom:579.840000pt;}
.y176{bottom:581.760000pt;}
.yd4{bottom:582.400000pt;}
.y6c{bottom:588.480000pt;}
.y132{bottom:592.960000pt;}
.y105{bottom:593.600000pt;}
.y14{bottom:594.240000pt;}
.ya7{bottom:595.520000pt;}
.y175{bottom:597.440000pt;}
.yab{bottom:598.080000pt;}
.yd3{bottom:598.400000pt;}
.y157{bottom:600.320000pt;}
.ya5{bottom:601.280000pt;}
.y106{bottom:601.600000pt;}
.ya6{bottom:601.920000pt;}
.y6b{bottom:604.160000pt;}
.yaa{bottom:606.400000pt;}
.y47{bottom:607.040000pt;}
.y13{bottom:608.640000pt;}
.y131{bottom:608.960000pt;}
.y174{bottom:613.440000pt;}
.yd2{bottom:614.400000pt;}
.y6a{bottom:620.160000pt;}
.y104{bottom:621.440000pt;}
.ya9{bottom:622.080000pt;}
.y46{bottom:622.720000pt;}
.y12{bottom:623.040000pt;}
.y130{bottom:624.960000pt;}
.y173{bottom:629.120000pt;}
.yd1{bottom:630.400000pt;}
.y69{bottom:636.160000pt;}
.y156{bottom:636.800000pt;}
.y11{bottom:637.120000pt;}
.y45{bottom:638.720000pt;}
.ya4{bottom:640.320000pt;}
.y12f{bottom:640.960000pt;}
.y172{bottom:645.120000pt;}
.yd0{bottom:646.080000pt;}
.y10{bottom:651.840000pt;}
.y155{bottom:652.160000pt;}
.y44{bottom:654.400000pt;}
.y103{bottom:654.720000pt;}
.ya3{bottom:656.000000pt;}
.y12e{bottom:656.640000pt;}
.y171{bottom:661.440000pt;}
.ycf{bottom:662.080000pt;}
.yf{bottom:666.240000pt;}
.y68{bottom:667.520000pt;}
.y154{bottom:668.160000pt;}
.y153{bottom:669.760000pt;}
.y43{bottom:670.400000pt;}
.y102{bottom:670.720000pt;}
.y12d{bottom:671.360000pt;}
.ya2{bottom:672.000000pt;}
.yce{bottom:677.760000pt;}
.ye{bottom:680.640000pt;}
.y170{bottom:681.600000pt;}
.y67{bottom:683.520000pt;}
.y12c{bottom:683.840000pt;}
.y42{bottom:686.400000pt;}
.ya1{bottom:687.680000pt;}
.ycd{bottom:693.440000pt;}
.yd{bottom:695.360000pt;}
.y66{bottom:699.840000pt;}
.y16f{bottom:701.760000pt;}
.y41{bottom:702.080000pt;}
.y101{bottom:702.400000pt;}
.ya0{bottom:703.680000pt;}
.ycc{bottom:709.440000pt;}
.yc{bottom:712.640000pt;}
.y12b{bottom:715.840000pt;}
.y40{bottom:717.760000pt;}
.y100{bottom:718.080000pt;}
.y9f{bottom:719.360000pt;}
.y65{bottom:720.000000pt;}
.y16e{bottom:721.280000pt;}
.ycb{bottom:725.440000pt;}
.yb{bottom:731.520000pt;}
.y3f{bottom:733.760000pt;}
.y9e{bottom:735.360000pt;}
.y64{bottom:739.840000pt;}
.yca{bottom:741.440000pt;}
.y12a{bottom:747.520000pt;}
.y3e{bottom:749.760000pt;}
.y9d{bottom:751.360000pt;}
.y63{bottom:755.520000pt;}
.ya{bottom:757.120000pt;}
.y129{bottom:763.200000pt;}
.y3d{bottom:765.440000pt;}
.yff{bottom:765.760000pt;}
.y9c{bottom:767.040000pt;}
.y9{bottom:767.680000pt;}
.y16d{bottom:768.320000pt;}
.y62{bottom:771.520000pt;}
.y128{bottom:779.200000pt;}
.y3c{bottom:781.440000pt;}
.yfe{bottom:781.760000pt;}
.y9b{bottom:782.720000pt;}
.y8{bottom:786.560000pt;}
.y61{bottom:787.520000pt;}
.yc9{bottom:788.800000pt;}
.y16c{bottom:792.320000pt;}
.y127{bottom:794.880000pt;}
.yfd{bottom:797.440000pt;}
.y9a{bottom:798.400000pt;}
.y198{bottom:801.600000pt;}
.y60{bottom:802.880000pt;}
.yc8{bottom:804.480000pt;}
.y7{bottom:808.320000pt;}
.y126{bottom:810.880000pt;}
.yfc{bottom:813.120000pt;}
.y3b{bottom:815.040000pt;}
.y197{bottom:816.000000pt;}
.y5f{bottom:818.880000pt;}
.yc7{bottom:820.480000pt;}
.y99{bottom:820.800000pt;}
.y125{bottom:826.880000pt;}
.yfb{bottom:829.120000pt;}
.y98{bottom:829.440000pt;}
.y196{bottom:830.400000pt;}
.y3a{bottom:831.040000pt;}
.y152{bottom:832.000000pt;}
.y5e{bottom:834.880000pt;}
.yc6{bottom:836.480000pt;}
.y6{bottom:836.800000pt;}
.y124{bottom:842.560000pt;}
.yfa{bottom:844.480000pt;}
.y195{bottom:844.800000pt;}
.y39{bottom:846.720000pt;}
.y151{bottom:847.680000pt;}
.y5d{bottom:850.880000pt;}
.y97{bottom:856.960000pt;}
.y123{bottom:857.280000pt;}
.y194{bottom:859.200000pt;}
.yf9{bottom:862.080000pt;}
.y38{bottom:862.720000pt;}
.y150{bottom:863.680000pt;}
.y5{bottom:864.960000pt;}
.y5c{bottom:866.560000pt;}
.y96{bottom:872.960000pt;}
.y193{bottom:873.280000pt;}
.y37{bottom:878.400000pt;}
.y14f{bottom:878.720000pt;}
.yf8{bottom:879.040000pt;}
.y5b{bottom:882.560000pt;}
.y122{bottom:885.440000pt;}
.y192{bottom:888.000000pt;}
.y95{bottom:888.320000pt;}
.y4{bottom:892.800000pt;}
.y14e{bottom:894.720000pt;}
.y36{bottom:895.360000pt;}
.yf7{bottom:896.640000pt;}
.y5a{bottom:898.240000pt;}
.y191{bottom:902.400000pt;}
.y94{bottom:904.320000pt;}
.y14d{bottom:911.040000pt;}
.y35{bottom:912.320000pt;}
.y59{bottom:913.920000pt;}
.y190{bottom:916.800000pt;}
.y3{bottom:921.280000pt;}
.y90{bottom:923.840000pt;}
.y91{bottom:924.160000pt;}
.y93{bottom:927.680000pt;}
.y14c{bottom:928.000000pt;}
.y34{bottom:928.960000pt;}
.y58{bottom:929.920000pt;}
.y18f{bottom:931.200000pt;}
.y32{bottom:948.480000pt;}
.y1{bottom:961.600000pt;}
.h41{height:5.120000pt;}
.hd{height:11.200000pt;}
.h11{height:11.520000pt;}
.h23{height:12.800000pt;}
.h2b{height:15.040000pt;}
.h3f{height:15.351375pt;}
.h2d{height:15.680000pt;}
.h37{height:16.320000pt;}
.h1f{height:16.640000pt;}
.h16{height:16.960000pt;}
.h13{height:17.920000pt;}
.h3e{height:34.241950pt;}
.h32{height:34.245375pt;}
.h2f{height:34.487635pt;}
.h1b{height:36.885782pt;}
.h6{height:38.968875pt;}
.h18{height:39.063540pt;}
.h15{height:39.082984pt;}
.h10{height:39.342917pt;}
.he{height:39.362500pt;}
.h27{height:40.015800pt;}
.h1a{height:41.211279pt;}
.h25{height:41.740916pt;}
.h40{height:44.160000pt;}
.h24{height:44.205324pt;}
.h22{height:44.227328pt;}
.h1{height:44.873250pt;}
.h3b{height:46.078800pt;}
.h2c{height:47.893322pt;}
.h9{height:49.571552pt;}
.h2{height:49.596227pt;}
.h2a{height:50.720972pt;}
.h29{height:50.746219pt;}
.h35{height:51.219000pt;}
.h3a{height:52.286062pt;}
.h34{height:54.243000pt;}
.h33{height:54.270000pt;}
.h28{height:54.293225pt;}
.hb{height:54.320250pt;}
.h1c{height:55.329167pt;}
.h39{height:55.373062pt;}
.h38{height:55.400625pt;}
.h20{height:55.616187pt;}
.h14{height:55.724375pt;}
.h3d{height:55.779600pt;}
.hc{height:57.725400pt;}
.h30{height:58.565375pt;}
.h19{height:58.595833pt;}
.h17{height:58.625000pt;}
.h1e{height:58.899799pt;}
.h1d{height:58.929117pt;}
.h12{height:59.014375pt;}
.h8{height:59.043750pt;}
.h31{height:59.845375pt;}
.h26{height:60.630000pt;}
.h3c{height:62.745000pt;}
.h7{height:63.735002pt;}
.h5{height:63.766727pt;}
.h2e{height:63.858257pt;}
.hf{height:70.062917pt;}
.h21{height:70.292742pt;}
.ha{height:70.330800pt;}
.h4{height:70.770625pt;}
.h3{height:104.658590pt;}
.h36{height:111.652282pt;}
.h0{height:1056.000000pt;}
.w13{width:6.720000pt;}
.w15{width:7.040000pt;}
.w14{width:9.920000pt;}
.w2{width:25.600000pt;}
.w1{width:28.800000pt;}
.w9{width:29.439867pt;}
.w3{width:30.080000pt;}
.w6{width:37.440000pt;}
.wc{width:41.920000pt;}
.wd{width:42.879867pt;}
.w8{width:51.520000pt;}
.wa{width:52.480000pt;}
.wb{width:52.800000pt;}
.w7{width:61.120000pt;}
.we{width:68.800000pt;}
.w10{width:95.040000pt;}
.wf{width:104.960000pt;}
.w12{width:275.840000pt;}
.w11{width:289.600000pt;}
.w4{width:290.880000pt;}
.w5{width:313.600000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:0.960000pt;}
.x3f{left:8.000000pt;}
.x2{left:141.120000pt;}
.x19{left:143.360000pt;}
.x36{left:144.320000pt;}
.x14{left:145.280000pt;}
.x31{left:146.880000pt;}
.x26{left:150.720000pt;}
.x4{left:152.640000pt;}
.x1{left:153.920000pt;}
.x35{left:155.520000pt;}
.x30{left:156.480000pt;}
.x28{left:159.040000pt;}
.xd{left:162.560000pt;}
.x9{left:163.520000pt;}
.x17{left:166.080000pt;}
.x8{left:167.040000pt;}
.x33{left:168.000000pt;}
.x37{left:169.280000pt;}
.x10{left:173.440000pt;}
.x27{left:175.040000pt;}
.x25{left:179.840000pt;}
.x1e{left:181.120000pt;}
.x24{left:182.080000pt;}
.x39{left:184.960000pt;}
.xb{left:186.240000pt;}
.x5{left:191.040000pt;}
.x18{left:198.080000pt;}
.x13{left:202.240000pt;}
.x1c{left:206.720000pt;}
.x3a{left:212.800000pt;}
.x29{left:214.400000pt;}
.x1a{left:217.280000pt;}
.xf{left:219.200000pt;}
.x23{left:223.040000pt;}
.x7{left:224.000000pt;}
.x38{left:224.960000pt;}
.x2c{left:233.600000pt;}
.x15{left:236.800000pt;}
.x6{left:238.400000pt;}
.x2e{left:242.880000pt;}
.x21{left:244.480000pt;}
.x34{left:251.840000pt;}
.x2a{left:253.760000pt;}
.x3e{left:266.880000pt;}
.x3b{left:268.800000pt;}
.x1f{left:270.400000pt;}
.xe{left:272.640000pt;}
.x11{left:275.840000pt;}
.x20{left:280.000000pt;}
.x2b{left:287.680000pt;}
.x42{left:293.120000pt;}
.x1d{left:294.080000pt;}
.x2d{left:297.600000pt;}
.x2f{left:298.880000pt;}
.x1b{left:300.480000pt;}
.x16{left:305.280000pt;}
.x3d{left:320.000000pt;}
.x41{left:322.560000pt;}
.x44{left:329.920000pt;}
.x22{left:331.520000pt;}
.x32{left:340.800000pt;}
.x3{left:412.160000pt;}
.x43{left:547.840000pt;}
.x3c{left:563.520000pt;}
.x40{left:565.440000pt;}
.xc{left:664.320000pt;}
.xa{left:670.400000pt;}
}




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