
    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_179f5880f65ca324d37e2b02.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_38412ce71dc0dbdf05dfe5b5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.894531;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_8a5d18aef2e4091c33d91da6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.012207;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_cb258d4383caf707fc14d9ba.woff')format("woff");}.ff4{font-family:ff4;line-height:0.998047;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_f0ecc50712af5240e02d64c5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.920898;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_841e90c2c37f065ea9fe577e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.738000;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_af204060532eaea29a83510b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.054688;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_7f74f80cffa2938338ed5249.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_fc91834d49911a87017c4cbf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.904785;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_42e3d94c2ff62d1cbd6681f8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.762207;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:ffb;src:url('chunks/assets/font_3641ab5a9dc028748cb5083e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.000000;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;}
.me{transform:matrix(0.217362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217362,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.217892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217892,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.218799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218799,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.219673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219673,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.220719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220719,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.221144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221144,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.221160,0.000000,-0.047008,0.245541,0,0);-ms-transform:matrix(0.221160,0.000000,-0.047008,0.245541,0,0);-webkit-transform:matrix(0.221160,0.000000,-0.047008,0.245541,0,0);}
.m10{transform:matrix(0.221617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221617,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.222609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222609,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.222858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222858,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.223143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223143,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.223226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223226,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.223289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223289,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.225176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225176,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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.114100px;}
.lsa{letter-spacing:0.228199px;}
.lsd{letter-spacing:0.286735px;}
.ls3{letter-spacing:0.443021px;}
.lsb{letter-spacing:0.446201px;}
.ls0{letter-spacing:0.449321px;}
.ls6{letter-spacing:0.450682px;}
.ls1{letter-spacing:0.452441px;}
.ls8{letter-spacing:0.460461px;}
.lsc{letter-spacing:0.835440px;}
.lse{letter-spacing:0.974539px;}
.ls9{letter-spacing:1.041714px;}
.ls7{letter-spacing:11.364505px;}
.ls4{letter-spacing:15.344004px;}
.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;}
}
.ws1{word-spacing:-99.612879px;}
.ws3{word-spacing:-72.396139px;}
.ws4{word-spacing:-52.116879px;}
.ws9{word-spacing:-44.544282px;}
.ws2{word-spacing:-40.980884px;}
.wse{word-spacing:-39.555323px;}
.ws5{word-spacing:-36.971685px;}
.wsa{word-spacing:-36.391025px;}
.ws7{word-spacing:-32.830856px;}
.ws0{word-spacing:-29.844738px;}
.ws10{word-spacing:-26.539712px;}
.ws13{word-spacing:-24.719638px;}
.ws8{word-spacing:-23.898128px;}
.ws14{word-spacing:-23.691678px;}
.wsd{word-spacing:-20.941123px;}
.wsf{word-spacing:-20.777177px;}
.wsb{word-spacing:-20.490442px;}
.ws12{word-spacing:-18.567254px;}
.ws6{word-spacing:-18.485843px;}
.ws11{word-spacing:-9.346590px;}
.wsc{word-spacing:0.000000px;}
._0{margin-left:-2.173181px;}
._2{margin-left:-1.153372px;}
._1{width:1.110983px;}
._4{width:2.138031px;}
._6{width:3.445273px;}
._5{width:4.531548px;}
._8{width:5.833763px;}
._9{width:7.814203px;}
._c{width:9.201708px;}
._15{width:10.207558px;}
._b{width:11.389333px;}
._7{width:13.264117px;}
._a{width:14.520455px;}
._d{width:16.205037px;}
._13{width:17.519189px;}
._12{width:18.821370px;}
._17{width:20.042464px;}
._e{width:21.883349px;}
._f{width:23.039242px;}
._16{width:24.792871px;}
._11{width:26.757659px;}
._10{width:27.817355px;}
._14{width:33.241081px;}
._3{width:1675.918806px;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.689416px;}
.fs1{font-size:59.689476px;}
.fs7{font-size:73.943370px;}
.fs8{font-size:75.286177px;}
.fs3{font-size:81.961767px;}
.fs2{font-size:89.088564px;}
.fs6{font-size:104.233758px;}
.fs5{font-size:118.487953px;}
.fs4{font-size:163.032535px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.120938px;}
.y4{bottom:5.790239px;}
.y3{bottom:71.668080px;}
.y5{bottom:77.337382px;}
.y2{bottom:82.904779px;}
.y22{bottom:142.816705px;}
.yac{bottom:149.720453px;}
.y4e{bottom:151.501702px;}
.y95{bottom:160.858998px;}
.y6c{bottom:161.969898px;}
.y21{bottom:166.424896px;}
.yd8{bottom:167.540295px;}
.yab{bottom:173.106343px;}
.y4d{bottom:174.888342px;}
.y6b{bottom:185.355188px;}
.yd7{bottom:188.920987px;}
.yd6{bottom:188.922037px;}
.y20{bottom:189.810187px;}
.yaa{bottom:196.491634px;}
.y4c{bottom:198.496533px;}
.y94{bottom:208.740329px;}
.y6a{bottom:208.965479px;}
.yd5{bottom:210.301978px;}
.yd4{bottom:210.302278px;}
.y1f{bottom:213.196827px;}
.ya9{bottom:220.101924px;}
.y4b{bottom:221.883174px;}
.yd3{bottom:231.460670px;}
.y93{bottom:232.124870px;}
.y69{bottom:232.350020px;}
.y1e{bottom:236.805018px;}
.ya8{bottom:243.486465px;}
.ya7{bottom:243.487665px;}
.y4a{bottom:245.268464px;}
.yd2{bottom:252.841961px;}
.yd1{bottom:252.843461px;}
.y92{bottom:255.511510px;}
.y68{bottom:255.960310px;}
.y1d{bottom:260.191658px;}
.ya6{bottom:267.096456px;}
.y49{bottom:268.876655px;}
.yd0{bottom:274.224153px;}
.y91{bottom:279.120301px;}
.y67{bottom:279.345601px;}
.y1c{bottom:283.800449px;}
.ya5{bottom:290.481746px;}
.y48{bottom:292.263296px;}
.yce{bottom:295.604244px;}
.ycf{bottom:295.605444px;}
.y90{bottom:302.506191px;}
.y66{bottom:302.731491px;}
.y1b{bottom:307.186340px;}
.ya4{bottom:313.867637px;}
.y47{bottom:315.871486px;}
.ycd{bottom:316.984936px;}
.y8f{bottom:326.114982px;}
.y65{bottom:326.340282px;}
.y1a{bottom:330.571630px;}
.ya3{bottom:337.476427px;}
.y46{bottom:339.258127px;}
.y8e{bottom:349.500273px;}
.y64{bottom:349.725573px;}
.ycc{bottom:349.948922px;}
.y19{bottom:354.180421px;}
.y45{bottom:362.866917px;}
.ya2{bottom:372.219414px;}
.y8d{bottom:372.886163px;}
.y63{bottom:373.335113px;}
.y101{bottom:375.337762px;}
.y18{bottom:388.924907px;}
.y8c{bottom:396.494954px;}
.y62{bottom:396.720404px;}
.ycb{bottom:397.609753px;}
.y44{bottom:397.611403px;}
.y100{bottom:398.723053px;}
.y8b{bottom:419.881594px;}
.yca{bottom:421.220044px;}
.yff{bottom:422.109694px;}
.y61{bottom:431.463390px;}
.y17{bottom:436.141888px;}
.y8a{bottom:443.489785px;}
.yc9{bottom:444.604585px;}
.y43{bottom:445.268934px;}
.yfe{bottom:445.717884px;}
.y89{bottom:466.876426px;}
.yc8{bottom:467.991225px;}
.y42{bottom:468.655575px;}
.yfd{bottom:468.882675px;}
.y16{bottom:470.218874px;}
.y60{bottom:479.125571px;}
.y15{bottom:489.595567px;}
.yfc{bottom:490.040466px;}
.y88{bottom:490.261716px;}
.yc7{bottom:491.600016px;}
.y41{bottom:492.264366px;}
.y5f{bottom:502.735111px;}
.y14{bottom:509.195159px;}
.yfb{bottom:511.421158px;}
.y87{bottom:513.869907px;}
.ya1{bottom:513.871257px;}
.yc6{bottom:514.984556px;}
.y40{bottom:515.648906px;}
.y5e{bottom:526.120402px;}
.y13{bottom:528.571851px;}
.yfa{bottom:532.801849px;}
.y86{bottom:537.256548px;}
.yc5{bottom:538.594847px;}
.y3f{bottom:539.259197px;}
.y5d{bottom:549.729193px;}
.yf9{bottom:553.738841px;}
.y12{bottom:559.306839px;}
.y85{bottom:560.864738px;}
.y3e{bottom:562.644487px;}
.y5c{bottom:573.115083px;}
.yc4{bottom:573.337833px;}
.yf8{bottom:575.565332px;}
.y84{bottom:584.251379px;}
.y3d{bottom:586.031128px;}
.y11{bottom:589.819977px;}
.y5b{bottom:596.500374px;}
.yf7{bottom:597.168324px;}
.y83{bottom:607.636669px;}
.y10{bottom:609.418819px;}
.y3c{bottom:609.639319px;}
.y5a{bottom:620.110664px;}
.yf6{bottom:620.777114px;}
.yc3{bottom:621.000764px;}
.y82{bottom:631.244860px;}
.ya0{bottom:631.246960px;}
.y3b{bottom:633.024609px;}
.yf{bottom:639.933306px;}
.ye{bottom:639.933456px;}
.y59{bottom:643.495205px;}
.yf5{bottom:644.163755px;}
.yc1{bottom:644.385005px;}
.yc2{bottom:644.385305px;}
.y81{bottom:654.631501px;}
.y3a{bottom:656.634150px;}
.yd{bottom:659.532299px;}
.y58{bottom:667.105496px;}
.yf4{bottom:667.548295px;}
.ybf{bottom:667.992295px;}
.yc0{bottom:667.993795px;}
.y80{bottom:678.240291px;}
.y9f{bottom:678.241791px;}
.y39{bottom:680.019440px;}
.y57{bottom:690.490786px;}
.yc{bottom:691.156786px;}
.yf3{bottom:691.156936px;}
.ybe{bottom:691.378936px;}
.y7f{bottom:701.626182px;}
.y38{bottom:703.406081px;}
.y9e{bottom:712.984777px;}
.yf2{bottom:714.543577px;}
.ybd{bottom:714.987126px;}
.y7e{bottom:725.011472px;}
.y56{bottom:725.233772px;}
.y37{bottom:727.014272px;}
.yf1{bottom:738.151767px;}
.yf0{bottom:738.151917px;}
.ybc{bottom:738.373767px;}
.y7d{bottom:748.621763px;}
.y36{bottom:750.400912px;}
.y9d{bottom:760.644408px;}
.yef{bottom:761.092758px;}
.ybb{bottom:761.759058px;}
.yb{bottom:761.761758px;}
.y55{bottom:773.119753px;}
.y35{bottom:774.009703px;}
.y7c{bottom:783.364749px;}
.y9c{bottom:784.028949px;}
.yee{bottom:784.255749px;}
.yba{bottom:785.367248px;}
.y34{bottom:797.394243px;}
.yed{bottom:805.637040px;}
.y9b{bottom:807.639239px;}
.yb9{bottom:808.753889px;}
.ya{bottom:815.661236px;}
.y54{bottom:820.779384px;}
.y33{bottom:820.780884px;}
.yec{bottom:827.017732px;}
.y9a{bottom:831.023780px;}
.y7b{bottom:831.025880px;}
.yb8{bottom:832.362080px;}
.y53{bottom:844.387575px;}
.y32{bottom:844.389075px;}
.yeb{bottom:848.176723px;}
.yea{bottom:848.177923px;}
.y7a{bottom:854.634071px;}
.yb7{bottom:855.748720px;}
.y52{bottom:867.774215px;}
.y31{bottom:867.775715px;}
.ye9{bottom:869.559215px;}
.y99{bottom:878.019361px;}
.y79{bottom:878.020711px;}
.yb6{bottom:879.357511px;}
.ye8{bottom:890.940206px;}
.y51{bottom:891.383006px;}
.y30{bottom:891.384506px;}
.y98{bottom:901.627552px;}
.y78{bottom:901.628902px;}
.yb5{bottom:902.744151px;}
.ye7{bottom:912.321498px;}
.y50{bottom:914.767547px;}
.y2f{bottom:914.771147px;}
.y9{bottom:915.661696px;}
.y77{bottom:925.014192px;}
.yb4{bottom:926.128692px;}
.yb3{bottom:926.129892px;}
.ye6{bottom:933.702189px;}
.ye5{bottom:933.703089px;}
.y4f{bottom:938.154187px;}
.y2d{bottom:938.155387px;}
.y2e{bottom:938.155687px;}
.y8{bottom:938.601187px;}
.y97{bottom:948.399483px;}
.y76{bottom:948.400833px;}
.yb1{bottom:949.738533px;}
.yb2{bottom:949.738683px;}
.ye4{bottom:955.083030px;}
.y2b{bottom:961.762978px;}
.y2c{bottom:961.764178px;}
.y75{bottom:972.009024px;}
.yb0{bottom:973.123073px;}
.ye3{bottom:976.242172px;}
.ye2{bottom:976.242472px;}
.y2a{bottom:985.148868px;}
.y96{bottom:995.394314px;}
.y74{bottom:995.395664px;}
.yaf{bottom:996.733364px;}
.ye1{bottom:997.623163px;}
.y29{bottom:1008.757659px;}
.y72{bottom:1019.004605px;}
.y73{bottom:1019.005655px;}
.yae{bottom:1020.118654px;}
.y28{bottom:1032.144300px;}
.y71{bottom:1042.389145px;}
.yad{bottom:1054.861641px;}
.y27{bottom:1055.752490px;}
.y70{bottom:1065.775786px;}
.ye0{bottom:1065.997636px;}
.ydf{bottom:1066.000336px;}
.y26{bottom:1079.139131px;}
.y7{bottom:1080.030880px;}
.ydd{bottom:1087.381027px;}
.yde{bottom:1087.381627px;}
.y6f{bottom:1089.384577px;}
.y25{bottom:1102.524421px;}
.ydc{bottom:1108.761719px;}
.y6e{bottom:1112.769117px;}
.y24{bottom:1126.133212px;}
.y6{bottom:1129.474611px;}
.ydb{bottom:1129.920110px;}
.yda{bottom:1129.920410px;}
.y6d{bottom:1147.515103px;}
.y23{bottom:1149.519103px;}
.yd9{bottom:1151.301102px;}
.h12{height:0.000000px;}
.h3{height:24.499620px;}
.h13{height:50.691647px;}
.hc{height:50.873039px;}
.hb{height:52.749641px;}
.h10{height:56.188633px;}
.h7{height:56.389696px;}
.h6{height:58.469796px;}
.h4{height:59.750448px;}
.h2{height:61.292932px;}
.h11{height:62.292395px;}
.he{height:63.553903px;}
.hd{height:64.880975px;}
.hf{height:71.916648px;}
.ha{height:75.986817px;}
.h8{height:86.725313px;}
.h9{height:86.970157px;}
.h5{height:119.328989px;}
.h1{height:1262.879062px;}
.h0{height:1263.000000px;}
.w2{width:8.910000px;}
.w1{width:868.104000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:12.168288px;}
.x2{left:79.216775px;}
.x12{left:85.229973px;}
.x20{left:91.689570px;}
.x35{left:93.025470px;}
.x7{left:105.498265px;}
.x5{left:117.525110px;}
.xe{left:118.861160px;}
.x19{left:164.296141px;}
.x8{left:173.651638px;}
.x2e{left:181.445635px;}
.x9{left:182.560134px;}
.xa{left:193.918130px;}
.xb{left:223.763618px;}
.x13{left:235.790613px;}
.x2b{left:252.271106px;}
.x2c{left:256.504105px;}
.x2d{left:260.735603px;}
.x1a{left:280.558095px;}
.x22{left:287.239092px;}
.x30{left:312.629582px;}
.x21{left:331.337575px;}
.x6{left:336.459078px;}
.x29{left:338.242072px;}
.x27{left:343.364570px;}
.x32{left:376.772556px;}
.x36{left:406.840044px;}
.x34{left:410.182043px;}
.xf{left:417.530540px;}
.x31{left:420.872539px;}
.x1b{left:428.668036px;}
.x1f{left:437.131032px;}
.x2f{left:444.481029px;}
.x1d{left:468.535020px;}
.x33{left:477.889016px;}
.x10{left:548.268988px;}
.x23{left:577.890976px;}
.x37{left:580.563975px;}
.xc{left:599.940967px;}
.xd{left:603.726966px;}
.x11{left:613.304462px;}
.x1e{left:623.325958px;}
.x28{left:635.130953px;}
.x38{left:640.251580px;}
.x39{left:645.819620px;}
.x1c{left:655.620945px;}
.x14{left:657.848444px;}
.x17{left:661.634442px;}
.x2a{left:706.847424px;}
.x24{left:719.096419px;}
.x25{left:723.327918px;}
.x26{left:728.673916px;}
.x15{left:747.381908px;}
.x18{left:770.990399px;}
.x16{left:780.344395px;}
.x4{left:789.254391px;}
.x3{left:792.513000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.101422pt;}
.lsa{letter-spacing:0.202844pt;}
.lsd{letter-spacing:0.254876pt;}
.ls3{letter-spacing:0.393796pt;}
.lsb{letter-spacing:0.396623pt;}
.ls0{letter-spacing:0.399396pt;}
.ls6{letter-spacing:0.400606pt;}
.ls1{letter-spacing:0.402169pt;}
.ls8{letter-spacing:0.409299pt;}
.lsc{letter-spacing:0.742613pt;}
.lse{letter-spacing:0.866257pt;}
.ls9{letter-spacing:0.925968pt;}
.ls7{letter-spacing:10.101783pt;}
.ls4{letter-spacing:13.639115pt;}
.ws1{word-spacing:-88.544781pt;}
.ws3{word-spacing:-64.352124pt;}
.ws4{word-spacing:-46.326115pt;}
.ws9{word-spacing:-39.594917pt;}
.ws2{word-spacing:-36.427452pt;}
.wse{word-spacing:-35.160287pt;}
.ws5{word-spacing:-32.863720pt;}
.wsa{word-spacing:-32.347577pt;}
.ws7{word-spacing:-29.182984pt;}
.ws0{word-spacing:-26.528656pt;}
.ws10{word-spacing:-23.590855pt;}
.ws13{word-spacing:-21.973012pt;}
.ws8{word-spacing:-21.242780pt;}
.ws14{word-spacing:-21.059269pt;}
.wsd{word-spacing:-18.614332pt;}
.wsf{word-spacing:-18.468602pt;}
.wsb{word-spacing:-18.213726pt;}
.ws12{word-spacing:-16.504226pt;}
.ws6{word-spacing:-16.431860pt;}
.ws11{word-spacing:-8.308080pt;}
.wsc{word-spacing:0.000000pt;}
._0{margin-left:-1.931716pt;}
._2{margin-left:-1.025220pt;}
._1{width:0.987540pt;}
._4{width:1.900472pt;}
._6{width:3.062465pt;}
._5{width:4.028043pt;}
._8{width:5.185567pt;}
._9{width:6.945958pt;}
._c{width:8.179296pt;}
._15{width:9.073385pt;}
._b{width:10.123852pt;}
._7{width:11.790326pt;}
._a{width:12.907072pt;}
._d{width:14.404477pt;}
._13{width:15.572612pt;}
._12{width:16.730107pt;}
._17{width:17.815524pt;}
._e{width:19.451866pt;}
._f{width:20.479326pt;}
._16{width:22.038107pt;}
._11{width:23.784586pt;}
._10{width:24.726538pt;}
._14{width:29.547628pt;}
._3{width:1489.705606pt;}
.fs0{font-size:53.057259pt;}
.fs1{font-size:53.057312pt;}
.fs7{font-size:65.727440pt;}
.fs8{font-size:66.921046pt;}
.fs3{font-size:72.854904pt;}
.fs2{font-size:79.189835pt;}
.fs6{font-size:92.652230pt;}
.fs5{font-size:105.322625pt;}
.fs4{font-size:144.917809pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.107500pt;}
.y4{bottom:5.146879pt;}
.y3{bottom:63.704960pt;}
.y5{bottom:68.744339pt;}
.y2{bottom:73.693137pt;}
.y22{bottom:126.948183pt;}
.yac{bottom:133.084847pt;}
.y4e{bottom:134.668179pt;}
.y95{bottom:142.985776pt;}
.y6c{bottom:143.973242pt;}
.y21{bottom:147.933241pt;}
.yd8{bottom:148.924707pt;}
.yab{bottom:153.872305pt;}
.y4d{bottom:155.456304pt;}
.y6b{bottom:164.760167pt;}
.yd7{bottom:167.929766pt;}
.yd6{bottom:167.930699pt;}
.y20{bottom:168.720166pt;}
.yaa{bottom:174.659230pt;}
.y4c{bottom:176.441363pt;}
.y94{bottom:185.546959pt;}
.y6a{bottom:185.747092pt;}
.yd5{bottom:186.935092pt;}
.yd4{bottom:186.935359pt;}
.y1f{bottom:189.508291pt;}
.ya9{bottom:195.646155pt;}
.y4b{bottom:197.229488pt;}
.yd3{bottom:205.742818pt;}
.y93{bottom:206.333217pt;}
.y69{bottom:206.533351pt;}
.y1e{bottom:210.493349pt;}
.ya8{bottom:216.432413pt;}
.ya7{bottom:216.433480pt;}
.y4a{bottom:218.016413pt;}
.yd2{bottom:224.748410pt;}
.yd1{bottom:224.749743pt;}
.y92{bottom:227.121342pt;}
.y68{bottom:227.520276pt;}
.y1d{bottom:231.281474pt;}
.ya6{bottom:237.419072pt;}
.y49{bottom:239.001471pt;}
.yd0{bottom:243.754802pt;}
.y91{bottom:248.106934pt;}
.y67{bottom:248.307201pt;}
.y1c{bottom:252.267066pt;}
.ya5{bottom:258.205997pt;}
.y48{bottom:259.789596pt;}
.yce{bottom:262.759328pt;}
.ycf{bottom:262.760395pt;}
.y90{bottom:268.894392pt;}
.y66{bottom:269.094659pt;}
.y1b{bottom:273.054524pt;}
.ya4{bottom:278.993455pt;}
.y47{bottom:280.774654pt;}
.ycd{bottom:281.764387pt;}
.y8f{bottom:289.879984pt;}
.y65{bottom:290.080251pt;}
.y1a{bottom:293.841449pt;}
.ya3{bottom:299.979047pt;}
.y46{bottom:301.562779pt;}
.y8e{bottom:310.666909pt;}
.y64{bottom:310.867176pt;}
.ycc{bottom:311.065709pt;}
.y19{bottom:314.827041pt;}
.y45{bottom:322.548371pt;}
.ya2{bottom:330.861701pt;}
.y8d{bottom:331.454367pt;}
.y63{bottom:331.853434pt;}
.y101{bottom:333.633567pt;}
.y18{bottom:345.711028pt;}
.y8c{bottom:352.439959pt;}
.y62{bottom:352.640359pt;}
.ycb{bottom:353.430892pt;}
.y44{bottom:353.432359pt;}
.y100{bottom:354.420492pt;}
.y8b{bottom:373.228084pt;}
.yca{bottom:374.417817pt;}
.yff{bottom:375.208617pt;}
.y61{bottom:383.523013pt;}
.y17{bottom:387.681678pt;}
.y8a{bottom:394.213142pt;}
.yc9{bottom:395.204075pt;}
.y43{bottom:395.794608pt;}
.yfe{bottom:396.193675pt;}
.y89{bottom:415.001267pt;}
.yc8{bottom:415.992200pt;}
.y42{bottom:416.582733pt;}
.yfd{bottom:416.784600pt;}
.y16{bottom:417.972333pt;}
.y60{bottom:425.889396pt;}
.y15{bottom:435.196059pt;}
.yfc{bottom:435.591526pt;}
.y88{bottom:435.788192pt;}
.yc7{bottom:436.977792pt;}
.y41{bottom:437.568325pt;}
.y5f{bottom:446.875655pt;}
.y14{bottom:452.617919pt;}
.yfb{bottom:454.596585pt;}
.y87{bottom:456.773251pt;}
.ya1{bottom:456.774451pt;}
.yc6{bottom:457.764050pt;}
.y40{bottom:458.354583pt;}
.y5e{bottom:467.662580pt;}
.y13{bottom:469.841645pt;}
.yfa{bottom:473.601644pt;}
.y86{bottom:477.561376pt;}
.yc5{bottom:478.750975pt;}
.y3f{bottom:479.341508pt;}
.y5d{bottom:488.648171pt;}
.yf9{bottom:492.212303pt;}
.y12{bottom:497.161634pt;}
.y85{bottom:498.546434pt;}
.y3e{bottom:500.128433pt;}
.y5c{bottom:509.435630pt;}
.yc4{bottom:509.633629pt;}
.yf8{bottom:511.613629pt;}
.y84{bottom:519.334559pt;}
.y3d{bottom:520.916558pt;}
.y11{bottom:524.284424pt;}
.y5b{bottom:530.222555pt;}
.yf7{bottom:530.816288pt;}
.y83{bottom:540.121484pt;}
.y10{bottom:541.705617pt;}
.y3c{bottom:541.901617pt;}
.y5a{bottom:551.209479pt;}
.yf6{bottom:551.801879pt;}
.yc3{bottom:552.000679pt;}
.y82{bottom:561.106542pt;}
.ya0{bottom:561.108409pt;}
.y3b{bottom:562.688542pt;}
.yf{bottom:568.829606pt;}
.ye{bottom:568.829739pt;}
.y59{bottom:571.995738pt;}
.yf5{bottom:572.590004pt;}
.yc1{bottom:572.786671pt;}
.yc2{bottom:572.786938pt;}
.y81{bottom:581.894667pt;}
.y3a{bottom:583.674800pt;}
.yd{bottom:586.250932pt;}
.y58{bottom:592.982663pt;}
.yf4{bottom:593.376263pt;}
.ybf{bottom:593.770929pt;}
.yc0{bottom:593.772262pt;}
.y80{bottom:602.880259pt;}
.y9f{bottom:602.881592pt;}
.y39{bottom:604.461725pt;}
.y57{bottom:613.769588pt;}
.yc{bottom:614.361588pt;}
.yf3{bottom:614.361721pt;}
.ybe{bottom:614.559054pt;}
.y7f{bottom:623.667717pt;}
.y38{bottom:625.249850pt;}
.y9e{bottom:633.764246pt;}
.yf2{bottom:635.149846pt;}
.ybd{bottom:635.544112pt;}
.y7e{bottom:644.454642pt;}
.y56{bottom:644.652242pt;}
.y37{bottom:646.234908pt;}
.yf1{bottom:656.134904pt;}
.yf0{bottom:656.135038pt;}
.ybc{bottom:656.332237pt;}
.y7d{bottom:665.441567pt;}
.y36{bottom:667.023033pt;}
.y9d{bottom:676.128363pt;}
.yef{bottom:676.526896pt;}
.ybb{bottom:677.119162pt;}
.yb{bottom:677.121562pt;}
.y55{bottom:687.217558pt;}
.y35{bottom:688.008625pt;}
.y7c{bottom:696.324221pt;}
.y9c{bottom:696.914621pt;}
.yee{bottom:697.116221pt;}
.yba{bottom:698.104221pt;}
.y34{bottom:708.794883pt;}
.yed{bottom:716.121814pt;}
.y9b{bottom:717.901546pt;}
.yb9{bottom:718.892346pt;}
.ya{bottom:725.032210pt;}
.y54{bottom:729.581675pt;}
.y33{bottom:729.583008pt;}
.yec{bottom:735.126873pt;}
.y9a{bottom:738.687804pt;}
.y7b{bottom:738.689671pt;}
.yb8{bottom:739.877404pt;}
.y53{bottom:750.566733pt;}
.y32{bottom:750.568066pt;}
.yeb{bottom:753.934865pt;}
.yea{bottom:753.935932pt;}
.y7a{bottom:759.674729pt;}
.yb7{bottom:760.665529pt;}
.y52{bottom:771.354858pt;}
.y31{bottom:771.356191pt;}
.ye9{bottom:772.941524pt;}
.y99{bottom:780.461654pt;}
.y79{bottom:780.462854pt;}
.yb6{bottom:781.651121pt;}
.ye8{bottom:791.946850pt;}
.y51{bottom:792.340450pt;}
.y30{bottom:792.341783pt;}
.y98{bottom:801.446713pt;}
.y78{bottom:801.447913pt;}
.yb5{bottom:802.439246pt;}
.ye7{bottom:810.952442pt;}
.y50{bottom:813.126708pt;}
.y2f{bottom:813.129908pt;}
.y9{bottom:813.921508pt;}
.y77{bottom:822.234838pt;}
.yb4{bottom:823.225504pt;}
.yb3{bottom:823.226571pt;}
.ye6{bottom:829.957501pt;}
.ye5{bottom:829.958301pt;}
.y4f{bottom:833.914833pt;}
.y2d{bottom:833.915900pt;}
.y2e{bottom:833.916166pt;}
.y8{bottom:834.312166pt;}
.y97{bottom:843.021763pt;}
.y76{bottom:843.022963pt;}
.yb1{bottom:844.212029pt;}
.yb2{bottom:844.212162pt;}
.ye4{bottom:848.962694pt;}
.y2b{bottom:854.900425pt;}
.y2c{bottom:854.901491pt;}
.y75{bottom:864.008021pt;}
.yb0{bottom:864.998287pt;}
.ye3{bottom:867.770820pt;}
.ye2{bottom:867.771086pt;}
.y2a{bottom:875.687883pt;}
.y96{bottom:884.794946pt;}
.y74{bottom:884.796146pt;}
.yaf{bottom:885.985212pt;}
.ye1{bottom:886.776145pt;}
.y29{bottom:896.673475pt;}
.y72{bottom:905.781871pt;}
.y73{bottom:905.782804pt;}
.yae{bottom:906.772137pt;}
.y28{bottom:917.461600pt;}
.y71{bottom:926.568129pt;}
.yad{bottom:937.654792pt;}
.y27{bottom:938.446658pt;}
.y70{bottom:947.356254pt;}
.ye0{bottom:947.553454pt;}
.ydf{bottom:947.555854pt;}
.y26{bottom:959.234783pt;}
.y7{bottom:960.027449pt;}
.ydd{bottom:966.560913pt;}
.yde{bottom:966.561447pt;}
.y6f{bottom:968.341846pt;}
.y25{bottom:980.021708pt;}
.ydc{bottom:985.565972pt;}
.y6e{bottom:989.128104pt;}
.y24{bottom:1001.007300pt;}
.y6{bottom:1003.977432pt;}
.ydb{bottom:1004.373432pt;}
.yda{bottom:1004.373698pt;}
.y6d{bottom:1020.013425pt;}
.y23{bottom:1021.794758pt;}
.yd9{bottom:1023.378757pt;}
.h12{height:0.000000pt;}
.h3{height:21.777440pt;}
.h13{height:45.059241pt;}
.hc{height:45.220479pt;}
.hb{height:46.888570pt;}
.h10{height:49.945452pt;}
.h7{height:50.124174pt;}
.h6{height:51.973152pt;}
.h4{height:53.111510pt;}
.h2{height:54.482606pt;}
.h11{height:55.371017pt;}
.he{height:56.492358pt;}
.hd{height:57.671978pt;}
.hf{height:63.925910pt;}
.ha{height:67.543837pt;}
.h8{height:77.089167pt;}
.h9{height:77.306806pt;}
.h5{height:106.070213pt;}
.h1{height:1122.559167pt;}
.h0{height:1122.666667pt;}
.w2{width:7.920000pt;}
.w1{width:771.648000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:10.816256pt;}
.x2{left:70.414912pt;}
.x12{left:75.759976pt;}
.x20{left:81.501840pt;}
.x35{left:82.689307pt;}
.x7{left:93.776235pt;}
.x5{left:104.466765pt;}
.xe{left:105.654364pt;}
.x19{left:146.041015pt;}
.x8{left:154.357011pt;}
.x2e{left:161.285008pt;}
.x9{left:162.275675pt;}
.xa{left:172.371671pt;}
.xb{left:198.900993pt;}
.x13{left:209.591656pt;}
.x2b{left:224.240983pt;}
.x2c{left:228.003648pt;}
.x2d{left:231.764980pt;}
.x1a{left:249.384973pt;}
.x22{left:255.323638pt;}
.x30{left:277.892962pt;}
.x21{left:294.522289pt;}
.x6{left:299.074736pt;}
.x29{left:300.659619pt;}
.x27{left:305.212951pt;}
.x32{left:334.908939pt;}
.x36{left:361.635595pt;}
.x34{left:364.606260pt;}
.xf{left:371.138258pt;}
.x31{left:374.108923pt;}
.x1b{left:381.038254pt;}
.x1f{left:388.560918pt;}
.x2f{left:395.094248pt;}
.x1d{left:416.475573pt;}
.x33{left:424.790236pt;}
.x10{left:487.350211pt;}
.x23{left:513.680868pt;}
.x37{left:516.056867pt;}
.xc{left:533.280860pt;}
.xd{left:536.646192pt;}
.x11{left:545.159522pt;}
.x1e{left:554.067518pt;}
.x28{left:564.560847pt;}
.x38{left:569.112515pt;}
.x39{left:574.061884pt;}
.x1c{left:582.774173pt;}
.x14{left:584.754172pt;}
.x17{left:588.119504pt;}
.x2a{left:628.308822pt;}
.x24{left:639.196817pt;}
.x25{left:642.958149pt;}
.x26{left:647.710147pt;}
.x15{left:664.339474pt;}
.x18{left:685.324799pt;}
.x16{left:693.639462pt;}
.x4{left:701.559459pt;}
.x3{left:704.456000pt;}
}

