
    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_6f5ee6464be2ad5e84dad7ac.woff')format("woff");}.ff1{font-family:ff1;line-height:1.117000;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_3c17fe14b99e8bbd92183892.woff')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_e5a084f18ab868668876a466.woff')format("woff");}.ff3{font-family:ff3;line-height:0.948000;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_7f5871f92d231b707e0ffd4e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.150000;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_79c3bec655c4c9c89f0ace72.woff')format("woff");}.ff5{font-family:ff5;line-height:1.158203;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_26b545e8d71136668b9f147e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.181641;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_7205215c4993a28ca1bbc42d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.229980;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_7d2d6792d3b6896bfea2e17f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.726000;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_054630b7b1333949db83c0e7.woff')format("woff");}.ff9{font-family:ff9;line-height:1.181641;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_4a43b411fc8bde88b6a6d77c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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_aae4d7f42d8410a23056539f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.113281;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:ffc;src:url('chunks/assets/font_ffa77d86db3f9b9ef14ed6d6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.728027;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:ffd;src:url('chunks/assets/font_afe9304cad32f8b4e92995f0.woff')format("woff");}.ffd{font-family:ffd;line-height:1.106934;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:ffe;src:url('chunks/assets/font_3ff13ec0273e5e79da3c1653.woff')format("woff");}.ffe{font-family:ffe;line-height:0.923340;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:fff;src:url('chunks/assets/font_f4ebb7c1b10df6efbed6fc81.woff')format("woff");}.fff{font-family:fff;line-height:1.120117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.984000px;}
.v1{vertical-align:18.981000px;}
.v3{vertical-align:28.800000px;}
.v4{vertical-align:34.015800px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008400px;}
.ls2{letter-spacing:0.570000px;}
.ls0{letter-spacing:1.140000px;}
.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;}
}
.wsc{word-spacing:-18.000000px;}
.ws1{word-spacing:-14.250000px;}
.ws2{word-spacing:-8.307750px;}
.ws4{word-spacing:-7.779552px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:77.299200px;}
.ws9{word-spacing:104.492400px;}
.wsa{word-spacing:147.540600px;}
.ws3{word-spacing:233.692800px;}
.ws7{word-spacing:268.933200px;}
.ws5{word-spacing:282.740400px;}
.ws6{word-spacing:344.818200px;}
.wsb{word-spacing:374.389200px;}
._25{margin-left:-13.566000px;}
._a{margin-left:-8.400000px;}
._10{margin-left:-6.612000px;}
._1{margin-left:-4.740000px;}
._2{margin-left:-3.648000px;}
._0{margin-left:-1.728000px;}
._3{width:1.311000px;}
._5{width:2.679000px;}
._4{width:4.047000px;}
._8{width:5.529000px;}
._6{width:6.612000px;}
._7{width:7.752000px;}
._9{width:9.063000px;}
._c{width:10.944000px;}
._d{width:12.312000px;}
._b{width:14.136000px;}
._f{width:15.903000px;}
._e{width:17.328000px;}
._12{width:20.121000px;}
._11{width:23.313000px;}
._1e{width:156.815400px;}
._1b{width:162.751800px;}
._1d{width:206.063400px;}
._1f{width:219.305400px;}
._1c{width:243.434400px;}
._21{width:268.932600px;}
._13{width:276.961392px;}
._1a{width:291.999600px;}
._14{width:341.757600px;}
._20{width:344.265600px;}
._22{width:353.357400px;}
._15{width:355.494000px;}
._19{width:358.162200px;}
._16{width:364.281000px;}
._24{width:687.583200px;}
._23{width:777.825600px;}
._17{width:782.423400px;}
._18{width:1288.203600px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:27.984000px;}
.fs7{font-size:33.231000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.003000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fsa{font-size:72.000000px;}
.fs4{font-size:90.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:31.500000px;}
.yb3{bottom:65.767800px;}
.y2{bottom:65.767950px;}
.y3d{bottom:65.768100px;}
.y159{bottom:65.768250px;}
.y2a{bottom:114.543300px;}
.y3c{bottom:115.668300px;}
.y106{bottom:116.440950px;}
.yb2{bottom:117.328800px;}
.y196{bottom:119.594250px;}
.y1cf{bottom:119.640450px;}
.y140{bottom:119.789100px;}
.y158{bottom:119.835900px;}
.yb0{bottom:127.457250px;}
.y77{bottom:128.333250px;}
.y1f0{bottom:128.340300px;}
.y29{bottom:131.793300px;}
.y3b{bottom:132.918300px;}
.y195{bottom:136.844250px;}
.y13f{bottom:137.039100px;}
.y1ce{bottom:137.040600px;}
.y157{bottom:137.085900px;}
.yaf{bottom:144.707250px;}
.y105{bottom:144.957600px;}
.y76{bottom:145.590000px;}
.y1ef{bottom:145.590300px;}
.y28{bottom:149.043300px;}
.y3a{bottom:150.168300px;}
.y194{bottom:154.094250px;}
.y13e{bottom:154.139100px;}
.y156{bottom:154.335900px;}
.y1cd{bottom:154.440600px;}
.yae{bottom:161.957250px;}
.y104{bottom:161.965500px;}
.y75{bottom:162.840000px;}
.y1ee{bottom:162.840300px;}
.y27{bottom:166.293300px;}
.y39{bottom:167.418300px;}
.y13d{bottom:171.239100px;}
.y193{bottom:171.344250px;}
.y155{bottom:171.585900px;}
.y1cc{bottom:171.840450px;}
.y103{bottom:178.973400px;}
.yad{bottom:179.207250px;}
.y74{bottom:180.090000px;}
.y1ed{bottom:180.090300px;}
.y102{bottom:180.277350px;}
.y26{bottom:183.543300px;}
.y38{bottom:184.668300px;}
.y101{bottom:187.477350px;}
.y13c{bottom:188.339100px;}
.y192{bottom:188.594250px;}
.y154{bottom:188.835900px;}
.y1cb{bottom:189.240450px;}
.yac{bottom:196.457250px;}
.y73{bottom:197.340000px;}
.y1ec{bottom:197.340300px;}
.y25{bottom:200.793300px;}
.y13b{bottom:205.439100px;}
.y1ff{bottom:205.522950px;}
.y191{bottom:205.844250px;}
.y153{bottom:206.085900px;}
.y1ca{bottom:206.640450px;}
.y37{bottom:210.422250px;}
.y100{bottom:212.989200px;}
.yab{bottom:213.707250px;}
.y72{bottom:214.590000px;}
.y1eb{bottom:214.590300px;}
.y24{bottom:218.043300px;}
.y13a{bottom:222.539100px;}
.y190{bottom:223.094250px;}
.y152{bottom:223.335900px;}
.y1c9{bottom:224.040600px;}
.yff{bottom:229.996950px;}
.yaa{bottom:230.957250px;}
.y71{bottom:231.840000px;}
.y1ea{bottom:231.840300px;}
.y23{bottom:235.293300px;}
.y139{bottom:239.639100px;}
.y18f{bottom:240.344250px;}
.y151{bottom:240.585900px;}
.y1c8{bottom:241.440600px;}
.y36{bottom:244.922250px;}
.yfe{bottom:247.275900px;}
.ya9{bottom:248.207250px;}
.y70{bottom:249.090000px;}
.y1e9{bottom:249.090300px;}
.y209{bottom:252.150300px;}
.y22{bottom:252.543300px;}
.y138{bottom:256.739100px;}
.yfd{bottom:257.063400px;}
.y18e{bottom:257.594250px;}
.y150{bottom:257.835900px;}
.y1c7{bottom:258.840450px;}
.y35{bottom:262.172250px;}
.yfc{bottom:264.263400px;}
.ya8{bottom:265.457250px;}
.y6f{bottom:266.340000px;}
.y1e8{bottom:266.340300px;}
.y21{bottom:269.793300px;}
.y207{bottom:273.750300px;}
.y137{bottom:273.839100px;}
.y18d{bottom:274.844250px;}
.y14f{bottom:275.085900px;}
.y1c6{bottom:276.240600px;}
.y34{bottom:279.422250px;}
.ya7{bottom:282.707250px;}
.y6e{bottom:283.590000px;}
.y1e7{bottom:283.590300px;}
.y20{bottom:287.043300px;}
.y136{bottom:290.939100px;}
.y18c{bottom:292.094250px;}
.y14e{bottom:292.335900px;}
.y1c5{bottom:293.640450px;}
.y206{bottom:295.350300px;}
.y33{bottom:296.672250px;}
.yfb{bottom:298.529850px;}
.ya6{bottom:299.957250px;}
.y6d{bottom:300.840000px;}
.y1e6{bottom:300.840300px;}
.y1f{bottom:304.293300px;}
.y135{bottom:308.039100px;}
.y18b{bottom:309.344250px;}
.y14d{bottom:309.585900px;}
.y1c4{bottom:311.040600px;}
.y32{bottom:313.922250px;}
.yfa{bottom:315.537750px;}
.y205{bottom:316.950300px;}
.ya5{bottom:317.207250px;}
.y6c{bottom:318.090000px;}
.y1e5{bottom:318.090300px;}
.y1e{bottom:321.543300px;}
.y134{bottom:325.139100px;}
.y18a{bottom:326.594250px;}
.y14c{bottom:326.835900px;}
.y1c3{bottom:328.440450px;}
.y31{bottom:331.172250px;}
.ya4{bottom:334.457250px;}
.y6b{bottom:335.340000px;}
.y1e4{bottom:335.340300px;}
.y204{bottom:338.550300px;}
.y1d{bottom:338.793300px;}
.y133{bottom:342.239100px;}
.y189{bottom:343.844250px;}
.y14b{bottom:344.085900px;}
.y1c2{bottom:345.840450px;}
.y30{bottom:348.422250px;}
.ya3{bottom:351.707250px;}
.y6a{bottom:352.590150px;}
.y1e3{bottom:352.590300px;}
.y1c{bottom:356.043300px;}
.y132{bottom:359.339100px;}
.y203{bottom:360.150300px;}
.y188{bottom:361.094250px;}
.y14a{bottom:361.335900px;}
.y1c1{bottom:363.240450px;}
.y2f{bottom:365.672250px;}
.ya2{bottom:368.957250px;}
.y69{bottom:369.840150px;}
.y1e2{bottom:369.840300px;}
.y1b{bottom:373.293300px;}
.y131{bottom:376.439100px;}
.yf9{bottom:378.343800px;}
.y187{bottom:378.344250px;}
.ydf{bottom:378.585900px;}
.y1c0{bottom:380.640450px;}
.y202{bottom:381.750300px;}
.y2e{bottom:382.922250px;}
.ya1{bottom:386.207250px;}
.y68{bottom:387.090150px;}
.y1e1{bottom:387.090300px;}
.y1a{bottom:390.543300px;}
.y130{bottom:393.539100px;}
.yf8{bottom:395.587050px;}
.y186{bottom:395.594250px;}
.yde{bottom:395.835900px;}
.y1bf{bottom:398.040600px;}
.y2d{bottom:400.172250px;}
.y201{bottom:403.350150px;}
.ya0{bottom:403.457250px;}
.y67{bottom:404.340150px;}
.y1e0{bottom:404.340300px;}
.y19{bottom:407.793300px;}
.y12f{bottom:410.639100px;}
.yf7{bottom:412.843800px;}
.y185{bottom:412.844250px;}
.ydd{bottom:413.085900px;}
.y1be{bottom:415.440450px;}
.y2c{bottom:417.422250px;}
.y66{bottom:421.590150px;}
.y1df{bottom:421.590300px;}
.y200{bottom:424.950300px;}
.y12e{bottom:427.739100px;}
.y9f{bottom:429.211050px;}
.yf6{bottom:430.093800px;}
.y184{bottom:430.094250px;}
.ydc{bottom:430.335900px;}
.y1bd{bottom:432.840600px;}
.y18{bottom:433.547250px;}
.y2b{bottom:434.672250px;}
.y65{bottom:438.840150px;}
.y1de{bottom:438.840300px;}
.y12d{bottom:444.839100px;}
.yf5{bottom:447.343800px;}
.y183{bottom:447.344250px;}
.ydb{bottom:447.585900px;}
.y1bc{bottom:450.240450px;}
.y64{bottom:456.090150px;}
.y1dd{bottom:456.090300px;}
.y12c{bottom:461.939100px;}
.y9e{bottom:463.711050px;}
.yf4{bottom:464.593800px;}
.y182{bottom:464.594250px;}
.yda{bottom:464.835900px;}
.y1bb{bottom:467.640450px;}
.y63{bottom:473.340150px;}
.y1dc{bottom:473.340300px;}
.y12b{bottom:479.039100px;}
.y208{bottom:479.162850px;}
.y9d{bottom:480.961050px;}
.yf3{bottom:481.843800px;}
.y181{bottom:481.844250px;}
.yd9{bottom:482.085900px;}
.y1ba{bottom:485.040600px;}
.y17{bottom:487.690800px;}
.y62{bottom:490.590150px;}
.y1db{bottom:490.590300px;}
.y12a{bottom:496.139100px;}
.y9c{bottom:498.211050px;}
.yf2{bottom:499.093800px;}
.y180{bottom:499.094250px;}
.yd8{bottom:499.335900px;}
.y1b9{bottom:502.440600px;}
.y61{bottom:507.840150px;}
.y1da{bottom:507.840300px;}
.y129{bottom:513.239100px;}
.y9b{bottom:515.461050px;}
.yf1{bottom:516.343800px;}
.y17f{bottom:516.344250px;}
.yd7{bottom:516.585900px;}
.y1b8{bottom:519.840600px;}
.y16{bottom:519.940800px;}
.y60{bottom:525.090150px;}
.y1d9{bottom:525.090300px;}
.y128{bottom:530.339100px;}
.y9a{bottom:532.711050px;}
.yf0{bottom:533.593800px;}
.y17e{bottom:533.594250px;}
.yd6{bottom:533.835900px;}
.y15{bottom:537.190800px;}
.y1b7{bottom:537.240450px;}
.y5f{bottom:542.340150px;}
.y1d8{bottom:542.340300px;}
.y127{bottom:547.439250px;}
.y99{bottom:549.961050px;}
.yef{bottom:550.843800px;}
.y17d{bottom:550.844250px;}
.yd5{bottom:551.085900px;}
.y14{bottom:554.440800px;}
.y1b6{bottom:554.640450px;}
.y5e{bottom:559.590150px;}
.y1d7{bottom:559.590300px;}
.y126{bottom:564.539250px;}
.y98{bottom:567.211050px;}
.yee{bottom:568.093800px;}
.y17c{bottom:568.094250px;}
.yd4{bottom:568.335900px;}
.y13{bottom:571.690800px;}
.y1b5{bottom:572.040600px;}
.y5d{bottom:576.840150px;}
.y1d6{bottom:576.840300px;}
.y125{bottom:581.639250px;}
.y97{bottom:584.461050px;}
.yed{bottom:585.343800px;}
.y17b{bottom:585.344250px;}
.yd3{bottom:585.585900px;}
.y12{bottom:588.940800px;}
.y1b4{bottom:589.440600px;}
.y5c{bottom:594.090150px;}
.y1d5{bottom:594.090300px;}
.y124{bottom:598.739250px;}
.y96{bottom:601.711050px;}
.yec{bottom:602.593800px;}
.y17a{bottom:602.594250px;}
.yd2{bottom:602.835900px;}
.y1b3{bottom:606.840600px;}
.y5b{bottom:611.340000px;}
.y1d4{bottom:611.340300px;}
.y123{bottom:615.839100px;}
.y95{bottom:618.961050px;}
.yeb{bottom:619.843800px;}
.y179{bottom:619.844250px;}
.yd1{bottom:620.085900px;}
.y11{bottom:623.140800px;}
.y1b2{bottom:624.240450px;}
.y5a{bottom:628.590000px;}
.y1d3{bottom:628.590300px;}
.y94{bottom:636.211050px;}
.yea{bottom:637.093800px;}
.y178{bottom:637.094250px;}
.yd0{bottom:637.335900px;}
.y122{bottom:641.443200px;}
.y1b1{bottom:641.640450px;}
.y59{bottom:645.840000px;}
.y1d2{bottom:645.840300px;}
.y93{bottom:653.461050px;}
.ye9{bottom:654.343800px;}
.y177{bottom:654.344250px;}
.ycf{bottom:654.585900px;}
.y10{bottom:657.640800px;}
.y1b0{bottom:659.040600px;}
.y58{bottom:663.090150px;}
.y1d1{bottom:663.090300px;}
.y92{bottom:670.711050px;}
.ye8{bottom:671.593800px;}
.y176{bottom:671.594250px;}
.yce{bottom:671.835900px;}
.yf{bottom:674.890800px;}
.y121{bottom:675.643050px;}
.y1af{bottom:676.440600px;}
.y57{bottom:680.340150px;}
.y1fe{bottom:680.340300px;}
.y91{bottom:687.961050px;}
.ye7{bottom:688.843800px;}
.y175{bottom:688.844250px;}
.ycd{bottom:689.085900px;}
.ye{bottom:692.140800px;}
.y120{bottom:692.743200px;}
.y1ae{bottom:693.840600px;}
.y56{bottom:697.590150px;}
.y1fd{bottom:697.590300px;}
.y90{bottom:705.211050px;}
.ye6{bottom:706.080300px;}
.y174{bottom:706.094250px;}
.ycc{bottom:706.335900px;}
.yd{bottom:709.390800px;}
.y11f{bottom:709.843200px;}
.y1ad{bottom:711.240450px;}
.y55{bottom:714.840150px;}
.y1fc{bottom:714.840300px;}
.y8f{bottom:722.461050px;}
.ye5{bottom:723.337050px;}
.y173{bottom:723.344250px;}
.y149{bottom:723.585900px;}
.yc{bottom:726.640800px;}
.y11e{bottom:726.943050px;}
.y1ac{bottom:728.640450px;}
.ycb{bottom:732.089850px;}
.y54{bottom:732.090150px;}
.y1fb{bottom:732.090300px;}
.y8e{bottom:739.711050px;}
.ye4{bottom:740.593800px;}
.y172{bottom:740.594250px;}
.y148{bottom:740.835900px;}
.y11d{bottom:744.043050px;}
.y1ab{bottom:746.040600px;}
.yca{bottom:749.339850px;}
.y53{bottom:749.340150px;}
.y1fa{bottom:749.340300px;}
.y8d{bottom:756.961050px;}
.ye3{bottom:757.843800px;}
.y171{bottom:757.844250px;}
.y147{bottom:758.085900px;}
.y11c{bottom:761.143050px;}
.y1aa{bottom:763.440600px;}
.y1f9{bottom:766.590300px;}
.yb{bottom:772.384050px;}
.y8c{bottom:774.211050px;}
.yc9{bottom:775.093800px;}
.y52{bottom:775.094100px;}
.y170{bottom:775.094250px;}
.y146{bottom:775.335900px;}
.y11b{bottom:778.243050px;}
.y1a9{bottom:780.840600px;}
.y1f8{bottom:783.840300px;}
.ya{bottom:786.783900px;}
.y8b{bottom:791.461050px;}
.ye2{bottom:792.343800px;}
.y16f{bottom:792.344250px;}
.y145{bottom:792.585900px;}
.y11a{bottom:795.343200px;}
.y1a8{bottom:798.240600px;}
.y1f7{bottom:801.090300px;}
.y9{bottom:801.183900px;}
.y8a{bottom:808.711050px;}
.yc8{bottom:809.593800px;}
.y16e{bottom:809.594250px;}
.y144{bottom:809.835900px;}
.y119{bottom:812.443200px;}
.y8{bottom:815.583900px;}
.y1a7{bottom:815.640600px;}
.y1f6{bottom:818.340300px;}
.y89{bottom:825.961050px;}
.yc7{bottom:826.843800px;}
.y51{bottom:826.844100px;}
.y16d{bottom:826.844250px;}
.y143{bottom:827.085900px;}
.y118{bottom:829.543200px;}
.y1a6{bottom:833.040600px;}
.y1f5{bottom:835.590300px;}
.y88{bottom:843.211050px;}
.yc6{bottom:844.093800px;}
.y50{bottom:844.094100px;}
.y16c{bottom:844.094250px;}
.y142{bottom:844.335900px;}
.y117{bottom:846.643200px;}
.y1a5{bottom:850.440600px;}
.y1f4{bottom:852.840300px;}
.y87{bottom:860.461050px;}
.yc5{bottom:861.343800px;}
.y4f{bottom:861.344100px;}
.y16b{bottom:861.344250px;}
.y116{bottom:863.743350px;}
.y7{bottom:866.968650px;}
.y1a4{bottom:867.840600px;}
.y141{bottom:870.089850px;}
.y1f3{bottom:870.090300px;}
.y86{bottom:877.711050px;}
.ye1{bottom:878.587050px;}
.yc4{bottom:878.593800px;}
.y4e{bottom:878.594100px;}
.y16a{bottom:878.594250px;}
.y115{bottom:880.843350px;}
.y1a3{bottom:885.240600px;}
.y1f2{bottom:887.340300px;}
.y85{bottom:894.961050px;}
.yc3{bottom:895.843800px;}
.y4d{bottom:895.844100px;}
.y169{bottom:895.844250px;}
.y114{bottom:897.943350px;}
.y1a2{bottom:902.640600px;}
.y1f1{bottom:904.590300px;}
.y84{bottom:912.211050px;}
.yc2{bottom:913.093800px;}
.y4c{bottom:913.094100px;}
.y168{bottom:913.094250px;}
.y113{bottom:915.043350px;}
.y1a1{bottom:920.040600px;}
.y83{bottom:929.461050px;}
.yc1{bottom:930.343800px;}
.y4b{bottom:930.344100px;}
.y167{bottom:930.344250px;}
.y112{bottom:932.143500px;}
.y6{bottom:935.968650px;}
.y1a0{bottom:937.440600px;}
.y82{bottom:946.711050px;}
.yc0{bottom:947.593800px;}
.y4a{bottom:947.594100px;}
.y166{bottom:947.594250px;}
.y111{bottom:949.243500px;}
.y19f{bottom:954.840600px;}
.y81{bottom:963.961050px;}
.ybf{bottom:964.843800px;}
.y49{bottom:964.844100px;}
.y165{bottom:964.844250px;}
.y110{bottom:966.343500px;}
.y19e{bottom:972.240600px;}
.y5{bottom:979.168650px;}
.y80{bottom:981.211050px;}
.ybe{bottom:982.093800px;}
.y48{bottom:982.094100px;}
.y164{bottom:982.094250px;}
.y10f{bottom:983.443500px;}
.y19d{bottom:989.640600px;}
.y7f{bottom:998.461050px;}
.ybd{bottom:999.343800px;}
.y47{bottom:999.344100px;}
.y163{bottom:999.344250px;}
.y10e{bottom:1000.543650px;}
.y19c{bottom:1015.544550px;}
.y7e{bottom:1015.711050px;}
.ybc{bottom:1016.593800px;}
.y46{bottom:1016.594100px;}
.y162{bottom:1016.594250px;}
.y10d{bottom:1017.643650px;}
.y7d{bottom:1032.961050px;}
.ybb{bottom:1033.843800px;}
.y45{bottom:1033.844100px;}
.y161{bottom:1033.844250px;}
.y10c{bottom:1034.743650px;}
.y7c{bottom:1050.211050px;}
.y19b{bottom:1050.344400px;}
.ye0{bottom:1051.087050px;}
.yba{bottom:1051.093800px;}
.y44{bottom:1051.094100px;}
.y160{bottom:1051.094250px;}
.y10b{bottom:1051.843650px;}
.y7b{bottom:1067.461050px;}
.y19a{bottom:1067.744400px;}
.yb9{bottom:1068.343800px;}
.y43{bottom:1068.344100px;}
.y15f{bottom:1068.344250px;}
.y10a{bottom:1068.943800px;}
.y7a{bottom:1084.711050px;}
.y199{bottom:1085.144400px;}
.yb8{bottom:1085.593800px;}
.y42{bottom:1085.594100px;}
.y15e{bottom:1085.594250px;}
.y109{bottom:1086.043800px;}
.y198{bottom:1102.544250px;}
.yb7{bottom:1102.843800px;}
.y41{bottom:1102.844100px;}
.y15d{bottom:1102.844250px;}
.y108{bottom:1103.143800px;}
.y79{bottom:1110.465150px;}
.y197{bottom:1119.944250px;}
.yb6{bottom:1120.093800px;}
.y40{bottom:1120.094100px;}
.y15c{bottom:1120.094250px;}
.y107{bottom:1120.243800px;}
.y78{bottom:1136.219100px;}
.yb5{bottom:1137.343800px;}
.y3f{bottom:1137.344100px;}
.y15b{bottom:1137.344250px;}
.y3{bottom:1175.978700px;}
.yb1{bottom:1175.979000px;}
.y1d0{bottom:1175.979150px;}
.yb4{bottom:1176.646800px;}
.y3e{bottom:1176.646950px;}
.y15a{bottom:1176.647100px;}
.y4{bottom:1179.334950px;}
.hd{height:36.533887px;}
.h11{height:43.031250px;}
.h10{height:43.335938px;}
.h4{height:43.584000px;}
.h8{height:44.928000px;}
.h5{height:45.420000px;}
.h14{height:46.312500px;}
.h3{height:49.032000px;}
.h9{height:54.773438px;}
.ha{height:54.996094px;}
.he{height:55.023094px;}
.hb{height:57.751465px;}
.h15{height:57.752065px;}
.hf{height:57.778465px;}
.hc{height:60.539062px;}
.h16{height:64.582031px;}
.h12{height:71.831250px;}
.h7{height:74.880000px;}
.h13{height:77.047050px;}
.h6{height:119.808000px;}
.h2{height:1262.835000px;}
.h0{height:1325.835000px;}
.h1{height:1326.000000px;}
.w2{width:884.409000px;}
.w1{width:947.250000px;}
.w0{width:947.409000px;}
.x0{left:0.000000px;}
.x1{left:31.500000px;}
.x11{left:79.937100px;}
.x4{left:97.795350px;}
.x1f{left:101.562000px;}
.xa{left:109.522650px;}
.x1e{left:111.859500px;}
.xc{left:119.055150px;}
.x16{left:125.713350px;}
.x17{left:136.714350px;}
.x15{left:142.263600px;}
.x13{left:144.455400px;}
.x8{left:145.602000px;}
.x7{left:155.196300px;}
.x9{left:156.609150px;}
.x5{left:158.202150px;}
.x1b{left:161.439600px;}
.x27{left:166.084800px;}
.x3{left:172.008150px;}
.x23{left:200.313750px;}
.xd{left:202.222050px;}
.x28{left:204.563250px;}
.x25{left:208.804050px;}
.x24{left:215.057400px;}
.x26{left:216.182400px;}
.x6{left:222.695400px;}
.xb{left:225.523500px;}
.x29{left:226.566750px;}
.x20{left:229.127100px;}
.x2a{left:250.075200px;}
.x12{left:317.664300px;}
.x19{left:336.661200px;}
.x1c{left:425.045400px;}
.xe{left:459.212550px;}
.x10{left:468.481800px;}
.xf{left:480.472350px;}
.x21{left:493.637250px;}
.x2f{left:497.237400px;}
.x2b{left:501.526500px;}
.x2c{left:520.036200px;}
.x14{left:522.261150px;}
.x2e{left:523.525500px;}
.x1d{left:533.200650px;}
.x22{left:536.046150px;}
.x18{left:541.617300px;}
.x31{left:545.783700px;}
.x30{left:556.273500px;}
.x32{left:562.696050px;}
.x2d{left:567.787200px;}
.x1a{left:626.188650px;}
.x2{left:781.104000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v1{vertical-align:16.872000pt;}
.v3{vertical-align:25.600000pt;}
.v4{vertical-align:30.236267pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007467pt;}
.ls2{letter-spacing:0.506667pt;}
.ls0{letter-spacing:1.013333pt;}
.wsc{word-spacing:-16.000000pt;}
.ws1{word-spacing:-12.666667pt;}
.ws2{word-spacing:-7.384667pt;}
.ws4{word-spacing:-6.915157pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:68.710400pt;}
.ws9{word-spacing:92.882133pt;}
.wsa{word-spacing:131.147200pt;}
.ws3{word-spacing:207.726933pt;}
.ws7{word-spacing:239.051733pt;}
.ws5{word-spacing:251.324800pt;}
.ws6{word-spacing:306.505067pt;}
.wsb{word-spacing:332.790400pt;}
._25{margin-left:-12.058667pt;}
._a{margin-left:-7.466667pt;}
._10{margin-left:-5.877333pt;}
._1{margin-left:-4.213333pt;}
._2{margin-left:-3.242667pt;}
._0{margin-left:-1.536000pt;}
._3{width:1.165333pt;}
._5{width:2.381333pt;}
._4{width:3.597333pt;}
._8{width:4.914667pt;}
._6{width:5.877333pt;}
._7{width:6.890667pt;}
._9{width:8.056000pt;}
._c{width:9.728000pt;}
._d{width:10.944000pt;}
._b{width:12.565333pt;}
._f{width:14.136000pt;}
._e{width:15.402667pt;}
._12{width:17.885333pt;}
._11{width:20.722667pt;}
._1e{width:139.391467pt;}
._1b{width:144.668267pt;}
._1d{width:183.167467pt;}
._1f{width:194.938133pt;}
._1c{width:216.386133pt;}
._21{width:239.051200pt;}
._13{width:246.187904pt;}
._1a{width:259.555200pt;}
._14{width:303.784533pt;}
._20{width:306.013867pt;}
._22{width:314.095467pt;}
._15{width:315.994667pt;}
._19{width:318.366400pt;}
._16{width:323.805333pt;}
._24{width:611.185067pt;}
._23{width:691.400533pt;}
._17{width:695.487467pt;}
._18{width:1145.069867pt;}
.fs9{font-size:24.874667pt;}
.fs7{font-size:29.538667pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.336000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fsa{font-size:64.000000pt;}
.fs4{font-size:80.000000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:28.000000pt;}
.yb3{bottom:58.460267pt;}
.y2{bottom:58.460400pt;}
.y3d{bottom:58.460533pt;}
.y159{bottom:58.460667pt;}
.y2a{bottom:101.816267pt;}
.y3c{bottom:102.816267pt;}
.y106{bottom:103.503067pt;}
.yb2{bottom:104.292267pt;}
.y196{bottom:106.306000pt;}
.y1cf{bottom:106.347067pt;}
.y140{bottom:106.479200pt;}
.y158{bottom:106.520800pt;}
.yb0{bottom:113.295333pt;}
.y77{bottom:114.074000pt;}
.y1f0{bottom:114.080267pt;}
.y29{bottom:117.149600pt;}
.y3b{bottom:118.149600pt;}
.y195{bottom:121.639333pt;}
.y13f{bottom:121.812533pt;}
.y1ce{bottom:121.813867pt;}
.y157{bottom:121.854133pt;}
.yaf{bottom:128.628667pt;}
.y105{bottom:128.851200pt;}
.y76{bottom:129.413333pt;}
.y1ef{bottom:129.413600pt;}
.y28{bottom:132.482933pt;}
.y3a{bottom:133.482933pt;}
.y194{bottom:136.972667pt;}
.y13e{bottom:137.012533pt;}
.y156{bottom:137.187467pt;}
.y1cd{bottom:137.280533pt;}
.yae{bottom:143.962000pt;}
.y104{bottom:143.969333pt;}
.y75{bottom:144.746667pt;}
.y1ee{bottom:144.746933pt;}
.y27{bottom:147.816267pt;}
.y39{bottom:148.816267pt;}
.y13d{bottom:152.212533pt;}
.y193{bottom:152.306000pt;}
.y155{bottom:152.520800pt;}
.y1cc{bottom:152.747067pt;}
.y103{bottom:159.087467pt;}
.yad{bottom:159.295333pt;}
.y74{bottom:160.080000pt;}
.y1ed{bottom:160.080267pt;}
.y102{bottom:160.246533pt;}
.y26{bottom:163.149600pt;}
.y38{bottom:164.149600pt;}
.y101{bottom:166.646533pt;}
.y13c{bottom:167.412533pt;}
.y192{bottom:167.639333pt;}
.y154{bottom:167.854133pt;}
.y1cb{bottom:168.213733pt;}
.yac{bottom:174.628667pt;}
.y73{bottom:175.413333pt;}
.y1ec{bottom:175.413600pt;}
.y25{bottom:178.482933pt;}
.y13b{bottom:182.612533pt;}
.y1ff{bottom:182.687067pt;}
.y191{bottom:182.972667pt;}
.y153{bottom:183.187467pt;}
.y1ca{bottom:183.680400pt;}
.y37{bottom:187.042000pt;}
.y100{bottom:189.323733pt;}
.yab{bottom:189.962000pt;}
.y72{bottom:190.746667pt;}
.y1eb{bottom:190.746933pt;}
.y24{bottom:193.816267pt;}
.y13a{bottom:197.812533pt;}
.y190{bottom:198.306000pt;}
.y152{bottom:198.520800pt;}
.y1c9{bottom:199.147200pt;}
.yff{bottom:204.441733pt;}
.yaa{bottom:205.295333pt;}
.y71{bottom:206.080000pt;}
.y1ea{bottom:206.080267pt;}
.y23{bottom:209.149600pt;}
.y139{bottom:213.012533pt;}
.y18f{bottom:213.639333pt;}
.y151{bottom:213.854133pt;}
.y1c8{bottom:214.613867pt;}
.y36{bottom:217.708667pt;}
.yfe{bottom:219.800800pt;}
.ya9{bottom:220.628667pt;}
.y70{bottom:221.413333pt;}
.y1e9{bottom:221.413600pt;}
.y209{bottom:224.133600pt;}
.y22{bottom:224.482933pt;}
.y138{bottom:228.212533pt;}
.yfd{bottom:228.500800pt;}
.y18e{bottom:228.972667pt;}
.y150{bottom:229.187467pt;}
.y1c7{bottom:230.080400pt;}
.y35{bottom:233.042000pt;}
.yfc{bottom:234.900800pt;}
.ya8{bottom:235.962000pt;}
.y6f{bottom:236.746667pt;}
.y1e8{bottom:236.746933pt;}
.y21{bottom:239.816267pt;}
.y207{bottom:243.333600pt;}
.y137{bottom:243.412533pt;}
.y18d{bottom:244.306000pt;}
.y14f{bottom:244.520800pt;}
.y1c6{bottom:245.547200pt;}
.y34{bottom:248.375333pt;}
.ya7{bottom:251.295333pt;}
.y6e{bottom:252.080000pt;}
.y1e7{bottom:252.080267pt;}
.y20{bottom:255.149600pt;}
.y136{bottom:258.612533pt;}
.y18c{bottom:259.639333pt;}
.y14e{bottom:259.854133pt;}
.y1c5{bottom:261.013733pt;}
.y206{bottom:262.533600pt;}
.y33{bottom:263.708667pt;}
.yfb{bottom:265.359867pt;}
.ya6{bottom:266.628667pt;}
.y6d{bottom:267.413333pt;}
.y1e6{bottom:267.413600pt;}
.y1f{bottom:270.482933pt;}
.y135{bottom:273.812533pt;}
.y18b{bottom:274.972667pt;}
.y14d{bottom:275.187467pt;}
.y1c4{bottom:276.480533pt;}
.y32{bottom:279.042000pt;}
.yfa{bottom:280.478000pt;}
.y205{bottom:281.733600pt;}
.ya5{bottom:281.962000pt;}
.y6c{bottom:282.746667pt;}
.y1e5{bottom:282.746933pt;}
.y1e{bottom:285.816267pt;}
.y134{bottom:289.012533pt;}
.y18a{bottom:290.306000pt;}
.y14c{bottom:290.520800pt;}
.y1c3{bottom:291.947067pt;}
.y31{bottom:294.375333pt;}
.ya4{bottom:297.295333pt;}
.y6b{bottom:298.080000pt;}
.y1e4{bottom:298.080267pt;}
.y204{bottom:300.933600pt;}
.y1d{bottom:301.149600pt;}
.y133{bottom:304.212533pt;}
.y189{bottom:305.639333pt;}
.y14b{bottom:305.854133pt;}
.y1c2{bottom:307.413733pt;}
.y30{bottom:309.708667pt;}
.ya3{bottom:312.628667pt;}
.y6a{bottom:313.413467pt;}
.y1e3{bottom:313.413600pt;}
.y1c{bottom:316.482933pt;}
.y132{bottom:319.412533pt;}
.y203{bottom:320.133600pt;}
.y188{bottom:320.972667pt;}
.y14a{bottom:321.187467pt;}
.y1c1{bottom:322.880400pt;}
.y2f{bottom:325.042000pt;}
.ya2{bottom:327.962000pt;}
.y69{bottom:328.746800pt;}
.y1e2{bottom:328.746933pt;}
.y1b{bottom:331.816267pt;}
.y131{bottom:334.612533pt;}
.yf9{bottom:336.305600pt;}
.y187{bottom:336.306000pt;}
.ydf{bottom:336.520800pt;}
.y1c0{bottom:338.347067pt;}
.y202{bottom:339.333600pt;}
.y2e{bottom:340.375333pt;}
.ya1{bottom:343.295333pt;}
.y68{bottom:344.080133pt;}
.y1e1{bottom:344.080267pt;}
.y1a{bottom:347.149600pt;}
.y130{bottom:349.812533pt;}
.yf8{bottom:351.632933pt;}
.y186{bottom:351.639333pt;}
.yde{bottom:351.854133pt;}
.y1bf{bottom:353.813867pt;}
.y2d{bottom:355.708667pt;}
.y201{bottom:358.533467pt;}
.ya0{bottom:358.628667pt;}
.y67{bottom:359.413467pt;}
.y1e0{bottom:359.413600pt;}
.y19{bottom:362.482933pt;}
.y12f{bottom:365.012533pt;}
.yf7{bottom:366.972267pt;}
.y185{bottom:366.972667pt;}
.ydd{bottom:367.187467pt;}
.y1be{bottom:369.280400pt;}
.y2c{bottom:371.042000pt;}
.y66{bottom:374.746800pt;}
.y1df{bottom:374.746933pt;}
.y200{bottom:377.733600pt;}
.y12e{bottom:380.212533pt;}
.y9f{bottom:381.520933pt;}
.yf6{bottom:382.305600pt;}
.y184{bottom:382.306000pt;}
.ydc{bottom:382.520800pt;}
.y1bd{bottom:384.747200pt;}
.y18{bottom:385.375333pt;}
.y2b{bottom:386.375333pt;}
.y65{bottom:390.080133pt;}
.y1de{bottom:390.080267pt;}
.y12d{bottom:395.412533pt;}
.yf5{bottom:397.638933pt;}
.y183{bottom:397.639333pt;}
.ydb{bottom:397.854133pt;}
.y1bc{bottom:400.213733pt;}
.y64{bottom:405.413467pt;}
.y1dd{bottom:405.413600pt;}
.y12c{bottom:410.612533pt;}
.y9e{bottom:412.187600pt;}
.yf4{bottom:412.972267pt;}
.y182{bottom:412.972667pt;}
.yda{bottom:413.187467pt;}
.y1bb{bottom:415.680400pt;}
.y63{bottom:420.746800pt;}
.y1dc{bottom:420.746933pt;}
.y12b{bottom:425.812533pt;}
.y208{bottom:425.922533pt;}
.y9d{bottom:427.520933pt;}
.yf3{bottom:428.305600pt;}
.y181{bottom:428.306000pt;}
.yd9{bottom:428.520800pt;}
.y1ba{bottom:431.147200pt;}
.y17{bottom:433.502933pt;}
.y62{bottom:436.080133pt;}
.y1db{bottom:436.080267pt;}
.y12a{bottom:441.012533pt;}
.y9c{bottom:442.854267pt;}
.yf2{bottom:443.638933pt;}
.y180{bottom:443.639333pt;}
.yd8{bottom:443.854133pt;}
.y1b9{bottom:446.613867pt;}
.y61{bottom:451.413467pt;}
.y1da{bottom:451.413600pt;}
.y129{bottom:456.212533pt;}
.y9b{bottom:458.187600pt;}
.yf1{bottom:458.972267pt;}
.y17f{bottom:458.972667pt;}
.yd7{bottom:459.187467pt;}
.y1b8{bottom:462.080533pt;}
.y16{bottom:462.169600pt;}
.y60{bottom:466.746800pt;}
.y1d9{bottom:466.746933pt;}
.y128{bottom:471.412533pt;}
.y9a{bottom:473.520933pt;}
.yf0{bottom:474.305600pt;}
.y17e{bottom:474.306000pt;}
.yd6{bottom:474.520800pt;}
.y15{bottom:477.502933pt;}
.y1b7{bottom:477.547067pt;}
.y5f{bottom:482.080133pt;}
.y1d8{bottom:482.080267pt;}
.y127{bottom:486.612667pt;}
.y99{bottom:488.854267pt;}
.yef{bottom:489.638933pt;}
.y17d{bottom:489.639333pt;}
.yd5{bottom:489.854133pt;}
.y14{bottom:492.836267pt;}
.y1b6{bottom:493.013733pt;}
.y5e{bottom:497.413467pt;}
.y1d7{bottom:497.413600pt;}
.y126{bottom:501.812667pt;}
.y98{bottom:504.187600pt;}
.yee{bottom:504.972267pt;}
.y17c{bottom:504.972667pt;}
.yd4{bottom:505.187467pt;}
.y13{bottom:508.169600pt;}
.y1b5{bottom:508.480533pt;}
.y5d{bottom:512.746800pt;}
.y1d6{bottom:512.746933pt;}
.y125{bottom:517.012667pt;}
.y97{bottom:519.520933pt;}
.yed{bottom:520.305600pt;}
.y17b{bottom:520.306000pt;}
.yd3{bottom:520.520800pt;}
.y12{bottom:523.502933pt;}
.y1b4{bottom:523.947200pt;}
.y5c{bottom:528.080133pt;}
.y1d5{bottom:528.080267pt;}
.y124{bottom:532.212667pt;}
.y96{bottom:534.854267pt;}
.yec{bottom:535.638933pt;}
.y17a{bottom:535.639333pt;}
.yd2{bottom:535.854133pt;}
.y1b3{bottom:539.413867pt;}
.y5b{bottom:543.413333pt;}
.y1d4{bottom:543.413600pt;}
.y123{bottom:547.412533pt;}
.y95{bottom:550.187600pt;}
.yeb{bottom:550.972267pt;}
.y179{bottom:550.972667pt;}
.yd1{bottom:551.187467pt;}
.y11{bottom:553.902933pt;}
.y1b2{bottom:554.880400pt;}
.y5a{bottom:558.746667pt;}
.y1d3{bottom:558.746933pt;}
.y94{bottom:565.520933pt;}
.yea{bottom:566.305600pt;}
.y178{bottom:566.306000pt;}
.yd0{bottom:566.520800pt;}
.y122{bottom:570.171733pt;}
.y1b1{bottom:570.347067pt;}
.y59{bottom:574.080000pt;}
.y1d2{bottom:574.080267pt;}
.y93{bottom:580.854267pt;}
.ye9{bottom:581.638933pt;}
.y177{bottom:581.639333pt;}
.ycf{bottom:581.854133pt;}
.y10{bottom:584.569600pt;}
.y1b0{bottom:585.813867pt;}
.y58{bottom:589.413467pt;}
.y1d1{bottom:589.413600pt;}
.y92{bottom:596.187600pt;}
.ye8{bottom:596.972267pt;}
.y176{bottom:596.972667pt;}
.yce{bottom:597.187467pt;}
.yf{bottom:599.902933pt;}
.y121{bottom:600.571600pt;}
.y1af{bottom:601.280533pt;}
.y57{bottom:604.746800pt;}
.y1fe{bottom:604.746933pt;}
.y91{bottom:611.520933pt;}
.ye7{bottom:612.305600pt;}
.y175{bottom:612.306000pt;}
.ycd{bottom:612.520800pt;}
.ye{bottom:615.236267pt;}
.y120{bottom:615.771733pt;}
.y1ae{bottom:616.747200pt;}
.y56{bottom:620.080133pt;}
.y1fd{bottom:620.080267pt;}
.y90{bottom:626.854267pt;}
.ye6{bottom:627.626933pt;}
.y174{bottom:627.639333pt;}
.ycc{bottom:627.854133pt;}
.yd{bottom:630.569600pt;}
.y11f{bottom:630.971733pt;}
.y1ad{bottom:632.213733pt;}
.y55{bottom:635.413467pt;}
.y1fc{bottom:635.413600pt;}
.y8f{bottom:642.187600pt;}
.ye5{bottom:642.966267pt;}
.y173{bottom:642.972667pt;}
.y149{bottom:643.187467pt;}
.yc{bottom:645.902933pt;}
.y11e{bottom:646.171600pt;}
.y1ac{bottom:647.680400pt;}
.ycb{bottom:650.746533pt;}
.y54{bottom:650.746800pt;}
.y1fb{bottom:650.746933pt;}
.y8e{bottom:657.520933pt;}
.ye4{bottom:658.305600pt;}
.y172{bottom:658.306000pt;}
.y148{bottom:658.520800pt;}
.y11d{bottom:661.371600pt;}
.y1ab{bottom:663.147200pt;}
.yca{bottom:666.079867pt;}
.y53{bottom:666.080133pt;}
.y1fa{bottom:666.080267pt;}
.y8d{bottom:672.854267pt;}
.ye3{bottom:673.638933pt;}
.y171{bottom:673.639333pt;}
.y147{bottom:673.854133pt;}
.y11c{bottom:676.571600pt;}
.y1aa{bottom:678.613867pt;}
.y1f9{bottom:681.413600pt;}
.yb{bottom:686.563600pt;}
.y8c{bottom:688.187600pt;}
.yc9{bottom:688.972267pt;}
.y52{bottom:688.972533pt;}
.y170{bottom:688.972667pt;}
.y146{bottom:689.187467pt;}
.y11b{bottom:691.771600pt;}
.y1a9{bottom:694.080533pt;}
.y1f8{bottom:696.746933pt;}
.ya{bottom:699.363467pt;}
.y8b{bottom:703.520933pt;}
.ye2{bottom:704.305600pt;}
.y16f{bottom:704.306000pt;}
.y145{bottom:704.520800pt;}
.y11a{bottom:706.971733pt;}
.y1a8{bottom:709.547200pt;}
.y1f7{bottom:712.080267pt;}
.y9{bottom:712.163467pt;}
.y8a{bottom:718.854267pt;}
.yc8{bottom:719.638933pt;}
.y16e{bottom:719.639333pt;}
.y144{bottom:719.854133pt;}
.y119{bottom:722.171733pt;}
.y8{bottom:724.963467pt;}
.y1a7{bottom:725.013867pt;}
.y1f6{bottom:727.413600pt;}
.y89{bottom:734.187600pt;}
.yc7{bottom:734.972267pt;}
.y51{bottom:734.972533pt;}
.y16d{bottom:734.972667pt;}
.y143{bottom:735.187467pt;}
.y118{bottom:737.371733pt;}
.y1a6{bottom:740.480533pt;}
.y1f5{bottom:742.746933pt;}
.y88{bottom:749.520933pt;}
.yc6{bottom:750.305600pt;}
.y50{bottom:750.305867pt;}
.y16c{bottom:750.306000pt;}
.y142{bottom:750.520800pt;}
.y117{bottom:752.571733pt;}
.y1a5{bottom:755.947200pt;}
.y1f4{bottom:758.080267pt;}
.y87{bottom:764.854267pt;}
.yc5{bottom:765.638933pt;}
.y4f{bottom:765.639200pt;}
.y16b{bottom:765.639333pt;}
.y116{bottom:767.771867pt;}
.y7{bottom:770.638800pt;}
.y1a4{bottom:771.413867pt;}
.y141{bottom:773.413200pt;}
.y1f3{bottom:773.413600pt;}
.y86{bottom:780.187600pt;}
.ye1{bottom:780.966267pt;}
.yc4{bottom:780.972267pt;}
.y4e{bottom:780.972533pt;}
.y16a{bottom:780.972667pt;}
.y115{bottom:782.971867pt;}
.y1a3{bottom:786.880533pt;}
.y1f2{bottom:788.746933pt;}
.y85{bottom:795.520933pt;}
.yc3{bottom:796.305600pt;}
.y4d{bottom:796.305867pt;}
.y169{bottom:796.306000pt;}
.y114{bottom:798.171867pt;}
.y1a2{bottom:802.347200pt;}
.y1f1{bottom:804.080267pt;}
.y84{bottom:810.854267pt;}
.yc2{bottom:811.638933pt;}
.y4c{bottom:811.639200pt;}
.y168{bottom:811.639333pt;}
.y113{bottom:813.371867pt;}
.y1a1{bottom:817.813867pt;}
.y83{bottom:826.187600pt;}
.yc1{bottom:826.972267pt;}
.y4b{bottom:826.972533pt;}
.y167{bottom:826.972667pt;}
.y112{bottom:828.572000pt;}
.y6{bottom:831.972133pt;}
.y1a0{bottom:833.280533pt;}
.y82{bottom:841.520933pt;}
.yc0{bottom:842.305600pt;}
.y4a{bottom:842.305867pt;}
.y166{bottom:842.306000pt;}
.y111{bottom:843.772000pt;}
.y19f{bottom:848.747200pt;}
.y81{bottom:856.854267pt;}
.ybf{bottom:857.638933pt;}
.y49{bottom:857.639200pt;}
.y165{bottom:857.639333pt;}
.y110{bottom:858.972000pt;}
.y19e{bottom:864.213867pt;}
.y5{bottom:870.372133pt;}
.y80{bottom:872.187600pt;}
.ybe{bottom:872.972267pt;}
.y48{bottom:872.972533pt;}
.y164{bottom:872.972667pt;}
.y10f{bottom:874.172000pt;}
.y19d{bottom:879.680533pt;}
.y7f{bottom:887.520933pt;}
.ybd{bottom:888.305600pt;}
.y47{bottom:888.305867pt;}
.y163{bottom:888.306000pt;}
.y10e{bottom:889.372133pt;}
.y19c{bottom:902.706267pt;}
.y7e{bottom:902.854267pt;}
.ybc{bottom:903.638933pt;}
.y46{bottom:903.639200pt;}
.y162{bottom:903.639333pt;}
.y10d{bottom:904.572133pt;}
.y7d{bottom:918.187600pt;}
.ybb{bottom:918.972267pt;}
.y45{bottom:918.972533pt;}
.y161{bottom:918.972667pt;}
.y10c{bottom:919.772133pt;}
.y7c{bottom:933.520933pt;}
.y19b{bottom:933.639467pt;}
.ye0{bottom:934.299600pt;}
.yba{bottom:934.305600pt;}
.y44{bottom:934.305867pt;}
.y160{bottom:934.306000pt;}
.y10b{bottom:934.972133pt;}
.y7b{bottom:948.854267pt;}
.y19a{bottom:949.106133pt;}
.yb9{bottom:949.638933pt;}
.y43{bottom:949.639200pt;}
.y15f{bottom:949.639333pt;}
.y10a{bottom:950.172267pt;}
.y7a{bottom:964.187600pt;}
.y199{bottom:964.572800pt;}
.yb8{bottom:964.972267pt;}
.y42{bottom:964.972533pt;}
.y15e{bottom:964.972667pt;}
.y109{bottom:965.372267pt;}
.y198{bottom:980.039333pt;}
.yb7{bottom:980.305600pt;}
.y41{bottom:980.305867pt;}
.y15d{bottom:980.306000pt;}
.y108{bottom:980.572267pt;}
.y79{bottom:987.080133pt;}
.y197{bottom:995.506000pt;}
.yb6{bottom:995.638933pt;}
.y40{bottom:995.639200pt;}
.y15c{bottom:995.639333pt;}
.y107{bottom:995.772267pt;}
.y78{bottom:1009.972533pt;}
.yb5{bottom:1010.972267pt;}
.y3f{bottom:1010.972533pt;}
.y15b{bottom:1010.972667pt;}
.y3{bottom:1045.314400pt;}
.yb1{bottom:1045.314667pt;}
.y1d0{bottom:1045.314800pt;}
.yb4{bottom:1045.908267pt;}
.y3e{bottom:1045.908400pt;}
.y15a{bottom:1045.908533pt;}
.y4{bottom:1048.297733pt;}
.hd{height:32.474566pt;}
.h11{height:38.250000pt;}
.h10{height:38.520833pt;}
.h4{height:38.741333pt;}
.h8{height:39.936000pt;}
.h5{height:40.373333pt;}
.h14{height:41.166667pt;}
.h3{height:43.584000pt;}
.h9{height:48.687500pt;}
.ha{height:48.885417pt;}
.he{height:48.909417pt;}
.hb{height:51.334635pt;}
.h15{height:51.335169pt;}
.hf{height:51.358635pt;}
.hc{height:53.812500pt;}
.h16{height:57.406250pt;}
.h12{height:63.850000pt;}
.h7{height:66.560000pt;}
.h13{height:68.486267pt;}
.h6{height:106.496000pt;}
.h2{height:1122.520000pt;}
.h0{height:1178.520000pt;}
.h1{height:1178.666667pt;}
.w2{width:786.141333pt;}
.w1{width:842.000000pt;}
.w0{width:842.141333pt;}
.x0{left:0.000000pt;}
.x1{left:28.000000pt;}
.x11{left:71.055200pt;}
.x4{left:86.929200pt;}
.x1f{left:90.277333pt;}
.xa{left:97.353467pt;}
.x1e{left:99.430667pt;}
.xc{left:105.826800pt;}
.x16{left:111.745200pt;}
.x17{left:121.523867pt;}
.x15{left:126.456533pt;}
.x13{left:128.404800pt;}
.x8{left:129.424000pt;}
.x7{left:137.952267pt;}
.x9{left:139.208133pt;}
.x5{left:140.624133pt;}
.x1b{left:143.501867pt;}
.x27{left:147.630933pt;}
.x3{left:152.896133pt;}
.x23{left:178.056667pt;}
.xd{left:179.752933pt;}
.x28{left:181.834000pt;}
.x25{left:185.603600pt;}
.x24{left:191.162133pt;}
.x26{left:192.162133pt;}
.x6{left:197.951467pt;}
.xb{left:200.465333pt;}
.x29{left:201.392667pt;}
.x20{left:203.668533pt;}
.x2a{left:222.289067pt;}
.x12{left:282.368267pt;}
.x19{left:299.254400pt;}
.x1c{left:377.818133pt;}
.xe{left:408.188933pt;}
.x10{left:416.428267pt;}
.xf{left:427.086533pt;}
.x21{left:438.788667pt;}
.x2f{left:441.988800pt;}
.x2b{left:445.801333pt;}
.x2c{left:462.254400pt;}
.x14{left:464.232133pt;}
.x2e{left:465.356000pt;}
.x1d{left:473.956133pt;}
.x22{left:476.485467pt;}
.x18{left:481.437600pt;}
.x31{left:485.141067pt;}
.x30{left:494.465333pt;}
.x32{left:500.174267pt;}
.x2d{left:504.699733pt;}
.x1a{left:556.612133pt;}
.x2{left:694.314667pt;}
}

